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

:root {
  --black: #000000;
  --charcoal: #171717;
  --gray: #2B2B2B;
  --green: #39FF14;
  --white: #FFFFFF;
  --paper: #F5F4F0;
  --line: #D7D5D0;
  --muted: #777777;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', Arial, sans-serif;

  --max: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.65;
}

body,
button,
input,
textarea,
select {
  font-family: var(--sans);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 56px));
  margin: auto;
}

.section {
  padding: 105px 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}


/* =====================================================
   HEADER
   ===================================================== */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
}

.logo span {
  color: var(--green);
}

.main-nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
}

.main-nav a,
.wa-link {
  color: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.main-nav a:hover,
.wa-link:hover {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.wa-link {
  font-size: 22px;
  line-height: 1;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 40px;
  height: 40px;
}


/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-height: 48px;
  padding: 13px 22px;

  border: 1px solid transparent;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;

  transition: .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: #000;
}

.btn-green:hover {
  background: #fff;
}

.btn-dark {
  background: #000;
  color: #fff;
}

.btn-dark:hover {
  background: var(--gray);
}

.btn-outline {
  border-color: rgba(255,255,255,.45);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-outline-green {
  border-color: var(--green);
  color: var(--green);
}

.btn-outline-green:hover {
  background: var(--green);
  color: #000;
}

.btn-small {
  min-height: 40px;
  padding: 10px 17px;
}


/* =====================================================
   HERO
   ===================================================== */

.hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;

  background: #090909;
  color: #fff;

  padding: 72px 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 78% 45%,
      #363636 0,
      #161616 25%,
      #050505 65%
    );
}

.hero-grid {
  position: relative;
  z-index: 1;

  min-height: 658px;

  display: grid;
  grid-template-columns: 1.02fr .98fr;

  align-items: end;
  gap: 35px;
}

.hero-copy {
  padding: 70px 0 105px;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 13px;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.eyebrow span,
.section-label span {
  width: 34px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}

.hero h1 {
  max-width: 570px;

  margin: 20px 0 23px;

  font-size: clamp(42px, 5vw, 67px);
  line-height: 1.03;

  letter-spacing: -.055em;
  font-weight: 700;
}

.hero h1 em {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  color: var(--green);
}

.hero-kicker {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

.hero-text {
  max-width: 510px;

  color: rgba(255,255,255,.66);

  font-size: 14px;
  line-height: 1.75;

  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.hero-portrait {
  align-self: stretch;

  position: relative;

  min-height: 658px;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  overflow: hidden;
}

.hero-portrait:after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      #090909 0%,
      transparent 30%,
      transparent 75%,
      rgba(0,0,0,.25) 100%
    );

  pointer-events: none;
}

.hero-portrait img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  filter: contrast(1.04);
}

.portrait-caption {
  position: absolute;
  z-index: 2;

  right: 8px;
  top: 52%;

  writing-mode: vertical-rl;
  transform: rotate(180deg);

  font-size: 9px;
  letter-spacing: .12em;

  color: rgba(255,255,255,.55);
}


/* =====================================================
   GENERAL LABELS
   ===================================================== */

.section-label {
  margin-bottom: 30px;
}

.section-label.light {
  color: #fff;
}

.green-line {
  width: 40px;
  height: 2px;
  background: var(--green);
  margin: 25px 0;
}


/* =====================================================
   PROBLEM
   ===================================================== */

.problem-section {
  background: #fff;
}

.problem-layout {
  display: grid;

  grid-template-columns: .72fr 1.28fr;

  gap: 80px;
}

.problem-layout h2,
.response-copy h2,
.services-intro h2,
.method-intro h2,
.authority-copy h2 {
  font-family: var(--serif);

  font-size: clamp(36px, 4.2vw, 56px);

  line-height: 1.08;

  font-weight: 500;

  letter-spacing: -.035em;
}

.problem-layout > div:first-child p {
  max-width: 370px;

  color: #666;

  font-size: 14px;
}

.problem-list {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-left: 1px solid var(--line);
}

.problem-list article {
  padding: 0 27px;

  border-right: 1px solid var(--line);
}

.problem-list b {
  font-family: var(--serif);

  font-size: 44px;

  font-weight: 500;
}

