/*
Theme Name: ESJ Consultoria Empresarial
Theme URI: https://esjconsultoria.com.br
Author: LA6 Assessoria
Description: Tema institucional personalizado para a ESJ Consultoria Empresarial.
Version: 1.0.3
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: esj-consultoria
*/

:root {
  --font-montserrat: "Montserrat";
  --navy: #213147;
  --navy-deep: #152235;
  --navy-soft: #31445d;
  --gold: #e7aa31;
  --gold-light: #f3c56b;
  --ivory: #f7f5ef;
  --paper: #fffefb;
  --ink: #1c293a;
  --muted: #657080;
  --line: rgba(33, 49, 71, 0.13);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --serif: var(--font-montserrat), Montserrat, Arial, sans-serif;
  --sans: var(--font-montserrat), Montserrat, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  background: transparent;
  border: 0;
}

main {
  display: block;
  overflow-x: clip;
}

.page-shell {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid rgba(33, 49, 71, 0.1);
  box-shadow: 0 10px 32px rgba(21, 34, 53, 0.07);
  color: var(--navy-deep);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 96px;
  left: 0;
  padding-inline: max(32px, calc((100vw - 1180px) / 2));
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.header-brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
  width: max-content;
}

.official-logo-image {
  display: block;
  height: auto;
  object-fit: contain;
  width: auto;
}

.header-brand .official-logo-image {
  height: 68px;
}

.header-symbol-image {
  display: block;
  height: 62px;
  object-fit: contain;
  width: auto;
}

.footer-brand .official-logo-image {
  height: 128px;
}

.brand-mark {
  align-items: center;
  display: flex;
  height: 48px;
  justify-content: center;
  overflow: hidden;
  width: 48px;
}

.brand-mark img {
  height: 54px;
  max-width: none;
  object-fit: contain;
  width: 62px;
}

.header-brand > span,
.footer-brand > span {
  display: flex;
  flex-direction: column;
}

.header-brand strong,
.footer-brand strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
}

.header-brand small,
.footer-brand small {
  font-size: 8px;
  letter-spacing: 0.2em;
  margin-top: 5px;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 26px;
}

.desktop-nav a {
  color: rgba(21, 34, 53, 0.72);
  font-size: 14px;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  background: var(--gold);
  bottom: -10px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--navy-deep);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  align-items: center;
  background: var(--navy-deep);
  border: 1px solid var(--navy-deep);
  border-radius: var(--radius-sm);
  color: white;
  display: inline-flex;
  font-size: 13px;
  gap: 11px;
  justify-self: end;
  letter-spacing: 0.04em;
  padding: 12px 16px;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.button-arrow {
  height: 18px;
  transition: transform 180ms ease;
  width: 18px;
}

a:hover .button-arrow,
a:focus-visible .button-arrow {
  transform: translateX(3px);
}

.hero {
  background:
    linear-gradient(125deg, rgba(21, 34, 53, 0.3), transparent 60%),
    var(--navy-deep);
  color: white;
  min-height: 790px;
  overflow: hidden;
  padding: 182px 0 110px;
  position: relative;
}

.hero::before {
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px
  );
  background-size: calc(100vw / 6) 100%;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.12;
  pointer-events: none;
  position: absolute;
}

.hero-glow-one {
  background: var(--gold);
  height: 380px;
  right: -120px;
  top: -90px;
  width: 380px;
}

.hero-glow-two {
  border: 1px solid var(--gold);
  bottom: -250px;
  height: 600px;
  left: 22%;
  width: 600px;
}

.hero-content {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: var(--navy-soft);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.26em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.eyebrow > span {
  background: var(--gold);
  height: 1px;
  width: 32px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.66);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 5.6vw, 82px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
  max-width: 780px;
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-intro {
  border-left: 1px solid rgba(231, 170, 49, 0.55);
  display: grid;
  gap: 12px;
  margin: 36px 0 34px;
  max-width: 650px;
  padding-left: 24px;
}

.hero-intro p {
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
  line-height: 1.72;
  margin: 0;
}

.primary-button {
  align-items: center;
  background: var(--gold);
  border-radius: 12px;
  color: var(--navy-deep);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 18px;
  letter-spacing: 0.05em;
  padding: 18px 22px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--gold-light);
  transform: translateY(-2px);
}

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

.text-button {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.09em;
  padding-block: 12px;
  text-transform: uppercase;
}

.text-button-light {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.78);
}

.text-button-light:hover,
.text-button-light:focus-visible {
  border-bottom-color: var(--gold);
  color: white;
}

.hero-visual {
  align-items: center;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  margin-left: auto;
  max-width: 460px;
  position: relative;
  width: 100%;
}

.hero-visual > img {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
  height: auto;
  position: relative;
  width: 72%;
  z-index: 2;
}

.hero-orbit {
  border: 1px solid rgba(231, 170, 49, 0.32);
  border-radius: 50%;
  position: absolute;
}

.hero-orbit::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 7px;
  position: absolute;
  right: 8%;
  top: 20%;
  width: 7px;
}

.hero-orbit-outer {
  inset: 0;
  animation: rotate 24s linear infinite;
}

.hero-orbit-inner {
  inset: 11%;
  opacity: 0.5;
  animation: rotate 18s linear infinite reverse;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.experience-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-md);
  bottom: 8%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  color: var(--navy-deep);
  display: flex;
  gap: 13px;
  left: -2%;
  max-width: 230px;
  padding: 18px 20px;
  position: absolute;
  z-index: 3;
}

.experience-card strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.experience-card span {
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.scroll-cue {
  align-items: center;
  bottom: 34px;
  color: rgba(255, 255, 255, 0.52);
  display: flex;
  font-size: 10px;
  gap: 13px;
  left: max(32px, calc((100vw - 1180px) / 2));
  letter-spacing: 0.2em;
  position: absolute;
  text-transform: uppercase;
  z-index: 3;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  color: rgba(255, 255, 255, 0.85);
}

.scroll-cue i {
  animation: scroll-cue-float 2.2s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  height: 24px;
  position: relative;
  width: 24px;
}

.scroll-cue i::after {
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  content: "";
  height: 5px;
  left: 8px;
  position: absolute;
  top: 6px;
  transform: rotate(45deg);
  width: 5px;
}

@keyframes scroll-cue-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

.section-pad {
  padding-block: 120px;
}

.section-heading h2,
.process-header h2,
.contact h2 {
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(42px, 4.4vw, 66px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0;
}

.proof-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr;
  min-height: 116px;
  padding: 24px 38px;
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 45px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.proof-item span {
  color: var(--navy-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.55;
  max-width: 200px;
  text-transform: uppercase;
}

.diagnostic {
  position: relative;
}

.diagnostic-intro {
  background: var(--gold);
  color: var(--navy-deep);
  overflow: hidden;
  position: relative;
}

.diagnostic-rings {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.diagnostic-rings span {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  position: absolute;
}

.diagnostic-rings span:nth-child(1) {
  height: 680px;
  left: -350px;
  top: -230px;
  width: 680px;
}

.diagnostic-rings span:nth-child(2) {
  bottom: -320px;
  height: 760px;
  right: -120px;
  width: 760px;
}

.diagnostic-rings span:nth-child(3) {
  bottom: -190px;
  height: 500px;
  right: 8px;
  width: 500px;
}

.diagnostic-hero-grid {
  align-items: center;
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  position: relative;
  z-index: 1;
}

.diagnostic-seal {
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04), transparent 55%),
    var(--navy-deep);
  border-radius: 50%;
  box-shadow: 0 35px 100px rgba(21, 34, 53, 0.28);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 430px;
  outline: 1px solid rgba(255, 255, 255, 0.28);
  outline-offset: -18px;
  position: relative;
  width: 100%;
}

.diagnostic-seal::before,
.diagnostic-seal::after {
  border: 1px solid rgba(231, 170, 49, 0.55);
  border-radius: 50%;
  content: "";
  inset: 36px;
  position: absolute;
}

.diagnostic-seal::after {
  border-color: rgba(255, 255, 255, 0.15);
  inset: 52px;
}

.diagnostic-seal span,
.diagnostic-seal small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.diagnostic-seal span {
  color: rgba(255, 255, 255, 0.7);
}

.diagnostic-seal strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(86px, 11vw, 138px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.88;
  margin: 16px 0 19px;
  position: relative;
  z-index: 1;
}

.diagnostic-seal small {
  color: var(--gold-light);
}

.diagnostic-heading .eyebrow {
  color: rgba(21, 34, 53, 0.66);
}

.diagnostic-heading .eyebrow > span {
  background: var(--navy-deep);
}

.diagnostic-heading h2 {
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
  margin: 0;
}

.diagnostic-heading h2 em {
  color: white;
}

.diagnostic-lead {
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.45;
  margin: 36px 0 18px;
  max-width: 700px;
}

.diagnostic-heading > p:last-child {
  color: rgba(21, 34, 53, 0.68);
  font-size: 15px;
  line-height: 1.72;
  margin: 0;
  max-width: 650px;
}

.diagnostic-story {
  background:
    linear-gradient(rgba(33, 49, 71, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 49, 71, 0.026) 1px, transparent 1px),
    var(--paper);
  background-size: 68px 68px;
}

.diagnostic-story-grid {
  display: grid;
  gap: 110px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.diagnostic-sticky {
  align-self: start;
  position: sticky;
  top: 40px;
}

.diagnostic-sticky h3,
.outcomes-header h3 {
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(39px, 4.2vw, 60px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0;
}

.diagnostic-sticky h3 em,
.outcomes-header h3 em {
  color: var(--gold);
  font-weight: 400;
}

.diagnostic-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}

.diagnostic-values span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 13px;
  text-transform: uppercase;
}

.diagnostic-copy {
  border-left: 1px solid var(--line);
  padding-left: 58px;
}

.diagnostic-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.86;
  margin: 0 0 24px;
}

.diagnostic-copy .lead {
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.48;
}

.diagnostic-outcomes {
  background: var(--navy-deep);
  color: white;
  overflow: hidden;
  position: relative;
}

.diagnostic-outcomes::after {
  border: 1px solid rgba(231, 170, 49, 0.12);
  border-radius: 50%;
  content: "";
  height: 720px;
  position: absolute;
  right: -360px;
  top: -280px;
  width: 720px;
}

.outcomes-header {
  align-items: end;
  display: grid;
  gap: 90px;
  grid-template-columns: 1fr 0.6fr;
  position: relative;
  z-index: 1;
}

.outcomes-header h3 {
  color: white;
  max-width: 760px;
}

.outcomes-header > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.72;
  margin: 0 0 6px;
}