.problem-list h3 {
  font-size: 15px;

  margin: 10px 0 12px;
}

.problem-list p {
  color: #666;

  font-size: 12px;

  line-height: 1.75;
}


/* =====================================================
   RESPONSE
   ===================================================== */

.response-section {
  background: var(--charcoal);

  color: #fff;
}

.response-layout {
  display: grid;

  grid-template-columns: .75fr 1.25fr;

  gap: 65px;
}

.response-copy p {
  max-width: 390px;

  color: rgba(255,255,255,.63);

  font-size: 13px;
}

.response-copy h2 {
  font-family: var(--sans);

  font-size: clamp(34px, 4vw, 50px);

  font-weight: 600;
}

.pillar-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-left: 1px solid rgba(255,255,255,.16);
}

.pillar-grid article {
  padding: 5px 22px 10px;

  border-right: 1px solid rgba(255,255,255,.16);
}

.pillar-icon {
  height: 60px;

  color: var(--green);

  font-size: 44px;

  line-height: 1;
}

.pillar-grid h3 {
  font-size: 14px;

  margin-bottom: 12px;
}

.pillar-grid p {
  font-size: 11px;

  color: rgba(255,255,255,.58);

  line-height: 1.7;
}


/* =====================================================
   INTEGRAL
   ===================================================== */

.integral-section {
  position: relative;

  overflow: hidden;

  background: #050505;

  color: #fff;

  min-height: 650px;
}

.integral-photo {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.98) 0%,
      rgba(0,0,0,.90) 38%,
      rgba(0,0,0,.62) 62%,
      rgba(0,0,0,.88) 100%
    ),
    radial-gradient(
      circle at 62% 52%,
      #4c4c4c 0,
      #1e1e1e 35%,
      #070707 70%
    );
}

.integral-layout {
  position: relative;

  z-index: 1;

  display: grid;

  grid-template-columns: 1fr .8fr;

  gap: 80px;

  min-height: 545px;

  align-items: center;
}

.integral-kicker {
  font-family: var(--serif);

  font-size: 20px;

  line-height: 1.25;

  max-width: 380px;
}

.integral-copy h2 {
  font-size: clamp(39px, 4.5vw, 58px);

  line-height: .98;

  letter-spacing: -.045em;

  margin: 22px 0;
}

.integral-copy > p:not(.integral-kicker) {
  color: rgba(255,255,255,.6);

  font-size: 13px;
}

.integral-system {
  border-left: 1px solid rgba(255,255,255,.38);

  padding-left: 27px;
}

.system-item {
  display: grid;

  grid-template-columns: 38px 1fr;

  gap: 10px;

  padding: 11px 0;
}

.system-item > b {
  font-size: 16px;

  color: var(--green);
}

.system-item strong {
  font-size: 12px;
}

.system-item p {
  margin: 2px 0 0;

  color: rgba(255,255,255,.55);

  font-size: 10px;

  line-height: 1.5;
}


/* =====================================================
   SERVICES
   ===================================================== */

.services-section {
  background: #fff;
}

.services-layout {
  display: grid;

  grid-template-columns: .85fr 1.05fr .65fr;

  gap: 42px;

  align-items: start;
}

.services-intro h2 {
  font-family: var(--serif);

  font-size: 37px;
}

.services-intro p {
  color: #666;

  font-size: 13px;
}

.service-heading {
  color: #47a936;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .1em;

  margin-bottom: 18px;
}

.business-services {
  border-left: 1px solid var(--line);

  padding-left: 27px;
}

.business-services a {
  display: grid;

  grid-template-columns: 28px 1fr;

  gap: 9px;

  padding: 12px 0;

  border-bottom: 1px solid var(--line);
}

.business-services a:last-child {
  border-bottom: 0;
}

.business-services b {
  font-size: 10px;

  color: #555;
}

.business-services strong {
  display: block;

  font-size: 12px;
}

.business-services small {
  display: block;

  color: #777;

  font-size: 10px;

  line-height: 1.5;

  margin-top: 2px;
}

.people-service {
  border-left: 1px solid var(--line);

  padding-left: 27px;
}

.people-service h3 {
  font-family: var(--serif);

  font-size: 23px;

  font-weight: 500;

  line-height: 1.25;
}