.outcomes-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 68px 0 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.outcomes-grid li {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  min-height: 215px;
  padding: 30px 28px;
}

.outcomes-grid li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.outcomes-grid span {
  color: var(--gold);
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  margin-bottom: 54px;
}

.outcomes-grid strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.42;
}

.diagnostic-cta {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 60px;
  justify-content: space-between;
  margin-top: 38px;
  padding: 34px 38px;
  position: relative;
  z-index: 1;
}

.diagnostic-cta small {
  color: var(--gold);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.diagnostic-cta p {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
  margin: 0;
  max-width: 650px;
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.founder-note {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 19px;
  margin-top: 48px;
  padding-top: 28px;
  width: min(100%, 420px);
}

.founder-note strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
}

.founder-note p {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.55;
  margin: 0;
  text-transform: uppercase;
}

.about-copy {
  border-left: 1px solid var(--line);
  padding-left: 56px;
}

.about-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 22px;
}

.about-copy .lead {
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.48;
}

.services {
  background:
    linear-gradient(rgba(33, 49, 71, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 49, 71, 0.035) 1px, transparent 1px),
    var(--ivory);
  background-size: 64px 64px;
}

.services-intro {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 0.75fr;
  margin-bottom: 64px;
}

.services-intro > p,
.process-header > p,
.faq-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 5px;
}