.arrow-link {
  font-size: 30px;
}


/* =====================================================
   METHOD
   ===================================================== */

.method-section {
  background: var(--paper);
}

.method-intro {
  display: grid;

  grid-template-columns: 1.2fr .8fr;

  gap: 80px;

  margin-bottom: 70px;
}

.method-intro h2 {
  margin: 0;
}

.method-intro p {
  max-width: 340px;

  color: #666;

  font-size: 13px;
}

.method-line {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  position: relative;

  border-top: 1px solid #777;
}

.method-line article {
  position: relative;

  padding: 20px 25px 0 0;
}

.method-line article:before {
  content: "";

  position: absolute;

  top: -2px;
  left: 0;

  width: 6px;
  height: 6px;

  background: var(--green);

  border-radius: 50%;
}

.method-line b {
  font-family: var(--serif);

  font-size: 22px;

  font-weight: 500;
}

.method-line h3 {
  font-size: 10px;

  margin: 24px 0 9px;
}

.method-line p {
  font-size: 10px;

  color: #666;

  line-height: 1.6;

  max-width: 190px;
}


/* =====================================================
   TECHNOLOGY
   ===================================================== */

.technology-section {
  background: #080808;

  color: #fff;
}

.tech-layout {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}

.tech-copy h2 {
  font-family: var(--serif);

  font-size: clamp(35px, 4.3vw, 52px);

  font-weight: 500;

  line-height: 1.08;
}

.tech-copy p {
  max-width: 500px;

  color: rgba(255,255,255,.58);

  font-size: 13px;

  line-height: 1.8;
}

.tech-equation {
  border-left: 1px solid rgba(255,255,255,.2);

  padding-left: 45px;

  display: flex;

  flex-direction: column;

  gap: 12px;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: .04em;
}

.tech-equation span {
  color: var(--green);

  font-size: 25px;
}

.tech-equation strong {
  color: var(--green);

  font-size: 24px;

  margin-top: 8px;
}


/* =====================================================
   DIAGNOSIS
   ===================================================== */

.diagnosis-section {
  background: #eeeDE9;
}

.diagnosis-layout {
  display: grid;

  grid-template-columns: .7fr 1.3fr;

  gap: 70px;

  align-items: start;
}

.diagnosis-intro h2 {
  font-family: var(--serif);

  font-size: 46px;

  line-height: 1.08;

  font-weight: 500;
}

.diagnosis-intro p {
  color: #666;

  font-size: 13px;

  line-height: 1.75;
}

.diagnosis-box {
  background: #fff;

  padding: 35px;

  border: 1px solid #d9d7d2;
}

#case-text {
  width: 100%;

  min-height: 210px;

  resize: vertical;

  border: 0;

  border-bottom: 1px solid var(--line);

  outline: none;

  background: #fff;

  padding: 5px 0 20px;

  font-size: 14px;

  line-height: 1.7;
}

#case-text:focus {
  border-bottom-color: var(--green);
}

.diagnosis-bar {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  padding-top: 18px;
}

#status-label {
  color: #888;

  font-size: 10px;
}

.diag-error {
  display: none;

  margin-top: 18px;

  padding: 12px;

  background: #fff0f0;

  border: 1px solid #e4caca;

  color: #8d2929;

  font-size: 12px;
}

.diag-result {
  display: none;

  margin-top: 35px;

  padding-top: 30px;

  border-top: 1px solid var(--line);
}

.result-header {
  display: grid;

  grid-template-columns: 120px 1fr;

  gap: 25px;

  align-items: center;
}

.result-score {
  width: 120px;
  height: 120px;

  border: 8px solid var(--green);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;
}

.result-score span {
  font-size: 27px;

  font-weight: 800;
}

.result-score small {
  font-size: 8px;

  color: #777;

  text-transform: uppercase;
}

.result-badge {
  display: inline-block;

  padding: 6px 9px;

  background: var(--green);

  color: #000;

  font-size: 9px;

  font-weight: 800;

  text-transform: uppercase;
}

#result-title {
  font-size: 26px;

  line-height: 1.1;

  margin: 13px 0 8px;
}

#result-summary {
  color: #666;

  font-size: 13px;

  line-height: 1.7;
}

.result-block {
  padding-top: 22px;

  margin-top: 22px;

  border-top: 1px solid var(--line);
}

.result-block h4 {
  font-size: 12px;

  margin-bottom: 9px;
}

.result-block p,
.result-block li {
  color: #666;

  font-size: 12px;

  line-height: 1.7;
}

.result-block ul {
  padding-left: 18px;
}


/* =====================================================
   LEAD CAPTURE
   ===================================================== */

.lead-box {
  margin-top: 30px;

  padding: 30px;

  background: #111;

  color: #fff;
}

.lead-box h3 {
  font-family: var(--serif);

  font-size: 29px;

  font-weight: 500;
}

.lead-box > p {
  color: rgba(255,255,255,.58);

  font-size: 12px;
}

.lead-form {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;
}

.lead-form input,
.lead-form select {
  width: 100%;

  min-height: 46px;

  background: #1d1d1d;

  border: 1px solid #3a3a3a;

  color: #fff;

  padding: 10px 12px;

  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--green);
}

.lead-form input::placeholder {
  color: #777;
}

.lead-form .full {
  grid-column: 1 / -1;
}


/* =====================================================
   AUTHORITY
   ===================================================== */

.authority-section {
  background: #fff;
}

.authority-layout {
  display: grid;

  grid-template-columns: .85fr 1.15fr;

  gap: 80px;

  align-items: center;
}

.authority-image {
  min-height: 480px;

  background:
    linear-gradient(
      135deg,
      #dad9d5,
      #898886 50%,
      #222 50%,
      #080808
    );

  position: relative;
}

.authority-image:after {
  content: "";

  position: absolute;

  right: 18%;
  bottom: 0;

  width: 35%;
  height: 75%;

  background:
    linear-gradient(
      150deg,
      transparent 0 30%,
      rgba(255,255,255,.35) 30% 32%,
      transparent 32% 100%
    );

  opacity: .45;
}

.authority-copy h2 {
  font-size: 47px;
}

.authority-copy > p {
  color: #666;

  font-size: 13px;

  line-height: 1.8;

  max-width: 620px;
}

.authority-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  border-top: 1px solid var(--line);

  margin-top: 30px;
}

.authority-grid div {
  padding: 18px 15px 18px 0;

  border-bottom: 1px solid var(--line);
}

.authority-grid strong {
  display: block;

  font-size: 11px;
}

.authority-grid small {
  display: block;

  color: #777;

  font-size: 10px;

  margin-top: 4px;
}


/* =====================================================
   FOUNDER
   ===================================================== */

.founder-section {
  background: var(--charcoal);

  color: #fff;
}

.founder-layout {
  display: grid;

  grid-template-columns: 1fr .8fr;

  gap: 90px;

  align-items: center;
}

.founder-copy h2 {
  font-family: var(--serif);

  font-size: clamp(39px, 4.5vw, 58px);

  line-height: 1.04;

  font-weight: 500;
}

.founder-copy p {
  max-width: 510px;

  color: rgba(255,255,255,.6);

  font-size: 13px;

  line-height: 1.8;
}

.founder-detail {
  position: relative;
}

.founder-detail img {
  width: 100%;

  aspect-ratio: 4 / 5;

  object-fit: cover;

  object-position: center top;
}

.founder-detail div {
  position: absolute;

  right: -22px;
  bottom: 25px;

  background: var(--green);

  color: #000;

  padding: 16px 20px;

  display: flex;

  flex-direction: column;
}

.founder-detail strong {
  font-size: 30px;

  line-height: 1;
}

.founder-detail span {
  font-size: 9px;

  font-weight: 800;

  text-transform: uppercase;

  margin-top: 5px;
}


/* =====================================================
   TESTIMONIALS
   ===================================================== */

.testimonials-section {
  background: #fff;
}

.testimonial-wrap {
  max-width: 800px;

  margin: 40px auto 0;

  text-align: center;

  padding: 55px 20px;

  border-top: 1px solid var(--line);

  border-bottom: 1px solid var(--line);
}

.quote-mark {
  font-family: var(--serif);

  font-size: 80px;

  line-height: .6;

  color: var(--green);
}