.services-list {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.service-item {
  align-items: start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  gap: 21px;
  grid-template-columns: 34px 1fr 44px;
  min-height: 116px;
  padding: 28px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-item:nth-child(odd) {
  padding-right: 28px;
}

.service-item:nth-child(even) {
  padding-left: 28px;
}

.service-item:hover {
  background: white;
  border-color: rgba(231, 170, 49, 0.45);
  box-shadow: 0 16px 40px rgba(21, 34, 53, 0.08);
  transform: translateY(-3px);
}

.service-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
  padding-top: 3px;
}

.service-item h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}

.service-line {
  background: var(--line);
  height: 1px;
  margin-top: 13px;
  position: relative;
  width: 100%;
}

.service-line::after {
  background: var(--gold);
  content: "";
  height: 5px;
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
}

.process {
  background: var(--navy-deep);
  color: white;
  overflow: hidden;
  position: relative;
}

.process::after {
  border: 1px solid rgba(231, 170, 49, 0.12);
  border-radius: 50%;
  content: "";
  height: 600px;
  position: absolute;
  right: -300px;
  top: -340px;
  width: 600px;
}

.process-header {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 0.7fr;
}

.process-header h2 {
  color: white;
}

.process-header > p {
  color: rgba(255, 255, 255, 0.58);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
  margin: 72px 0 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.process-list::before {
  background: rgba(255, 255, 255, 0.14);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 20px;
}

.process-list li {
  min-height: 130px;
  padding: 0 26px 0 0;
  position: relative;
}

.process-list li::before {
  background: var(--gold);
  border: 8px solid var(--navy-deep);
  border-radius: 50%;
  content: "";
  height: 17px;
  left: 0;
  position: absolute;
  top: 12px;
  width: 17px;
}

.process-list span {
  color: var(--gold);
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  margin: 48px 0 12px;
}

.process-list h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}

.why {
  background: var(--paper);
}

.why-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.quote-block {
  background: var(--gold);
  border-radius: var(--radius-lg);
  color: var(--navy-deep);
  margin-top: 58px;
  max-width: 450px;
  padding: 30px 34px;
  position: relative;
}

.quote-block::before {
  content: "“";
  font-family: var(--serif);
  font-size: 75px;
  left: 19px;
  line-height: 1;
  opacity: 0.22;
  position: absolute;
  top: 5px;
}

.quote-block p {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.35;
  margin: 0;
  position: relative;
}

.why-copy {
  border-left: 1px solid var(--line);
  padding-left: 56px;
}

.why-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
  margin: 0 0 22px;
}

.why-copy .why-closing {
  border-top: 1px solid var(--line);
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.55;
  margin-top: 34px;
  padding-top: 28px;
}

.faq {
  background: var(--ivory);
}