blockquote {
  font-family: var(--serif);

  font-size: 30px;

  line-height: 1.25;

  margin: 20px auto 25px;
}

.testimonial-author {
  font-size: 9px;

  font-weight: 800;

  letter-spacing: .08em;

  color: #777;
}


/* =====================================================
   FINAL CTA
   ===================================================== */

.final-cta {
  background: #000;

  color: #fff;

  text-align: center;

  padding: 120px 0;
}

.final-cta .section-label {
  justify-content: center;
}

.final-cta h2 {
  max-width: 760px;

  margin: 20px auto;

  font-family: var(--serif);

  font-size: clamp(42px, 5.5vw, 68px);

  font-weight: 500;

  line-height: 1.02;
}

.final-cta p {
  color: rgba(255,255,255,.55);

  font-size: 13px;
}

.final-actions {
  display: flex;

  justify-content: center;

  gap: 13px;

  margin-top: 30px;
}


/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
  background: #000;

  color: rgba(255,255,255,.5);

  border-top: 1px solid #222;

  padding: 35px 0;
}

.footer-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;
}

.footer-inner p {
  font-size: 9px;

  margin: 0;
}


/* =====================================================
   FLOATING WHATSAPP
   ===================================================== */

.floating-wa {
  position: fixed;

  right: 20px;
  bottom: 20px;

  z-index: 900;

  width: 48px;
  height: 48px;

  border-radius: 50%;

  background: var(--green);

  color: #000;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 10px;

  font-weight: 800;

  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}


/* =====================================================
   ANIMATION
   ===================================================== */

.reveal {
  opacity: 0;

  transform: translateY(20px);

  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal.visible {
  opacity: 1;

  transform: none;
}


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

@media (max-width: 900px) {

  .main-nav {
    gap: 18px;
  }

  .hero-grid,
  .problem-layout,
  .response-layout,
  .integral-layout,
  .services-layout,
  .method-intro,
  .tech-layout,
  .diagnosis-layout,
  .authority-layout,
  .founder-layout {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 95px 0 25px;
  }

  .hero-portrait {
    min-height: 500px;
  }

  .problem-list {
    border-left: 0;

    border-top: 1px solid var(--line);
  }

  .pillar-grid {
    grid-template-columns: 1fr 1fr;

    border-left: 0;
  }

  .pillar-grid article {
    padding: 25px 20px;
  }

  .integral-layout {
    min-height: auto;

    padding-top: 90px;
    padding-bottom: 90px;
  }

  .services-layout {
    gap: 35px;
  }

  .people-service {
    min-height: 180px;
  }

  .diagnosis-intro h2,
  .authority-copy h2 {
    font-size: 40px;
  }

  .authority-image {
    min-height: 390px;
  }

  .founder-layout {
    gap: 50px;
  }
}


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

@media (max-width: 680px) {

  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .section {
    padding: 75px 0;
  }

  .main-nav {
    position: absolute;

    display: none;

    top: 72px;
    left: 0;

    width: 100%;

    padding: 24px 22px;

    background: #111;

    flex-direction: column;

    gap: 20px;

    border-top: 1px solid #292929;
  }

  .main-nav.active {
    display: flex;
  }

  .header-actions .btn,
  .wa-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-copy {
    padding-top: 110px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-portrait {
    min-height: 420px;
  }

  .problem-list,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .problem-list article {
    border-right: 0;

    border-bottom: 1px solid var(--line);

    padding: 25px 0;
  }

  .pillar-grid article {
    border-right: 0;

    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .integral-system {
    padding-left: 18px;
  }

  .method-line {
    grid-template-columns: 1fr 1fr;

    row-gap: 30px;
  }

  .method-line article {
    padding-right: 12px;
  }

  .diagnosis-box {
    padding: 24px 18px;
  }

  .diagnosis-bar {
    align-items: stretch;

    flex-direction: column;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-form .full {
    grid-column: auto;
  }

  .result-header {
    grid-template-columns: 1fr;
  }

  .result-score {
    margin: auto;
  }

  .footer-inner {
    align-items: flex-start;

    flex-direction: column;
  }

  .final-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .floating-wa {
    right: 14px;

    bottom: 14px;
  }
}


/* =====================================================
   REDUCED MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }
}