.faq-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.faq-heading > p {
  margin-top: 28px;
  max-width: 420px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding-inline: 24px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.faq-list details[open] {
  background: white;
  border-color: rgba(231, 170, 49, 0.45);
  box-shadow: 0 14px 38px rgba(21, 34, 53, 0.07);
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 20px;
  grid-template-columns: 34px 1fr 24px;
  list-style: none;
  min-height: 94px;
  padding: 15px 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
}

.faq-list summary strong {
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.faq-list summary i {
  height: 18px;
  position: relative;
  width: 18px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  background: var(--navy);
  content: "";
  height: 1px;
  left: 2px;
  position: absolute;
  top: 8px;
  transition: transform 180ms ease;
  width: 14px;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: -4px 44px 0 54px;
  padding-bottom: 30px;
}

.contact {
  background:
    linear-gradient(rgba(33, 49, 71, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 49, 71, 0.024) 1px, transparent 1px),
    var(--paper);
  background-size: 68px 68px;
  color: var(--ink);
  overflow: hidden;
  padding: 112px 0;
  position: relative;
}

.final-cta-mark {
  opacity: 0.025;
  position: absolute;
  right: 2%;
  top: -140px;
  transform: rotate(-8deg);
  width: 590px;
}

.final-cta-mark img {
  height: auto;
  width: 100%;
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: 88px;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  position: relative;
  z-index: 1;
}

.contact h2 {
  color: var(--navy-deep);
  font-size: clamp(42px, 4.8vw, 66px);
  max-width: 690px;
}

.contact .eyebrow-light {
  color: var(--navy-soft);
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 28px 0 38px;
  max-width: 660px;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links > a,
.contact-location {
  align-items: center;
  background: rgba(247, 245, 239, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  gap: 15px;
  min-height: 76px;
  padding: 14px 17px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.contact-links > a:hover,
.contact-links > a:focus-visible {
  background: white;
  border-color: rgba(231, 170, 49, 0.6);
  box-shadow: 0 12px 34px rgba(21, 34, 53, 0.07);
  transform: translateX(4px);
}

.contact-link-icon {
  align-items: center;
  background: rgba(231, 170, 49, 0.14);
  border: 1px solid rgba(231, 170, 49, 0.32);
  border-radius: 50%;
  color: #9a6815;
  display: flex;
  flex: 0 0 auto;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.contact-links > a > span:last-child,
.contact-location > span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-links small {
  color: #9a6815;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-links strong {
  color: var(--navy-deep);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.contact-icon {
  display: block;
  flex: 0 0 auto;
  height: 22px;
  width: 22px;
}

.contact-form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(21, 34, 53, 0.11);
  color: var(--ink);
  padding: 38px;
}

.contact-form-heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  padding-bottom: 25px;
}

.contact-form-heading small,
.contact-form label > span:first-child {
  color: var(--navy-soft);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form-heading small {
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-form-heading h3 {
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0;
}

.contact-form-heading p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 9px 0 0;
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  display: block;
}

.contact-form label > span:first-child {
  margin-bottom: 9px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  appearance: none;
  background: white;
  border: 1px solid rgba(33, 49, 71, 0.17);
  border-radius: 12px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  padding: 14px 15px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
  width: 100%;
}

.contact-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy-soft) 50%),
    linear-gradient(135deg, var(--navy-soft) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 40px;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(101, 112, 128, 0.68);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(231, 170, 49, 0.13);
}

.contact-form .form-consent {
  align-items: flex-start;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  gap: 10px;
  line-height: 1.5;
  margin: 18px 0 20px;
}

.contact-form .form-consent input {
  accent-color: var(--gold);
  appearance: auto;
  cursor: pointer;
  flex: 0 0 auto;
  height: 16px;
  margin-top: 1px;
  padding: 0;
  width: 16px;
}

.contact-form .form-consent > span:first-of-type {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
  text-transform: none;
}

.contact-form .form-consent > span:first-of-type,
.contact-form .form-consent > span:first-of-type * {
  cursor: pointer;
}

.contact-form .form-consent a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(231, 170, 49, 0.75);
  text-underline-offset: 3px;
}

.contact-submit {
  border: 0;
  cursor: pointer;
  justify-content: space-between;
  width: 100%;
}

.form-helper {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 12px 0 0;
  text-align: center;
}

.form-success {
  color: #246a3b;
}

.form-error {
  color: #9d342d;
}

footer {
  background: #0e1928;
  color: white;
  padding: 58px 0 22px;
}

.footer-main {
  align-items: start;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(220px, 1.2fr) minmax(160px, 0.7fr) minmax(250px, 1fr);
}

.footer-main nav {
  display: grid;
  gap: 11px;
}

.footer-main nav a,
.footer-contact a,
.footer-location {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: color 180ms ease;
}

.footer-main nav a:hover,
.footer-main nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: white;
}

.footer-column {
  display: grid;
  gap: 14px;
}

.footer-column > strong {
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact a,
.footer-location {
  align-items: center;
  display: flex;
  gap: 10px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.footer-contact .contact-icon {
  color: var(--gold);
  height: 17px;
  width: 17px;
}

.footer-legal {
  align-items: center;
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 180ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.34);
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  letter-spacing: 0.09em;
  margin-top: 38px;
  padding-top: 20px;
  text-transform: uppercase;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 14px 40px rgba(7, 59, 29, 0.3);
  color: #092a16;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0.05em;
  padding: 13px 17px;
  position: fixed;
  right: 22px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    transform 180ms ease;
  z-index: 30;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #39e377;
  transform: translateY(-3px);
}

.reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  background: var(--paper);
  min-height: 100vh;
}

.legal-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 92px;
  justify-content: space-between;
  margin-inline: auto;
  width: min(1180px, calc(100% - 64px));
}

.legal-header > a:first-child {
  align-items: center;
  display: flex;
}

.legal-logo {
  height: 76px;
  object-fit: contain;
  width: auto;
}

.legal-back {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.legal-back:hover,
.legal-back:focus-visible {
  background: var(--ivory);
  border-color: rgba(231, 170, 49, 0.55);
}

.legal-hero {
  background:
    linear-gradient(rgba(33, 49, 71, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 49, 71, 0.026) 1px, transparent 1px),
    var(--ivory);
  background-size: 68px 68px;
  border-bottom: 1px solid var(--line);
  padding: 92px 0 82px;
}

.legal-hero h1 {
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(46px, 6.4vw, 78px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
  margin: 0;
}

.legal-hero > .page-shell > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 28px 0 20px;
  max-width: 760px;
}

.legal-hero small {
  color: var(--navy-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-content {
  padding-bottom: 120px;
  padding-top: 82px;
  width: min(940px, calc(100% - 64px));
}

.legal-content > section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 42px;
  grid-template-columns: 42px 1fr;
  padding: 40px 0 46px;
}

.legal-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 15px;
  padding-top: 7px;
}

.legal-content h2 {
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin: 0 0 20px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.legal-content p {
  margin: 0 0 17px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  list-style: disc;
  margin: 0 0 22px;
  padding-left: 20px;
}

.legal-content a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(231, 170, 49, 0.75);
  text-underline-offset: 3px;
}

.legal-reference {
  background: var(--navy-deep);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  color: white;
  margin-top: 34px;
  padding: 28px 30px;
}

.legal-reference strong {
  color: var(--gold-light);
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.legal-reference p {
  color: rgba(255, 255, 255, 0.68);
}

.legal-reference a {
  color: white;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr 0.68fr;
  }

  .hero h1 {
    font-size: clamp(48px, 7.2vw, 68px);
  }

  .hero-intro {
    max-width: 570px;
  }

  .about-grid,
  .why-grid,
  .faq-grid {
    gap: 62px;
  }

  .proof-item {
    gap: 12px;
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }

  .diagnostic-hero-grid {
    gap: 56px;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  }

  .diagnostic-story-grid {
    gap: 62px;
  }

  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .outcomes-grid li:nth-child(3) {
    border: 1px solid rgba(255, 255, 255, 0.13);
  }

  .outcomes-grid li:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .diagnostic-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .contact-grid {
    gap: 52px;
    grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 38px;
  }

  .process-list::before {
    display: none;
  }

  .process-list li {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .process-list li::before {
    top: -9px;
  }

  .process-list span {
    margin-top: 32px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    max-width: none;
    padding-inline: 20px;
    width: 100%;
  }

  .site-header {
    height: 80px;
    padding-inline: 20px;
    position: absolute;
  }

  .brand-mark {
    height: 40px;
    width: 40px;
  }

  .header-brand .official-logo-image {
    height: 58px;
  }

  .header-symbol-image {
    height: 52px;
  }

  .brand-mark img {
    height: 45px;
    width: 52px;
  }

  .header-brand small {
    display: none;
  }

  .header-cta {
    font-size: 12px;
    gap: 6px;
    padding: 10px 12px;
  }

  .header-cta .button-arrow {
    display: none;
  }

  .hero {
    padding: 138px 0 84px;
  }

  .hero::before {
    background-size: 50% 100%;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-intro {
    margin: 28px 0;
  }

  .hero-visual {
    margin: 0 auto;
    max-width: 390px;
    width: 92%;
  }

  .experience-card {
    bottom: 4%;
    left: -2%;
  }

  .scroll-cue {
    display: none;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    gap: 16px;
    grid-template-columns: 90px 1fr;
    min-height: 92px;
    padding: 22px 0;
  }

  .proof-item:first-child {
    padding-left: 0;
  }

  .proof-item + .proof-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-item strong {
    font-size: 35px;
  }

  .section-pad {
    padding-block: 84px;
  }

  .about-grid,
  .why-grid,
  .faq-grid,
  .services-intro,
  .process-header,
  .diagnostic-hero-grid,
  .diagnostic-story-grid,
  .outcomes-header {
    display: grid;
    gap: 46px;
    grid-template-columns: 1fr;
  }

  .diagnostic-seal {
    margin-inline: auto;
    max-width: 390px;
    width: min(100%, 390px);
  }

  .diagnostic-heading h2 {
    font-size: clamp(56px, 18vw, 82px);
  }

  .diagnostic-lead {
    font-size: 22px;
    margin-top: 28px;
  }

  .diagnostic-sticky {
    position: static;
  }

  .diagnostic-sticky h3,
  .outcomes-header h3 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .diagnostic-copy {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 38px;
  }

  .diagnostic-copy .lead {
    font-size: 22px;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .outcomes-grid li,
  .outcomes-grid li:nth-child(3) {
    border: 1px solid rgba(255, 255, 255, 0.13);
    min-height: 165px;
  }

  .outcomes-grid li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .outcomes-grid span {
    margin-bottom: 32px;
  }

  .diagnostic-cta {
    padding: 28px 24px;
  }

  .diagnostic-cta .primary-button {
    justify-content: space-between;
    width: 100%;
  }

  .section-heading h2,
  .process-header h2,
  .contact h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .about-copy,
  .why-copy {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 38px;
  }

  .services-intro {
    margin-bottom: 44px;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .service-item:nth-child(odd),
  .service-item:nth-child(even) {
    border: 1px solid var(--line);
    padding: 24px 22px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-list h3 {
    font-size: 18px;
  }

  .faq-grid {
    gap: 52px;
  }

  .faq-list summary {
    grid-template-columns: 28px 1fr 20px;
  }

  .faq-list details {
    padding-inline: 18px;
  }

  .faq-list summary strong {
    font-size: 18px;
  }

  .faq-list details > p {
    margin-left: 48px;
    margin-right: 12px;
  }

  .contact {
    padding: 86px 0;
  }

  .final-cta-mark {
    right: -35%;
    width: 500px;
  }

  .contact-grid {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .contact-copy > p:not(.eyebrow) {
    margin-bottom: 30px;
  }

  .contact-form-card {
    padding: 26px 22px;
  }

  .footer-main {
    gap: 36px;
    grid-template-columns: 1fr;
  }

  .footer-brand .official-logo-image {
    height: 112px;
  }

  .footer-main nav {
    gap: 15px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .whatsapp-float {
    border-radius: 50%;
    bottom: 18px;
    height: 54px;
    justify-content: center;
    padding: 0;
    right: 18px;
    width: 54px;
  }

  .whatsapp-float span {
    display: none;
  }

  .legal-header {
    height: 76px;
    padding-inline: 20px;
    width: 100%;
  }

  .legal-logo {
    height: 60px;
  }

  .legal-back {
    font-size: 11px;
    padding: 10px 12px;
  }

  .legal-hero {
    padding: 68px 0 62px;
  }

  .legal-content {
    padding-bottom: 86px;
    padding-inline: 20px;
    padding-top: 60px;
    width: 100%;
  }

  .legal-content > section {
    gap: 14px;
    grid-template-columns: 1fr;
    padding: 32px 0 38px;
  }

  .legal-content h2 {
    margin-bottom: 16px;
  }

  .legal-reference {
    padding: 24px 22px;
  }
}

@media (max-width: 540px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .contact-links > a {
    min-height: 72px;
  }

  .contact-form-heading h3 {
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-orbit {
    animation: none;
  }

  .scroll-cue i {
    animation: none;
  }

  .reveal-ready .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
