:root {
  --petroleum-950: #062b32;
  --petroleum-900: #0a3740;
  --petroleum-800: #0e4650;
  --petroleum-700: #175963;
  --agrocete-blue: #075a9b;
  --agrocete-blue-light: #1f79b9;
  --cyan: #8ed8df;
  --cyan-soft: #dff3f5;
  --green: #56a846;
  --ink: #122d34;
  --muted: #5d6f73;
  --line: #d9e3e4;
  --paper: #f6f8f7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 35, 41, 0.14);
  --container: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h3 {
  line-height: 1.15;
}

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

.section {
  padding: clamp(88px, 11vw, 156px) 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--agrocete-blue);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 82px;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(5, 36, 42, 0.75), transparent);
  transition: background var(--transition), height var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  height: 72px;
  background: rgba(6, 43, 50, 0.96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  height: 40px;
  padding: 0;
  background: transparent;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.18));
}

.launch-ribbon {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  color: var(--white);
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  box-shadow:
    0 8px 20px rgba(24, 96, 35, 0.28),
    0 0 12px rgba(0, 174, 239, 0.42),
    0 0 28px rgba(0, 174, 239, 0.2);
  font-size: 0.65rem;
  font-weight: 860;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  animation: launch-blue-glow 2.4s ease-in-out infinite;
}

.launch-ribbon::before {
  position: absolute;
  z-index: -1;
  inset: -7px;
  border-radius: 8px;
  background: rgba(0, 174, 239, 0.32);
  content: "";
  filter: blur(9px);
  opacity: 0.55;
  pointer-events: none;
  animation: launch-blue-halo 2.4s ease-in-out infinite;
}

@keyframes launch-blue-glow {
  0%,
  100% {
    box-shadow:
      0 8px 20px rgba(24, 96, 35, 0.28),
      0 0 10px rgba(0, 174, 239, 0.38),
      0 0 24px rgba(0, 174, 239, 0.18);
  }

  50% {
    box-shadow:
      0 8px 22px rgba(24, 96, 35, 0.32),
      0 0 18px rgba(0, 174, 239, 0.76),
      0 0 40px rgba(0, 174, 239, 0.42);
  }
}

@keyframes launch-blue-halo {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.78;
    transform: scale(1.08);
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 670;
  text-decoration: none;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  color: var(--white);
  background: var(--agrocete-blue);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.button:hover,
.button:focus-visible {
  background: var(--agrocete-blue-light);
  box-shadow: 0 12px 30px rgba(7, 90, 155, 0.28);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  color: var(--petroleum-950);
  background: var(--white);
  font-size: 0.78rem;
}

.button-small:hover,
.button-small:focus-visible {
  color: var(--white);
}

.button-light {
  color: var(--petroleum-950);
  background: var(--white);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--agrocete-blue);
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration: none;
}

.text-link span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform var(--transition);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.9);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--agrocete-blue);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--cyan);
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  padding: 142px 0 108px;
  color: var(--white);
  background:
    radial-gradient(circle at 73% 38%, rgba(110, 208, 220, 0.16), transparent 25%),
    radial-gradient(circle at 7% 90%, rgba(31, 121, 185, 0.18), transparent 32%),
    linear-gradient(118deg, var(--petroleum-950), #0b3d46 60%, #104e57);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--petroleum-950);
  filter: saturate(0.9) contrast(1.06);
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(3, 30, 36, 0.94) 0%,
    rgba(6, 48, 57, 0.84) 48%,
    rgba(9, 62, 72, 0.7) 100%
  );
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 73% 38%, rgba(110, 208, 220, 0.2), transparent 27%),
    radial-gradient(circle at 7% 90%, rgba(31, 121, 185, 0.19), transparent 34%);
  content: "";
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to right, black, transparent 86%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 52px;
}

.hero-copy {
  max-width: 610px;
}

.product-title {
  display: grid;
  grid-template-columns: min-content min-content;
  align-items: end;
  width: fit-content;
  margin: 0 0 12px;
  line-height: 0.76;
  text-transform: uppercase;
}

.product-kicker {
  grid-column: 1 / -1;
  margin: 0 10px 10px 0;
  padding: 0 0 8px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 760;
  letter-spacing: 0.2em;
  line-height: 1;
}

.product-title strong {
  font-size: clamp(5.2rem, 11vw, 9.2rem);
  font-weight: 900;
  letter-spacing: -0.09em;
}

.product-suffix {
  align-self: end;
  margin: 0 0 6px 12px;
  padding: 7px 10px 6px;
  color: var(--petroleum-950);
  background: var(--cyan);
  font-size: clamp(0.9rem, 1.5vw, 1.16rem);
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1;
}

.hero-motto {
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

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

.hero-disclaimer {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
}

.product-stage {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
}

.product-stage::before {
  position: absolute;
  width: min(36vw, 470px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(162, 224, 229, 0.2), rgba(103, 189, 200, 0.035) 56%, transparent 58%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.product-stage::after {
  position: absolute;
  bottom: 70px;
  width: 56%;
  height: 42px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  filter: blur(24px);
  content: "";
}

.product-bottle {
  position: relative;
  z-index: 3;
  width: min(30vw, 330px);
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.26));
  animation: product-float 5s ease-in-out infinite;
}

@keyframes product-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.stage-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(142, 216, 223, 0.24);
  border-radius: 50%;
}

.orbit-one {
  width: min(44vw, 560px);
  aspect-ratio: 1;
}

.orbit-two {
  width: min(31vw, 405px);
  aspect-ratio: 1;
  border-style: dashed;
  transform: rotate(18deg);
}

.formula-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.formula-chip strong {
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--petroleum-950);
  background: var(--cyan);
  place-items: center;
  border-radius: 50%;
  font-size: 0.74rem;
}

.formula-chip span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  font-weight: 690;
}

.formula-chip-one { top: 18%; left: 5%; }
.formula-chip-two { top: 39%; right: 2%; }
.formula-chip-three { bottom: 22%; left: 7%; }
.formula-chip-four { right: 5%; bottom: 31%; }

.amino-highlight {
  position: absolute;
  z-index: 5;
  top: 7%;
  right: -2%;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(285px, 47%);
  padding: 12px 15px;
  color: var(--white);
  background: rgba(4, 36, 43, 0.78);
  border: 1px solid #20b8ff;
  border-radius: 14px;
  box-shadow:
    0 0 10px rgba(32, 184, 255, 0.68),
    0 0 28px rgba(32, 184, 255, 0.42),
    inset 0 0 15px rgba(32, 184, 255, 0.14);
  backdrop-filter: blur(14px);
  animation: amino-blue-glow 2.6s ease-in-out infinite;
}

.amino-highlight .amino-icon {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  color: var(--cyan);
  place-items: center;
}

.amino-highlight .amino-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amino-highlight .amino-icon circle {
  fill: rgba(4, 36, 43, 0.9);
}

.amino-highlight strong {
  font-size: 0.84rem;
  line-height: 1.25;
}

@keyframes amino-blue-glow {
  0%, 100% {
    border-color: rgba(32, 184, 255, 0.82);
    box-shadow:
      0 0 8px rgba(32, 184, 255, 0.5),
      0 0 22px rgba(32, 184, 255, 0.3),
      inset 0 0 12px rgba(32, 184, 255, 0.12);
  }
  50% {
    border-color: rgba(142, 216, 223, 1);
    box-shadow:
      0 0 13px rgba(32, 184, 255, 0.82),
      0 0 34px rgba(32, 184, 255, 0.5),
      inset 0 0 18px rgba(32, 184, 255, 0.18);
  }
}

.stage-caption {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 18px;
  display: flex;
  align-items: center;
  width: min(430px, 78%);
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.stage-caption span {
  margin-right: 15px;
  padding-right: 15px;
  color: var(--cyan);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.72rem;
  font-weight: 800;
}

.stage-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  line-height: 1.4;
}

.hero-strip {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 42px);
  min-height: 58px;
  padding: 12px 24px;
  background: rgba(4, 31, 36, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-strip span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.16em;
}

.hero-strip i {
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.media-card {
  position: relative;
  min-height: 570px;
  background: var(--petroleum-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.media-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 40, 46, 0.92), transparent 60%);
  content: "";
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
}

.media-index {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 720;
}

.media-index span {
  margin-right: 14px;
  padding-right: 14px;
  color: var(--cyan);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.section-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.signal-list {
  margin: 34px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.signal-list li {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 680;
  line-height: 1.35;
}

.signal-list span {
  width: 44px;
  color: var(--agrocete-blue);
  font-size: 0.68rem;
  font-weight: 820;
}

blockquote {
  margin: 0;
  padding: 22px 24px;
  color: var(--petroleum-900);
  background: var(--cyan-soft);
  border-left: 4px solid var(--petroleum-700);
  border-radius: 0 12px 12px 0;
  font-weight: 700;
  line-height: 1.5;
}

.testimonial-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(31, 121, 185, 0.28), transparent 27%),
    radial-gradient(circle at 8% 82%, rgba(86, 168, 70, 0.18), transparent 25%),
    linear-gradient(135deg, var(--petroleum-950), #031c22);
  overflow: hidden;
}

.testimonial-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 82px 82px;
  content: "";
  pointer-events: none;
}

.testimonial-section .container {
  position: relative;
}

.testimonial-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: clamp(32px, 8vw, 118px);
  margin-bottom: 54px;
}

.testimonial-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.testimonial-heading > p {
  max-width: 500px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.02rem;
  line-height: 1.65;
}

.video-gallery {
  max-width: var(--container);
  margin: 0 auto;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-testimonial {
  min-width: 0;
}

.video-testimonial-card {
  height: 100%;
  background: rgba(7, 40, 47, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.video-testimonial-card:hover,
.video-testimonial.is-playing .video-testimonial-card {
  border-color: rgba(142, 216, 223, 0.55);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.32), 0 0 24px rgba(31, 121, 185, 0.13);
  transform: translateY(-4px);
}

.video-testimonial-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at center, rgba(31, 121, 185, 0.22), transparent 48%),
    #01090b;
  overflow: hidden;
}

.video-testimonial-frame video {
  display: block;
  width: 100%;
  height: 100%;
  background: #01090b;
  object-fit: contain;
}

.video-testimonial-badge {
  position: absolute;
  top: 11px;
  left: 11px;
  padding: 5px 8px;
  color: var(--white);
  background: rgba(6, 43, 50, 0.78);
  border: 1px solid rgba(142, 216, 223, 0.42);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 0.54rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}

.video-testimonial-meta {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 18px 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.video-testimonial-number {
  padding-top: 4px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.video-testimonial-meta p {
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 0.64rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-testimonial-meta h3 {
  margin: 0 0 5px;
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
}

.video-testimonial-region {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.video-testimonial-meta div > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.role-section {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 43, 50, 0.96), rgba(10, 55, 64, 0.89)),
    url("/site/images/maxmass/campanha-soja-energia.webp") center 54% / cover;
}

.role-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 80px;
  content: "";
}

.role-section .container {
  position: relative;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading-light {
  color: var(--white);
}

.section-heading-light > p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.66);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-card {
  min-height: 276px;
  padding: 30px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  transition: background var(--transition), transform var(--transition);
}

.benefit-card:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.benefit-number {
  display: block;
  margin-bottom: 56px;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.benefit-card h3 {
  margin-bottom: 14px;
  font-size: 1.42rem;
}

.benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.55;
}

.role-statement {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: start;
  max-width: 900px;
  margin: 72px auto 0;
}

.statement-mark {
  color: var(--cyan);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 0.72;
}

.role-statement p {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  font-weight: 690;
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.formula-section {
  background:
    radial-gradient(circle at 88% 14%, rgba(142, 216, 223, 0.23), transparent 25%),
    var(--paper);
}

.formula-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(52px, 9vw, 128px);
}

.formula-copy h2 {
  max-width: 580px;
}

.formula-copy > p {
  color: var(--muted);
}

.lead-copy {
  color: var(--ink) !important;
  font-size: 1.2rem;
  font-weight: 620;
}

.technical-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.technical-note span {
  padding: 5px 9px;
  color: var(--white);
  background: var(--petroleum-800);
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 780;
  text-transform: uppercase;
}

.technical-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.element-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.element-panel::after {
  position: absolute;
  z-index: -1;
  right: -26px;
  bottom: -26px;
  width: 64%;
  height: 64%;
  background: var(--petroleum-800);
  border-radius: var(--radius-lg);
  content: "";
}

.element-card {
  display: flex;
  min-height: 160px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
}

.element-main {
  color: var(--white);
  background: var(--petroleum-800);
  border-color: var(--petroleum-800);
}

.element-card strong {
  font-size: 3.2rem;
  font-weight: 790;
  letter-spacing: -0.06em;
  line-height: 1;
}

.element-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.element-main span {
  color: rgba(255, 255, 255, 0.65);
}

.amino-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(110deg, var(--agrocete-blue), #0d77a7);
  border-radius: 16px;
}

.amino-icon {
  display: grid;
  width: 66px;
  height: 66px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  place-items: center;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 800;
}

.amino-card small {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}

.amino-card strong {
  display: block;
  font-size: 1.12rem;
}

.amino-card p {
  margin: 1px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.mechanism-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 48%, rgba(31, 121, 185, 0.3), transparent 27%),
    radial-gradient(circle at 12% 16%, rgba(86, 168, 70, 0.12), transparent 24%),
    linear-gradient(145deg, #031f25 0%, var(--petroleum-950) 54%, #082f38 100%);
  overflow: hidden;
}

.mechanism-section::before,
.mechanism-section::after {
  position: absolute;
  border: 1px solid rgba(142, 216, 223, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.mechanism-section::before {
  top: -330px;
  left: calc(50% - 470px);
  width: 940px;
  height: 940px;
}

.mechanism-section::after {
  right: -260px;
  bottom: -370px;
  width: 720px;
  height: 720px;
}

.mechanism-heading {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 62px;
  text-align: center;
}

.mechanism-heading .eyebrow {
  justify-content: center;
}

.mechanism-heading h2 {
  max-width: 830px;
  margin-inline: auto;
}

.mechanism-heading > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.04rem;
}

.mechanism-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-areas: "left visual right";
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
}

.mechanism-steps {
  display: grid;
  gap: 22px;
}

.mechanism-steps-left {
  grid-area: left;
}

.mechanism-steps-right {
  grid-area: right;
}

.mechanism-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  min-height: 206px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.mechanism-step > span {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--petroleum-950);
  background: var(--cyan);
  place-items: center;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 840;
}

.mechanism-step small {
  display: block;
  margin: 2px 0 10px;
  color: var(--cyan);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mechanism-step h3 {
  margin-bottom: 11px;
  font-size: 1.22rem;
}

.mechanism-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.55;
}

.soy-animation {
  position: relative;
  grid-area: visual;
  min-width: 0;
  min-height: 700px;
  margin: 0;
  perspective: 1300px;
}

.soy-animation::before {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 88%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(142, 216, 223, 0.2), rgba(31, 121, 185, 0.08) 45%, transparent 70%);
  border-radius: 50%;
  content: "";
  filter: blur(4px);
  transform: translate(-50%, -50%);
}

.soy-orbit,
.soy-orbit span {
  position: absolute;
  top: 47%;
  left: 50%;
  border: 1px solid rgba(142, 216, 223, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(68deg);
}

.soy-orbit {
  width: 94%;
  aspect-ratio: 1;
  animation: soy-orbit-spin 10s linear infinite;
}

.soy-orbit span:nth-child(1) {
  width: 76%;
  aspect-ratio: 1;
}

.soy-orbit span:nth-child(2) {
  width: 112%;
  aspect-ratio: 1;
  border-style: dashed;
}

.soy-orbit span:nth-child(3) {
  width: 9px;
  height: 9px;
  background: var(--cyan);
  border: 0;
  box-shadow: 0 0 20px var(--cyan);
  transform: translate(205px, -50%);
}

.soy-turntable {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: min(100%, 440px);
  height: 620px;
  transform: translateX(-50%);
  transform-style: preserve-3d;
  animation: soy-turn 12s linear infinite;
}

.soy-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.soy-face-back {
  transform: rotateY(180deg);
}

.soy-state {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.28)) saturate(1.04);
  visibility: hidden;
}

.soy-state.is-keyed {
  visibility: visible;
}

.soy-state-early {
  animation: soy-early-state 12s ease-in-out infinite;
}

.soy-state-filled {
  animation: soy-filled-state 12s ease-in-out infinite;
}

.soy-stage-copy {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 66px;
  left: 0;
  text-align: center;
}

.soy-stage-copy strong,
.soy-stage-copy span {
  display: block;
}

.soy-stage-copy strong {
  margin-bottom: 3px;
  font-size: 0.9rem;
}

.soy-stage-copy span {
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.soy-motion-toggle {
  z-index: 5;
  right: 50%;
  bottom: 18px;
  transform: translateX(50%);
}

.soy-motion-toggle:hover,
.soy-motion-toggle:focus-visible {
  transform: translate(50%, -1px);
}

.soy-animation figcaption {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  left: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.65rem;
  line-height: 1.5;
  text-align: center;
}

.soy-animation.is-paused *,
.soy-animation.is-paused *::before,
.soy-animation.is-paused *::after {
  animation-play-state: paused !important;
}

.mechanism-flow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 24px);
  max-width: 880px;
  margin: 82px auto 0;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.mechanism-flow span {
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mechanism-flow b {
  color: var(--cyan);
  font-weight: 500;
}

@keyframes soy-turn {
  from { transform: translateX(-50%) rotateY(0deg) rotateX(2deg); }
  to { transform: translateX(-50%) rotateY(360deg) rotateX(2deg); }
}

@keyframes soy-early-state {
  0%, 18% { opacity: 1; transform: scale(0.96); }
  42%, 78% { opacity: 0; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(0.96); }
}

@keyframes soy-filled-state {
  0%, 18% { opacity: 0; transform: scale(0.97); }
  44%, 78% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(0.97); }
}

@keyframes soy-orbit-spin {
  from { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(360deg); }
}

.video-section {
  padding-bottom: clamp(78px, 9vw, 120px);
}

.video-heading,
.results-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 56px;
  margin-bottom: 48px;
}

.video-heading {
  grid-template-columns: 1fr;
  max-width: 800px;
}

.video-heading h2,
.results-heading h2 {
  margin-bottom: 0;
}

.technical-video {
  margin: 0;
  color: var(--white);
  background: var(--petroleum-950);
  border: 1px solid rgba(7, 90, 155, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.technical-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #01090b;
}

.technical-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  background: #01090b;
  object-fit: contain;
}

.video-status {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 22px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(5, 43, 49, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  pointer-events: none;
  text-transform: uppercase;
}

.technical-video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 22px 26px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.technical-video-caption small {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.technical-video-caption strong {
  max-width: 580px;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.2;
  text-align: right;
}

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

.data-policy {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  color: var(--petroleum-800);
  background: var(--cyan-soft);
  border-radius: 12px;
}

.data-policy span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 800;
}

.data-policy p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.result-card {
  position: relative;
  min-width: 0;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 77, 91, 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(6, 43, 50, 0.07);
  overflow: hidden;
}

.result-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--agrocete-blue), var(--cyan));
  content: "";
}

.result-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 25px;
}

.result-topline span {
  color: var(--agrocete-blue);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-topline b {
  padding: 5px 8px;
  color: var(--petroleum-800);
  background: var(--cyan-soft);
  border-radius: 5px;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.result-primary {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: 8px;
  margin-bottom: 26px;
}

.result-primary strong {
  color: var(--petroleum-950);
  font-size: clamp(2.2rem, 4.4vw, 3.35rem);
  font-weight: 840;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.result-primary > span {
  padding-bottom: 4px;
  color: var(--agrocete-blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.result-primary small {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.035em;
  line-height: 1.4;
  text-transform: uppercase;
}

.result-bars {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.result-bar-row > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  color: #637579;
  font-size: 0.65rem;
}

.result-bar-row b {
  color: var(--petroleum-800);
  font-size: 0.64rem;
  white-space: nowrap;
}

.result-bar-row > i {
  display: block;
  height: 7px;
  background: #e2e9ea;
  border-radius: 999px;
  overflow: hidden;
}

.result-bar-row > i span {
  display: block;
  width: var(--value);
  height: 100%;
  background: #91a8ac;
  border-radius: 999px;
}

.result-bar-row.is-highlighted > div span,
.result-bar-row.is-highlighted > div b {
  color: var(--agrocete-blue);
  font-weight: 820;
}

.result-bar-row.is-highlighted > i span {
  background: linear-gradient(90deg, var(--agrocete-blue), var(--cyan));
  box-shadow: 0 0 14px rgba(0, 174, 239, 0.28);
}

.result-detail,
.result-chips {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.result-detail span,
.result-detail strong {
  display: block;
}

.result-detail span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.66rem;
}

.result-detail strong {
  color: var(--petroleum-950);
  font-size: 1.08rem;
}

.result-detail small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
}

.result-chips {
  display: grid;
  gap: 7px;
}

.result-chips span {
  padding: 8px 10px;
  color: var(--muted);
  background: var(--cyan-soft);
  border-radius: 7px;
  font-size: 0.65rem;
  line-height: 1.4;
}

.result-chips b {
  color: var(--agrocete-blue);
}

.result-protocol {
  margin: 22px 0 0;
  color: #77878a;
  font-size: 0.64rem;
  line-height: 1.55;
}

.results-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.results-cta p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.results-cta p strong {
  color: var(--petroleum-800);
}

.field-stories-section {
  position: relative;
  background:
    radial-gradient(circle at 92% 8%, rgba(142, 216, 223, 0.2), transparent 23%),
    var(--white);
}

.field-stories-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 56px;
  margin-bottom: 44px;
}

.field-stories-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.field-stories-heading > p {
  max-width: 470px;
  margin-bottom: 5px;
  color: var(--muted);
}

.field-stories-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 18px;
}

.field-story {
  min-width: 0;
  margin: 0;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(6, 43, 50, 0.08);
}

.field-story-media {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(390px, 38vw, 510px);
  padding: 0;
  background: var(--petroleum-950);
  border: 0;
  border-radius: 13px;
  cursor: zoom-in;
  overflow: hidden;
}

.field-story-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 29, 34, 0.38), transparent 46%);
  content: "";
  pointer-events: none;
}

.field-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 350ms ease;
}

.field-story-wide .field-story-media img {
  object-position: center;
}

.field-story-product .field-story-media img {
  object-position: 58% center;
}

.field-story-media:hover img,
.field-story-media:focus-visible img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.025);
}

.field-story-media:focus-visible {
  outline: 3px solid var(--agrocete-blue-light);
  outline-offset: 3px;
}

.field-story-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(6, 43, 50, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field-story figcaption {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 20px 10px 9px;
}

.field-story figcaption > span {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--agrocete-blue);
  place-items: center;
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 820;
}

.field-story figcaption small,
.field-story figcaption strong {
  display: block;
}

.field-story figcaption small {
  margin: 1px 0 5px;
  color: var(--agrocete-blue);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-story figcaption strong {
  margin-bottom: 4px;
  color: var(--petroleum-950);
  font-size: 1rem;
  line-height: 1.3;
}

.field-story figcaption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.field-stories-note {
  max-width: 760px;
  margin: 28px 0 0 auto;
  padding-top: 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  line-height: 1.55;
  text-align: right;
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 230px);
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  color: var(--white);
  background: var(--petroleum-800);
  border: 0;
  border-radius: 16px;
  cursor: zoom-in;
  overflow: hidden;
  text-align: left;
}

.gallery-landscape {
  grid-column: 1 / 3;
  grid-row: 1;
}

.gallery-feature {
  grid-column: 3;
  grid-row: 1 / 3;
}

.gallery-top-right {
  grid-column: 4;
  grid-row: 1;
}

.gallery-left-tall {
  grid-column: 1;
  grid-row: 2 / 4;
}

.gallery-center {
  grid-column: 2;
  grid-row: 2;
}

.gallery-mid-right {
  grid-column: 4;
  grid-row: 2;
}

.gallery-bottom-wide {
  grid-column: 2 / 4;
  grid-row: 3;
}

.gallery-bottom-right {
  grid-column: 4;
  grid-row: 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 31, 36, 0.84), transparent 58%);
  content: "";
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.1);
  transform: scale(1.045);
}

.gallery-item > span {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  font-size: 0.82rem;
  font-weight: 720;
}

.gallery-item small {
  margin-right: 8px;
  color: var(--cyan);
}

.management-section {
  color: var(--white);
  background: var(--petroleum-950);
}

.management-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  align-items: center;
  gap: 44px 80px;
}

.management-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.management-copy h2 {
  margin-bottom: 28px;
}

.management-copy > p {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.productivity-visual {
  min-width: 0;
  margin: 0;
  padding: 14px;
  color: var(--petroleum-950);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.productivity-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--white);
  border-radius: 13px;
  overflow: hidden;
}

.productivity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.motion-toggle {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(6, 43, 50, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 760;
  transition: background var(--transition), transform var(--transition);
}

.motion-toggle:hover,
.motion-toggle:focus-visible {
  background: var(--agrocete-blue);
  transform: translateY(-1px);
}

.motion-toggle > span:first-child {
  font-size: 0.72rem;
  letter-spacing: -0.16em;
}

.productivity-visual figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 8px 3px;
}

.productivity-visual figcaption strong,
.productivity-visual figcaption span {
  display: block;
}

.productivity-visual figcaption strong {
  font-size: 0.76rem;
}

.productivity-visual figcaption span {
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.45;
  text-align: right;
}

.management-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 86px;
}

.management-timeline::before {
  position: absolute;
  top: 71px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.timeline-step {
  position: relative;
  z-index: 1;
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.timeline-step + .timeline-step {
  border-left: 0;
}

.timeline-active {
  color: var(--petroleum-950);
  background: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-16px);
}

.timeline-number {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 820;
}

.timeline-active .timeline-number {
  color: rgba(6, 43, 50, 0.62);
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 15px;
  height: 15px;
  margin: 32px 0 46px;
  background: var(--petroleum-950);
  border: 4px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(142, 216, 223, 0.1);
}

.timeline-active .timeline-dot {
  background: var(--cyan);
  border-color: var(--petroleum-950);
  box-shadow: 0 0 0 7px rgba(6, 43, 50, 0.12);
}

.timeline-step small {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-active small {
  color: var(--petroleum-700);
}

.timeline-step h3 {
  margin: 0 0 14px;
  font-size: 1.38rem;
}

.timeline-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.timeline-active p {
  color: rgba(6, 43, 50, 0.7);
}

.management-warning {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-top: 54px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.management-warning strong {
  color: var(--cyan);
}

.management-warning p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(54px, 9vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 110px;
}

.faq-heading .text-link {
  margin-top: 20px;
}

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

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 720;
  list-style: none;
}

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

.accordion summary span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: var(--agrocete-blue);
  border: 1px solid var(--line);
  place-items: center;
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.accordion details[open] summary span {
  color: var(--white);
  background: var(--petroleum-800);
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 700px;
  margin: -6px 56px 24px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  position: relative;
  padding: clamp(88px, 11vw, 150px) 0;
  color: var(--white);
  background: var(--petroleum-800);
  overflow: hidden;
}

.contact-image {
  position: absolute; 
  top: 0;
  bottom: 0;
  left: 0;
  width: 45%;
  background:
    linear-gradient(to right, rgba(6, 43, 50, 0.25), var(--petroleum-800)),
    linear-gradient(to top, rgba(6, 43, 50, 0.7), transparent),
    url("/site/images/maxmass/campanha-vagens-soja.webp") center 54% / cover no-repeat;
  opacity: 0.55;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 8vw, 104px);
}

.contact-copy h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.5rem);
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.contact-copy ul {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.contact-copy li span {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--petroleum-950);
  background: var(--cyan);
  place-items: center;
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 900;
}

.whatsapp-card {
  position: relative;
  padding: clamp(30px, 5vw, 58px);
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 211, 102, 0.13), transparent 34%),
    var(--white);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.whatsapp-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #128c4a, #25d366);
  content: "";
}

.whatsapp-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: #128c4a;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.whatsapp-kicker span {
  width: 9px;
  height: 9px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.13);
}

.whatsapp-card h3 {
  max-width: 500px;
  margin: 0 0 16px;
  color: var(--petroleum-950);
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.whatsapp-card > p {
  max-width: 500px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.whatsapp-card blockquote {
  margin: 0 0 28px;
  padding: 16px 18px;
  color: var(--petroleum-800);
  background: var(--cyan-soft);
  border-left: 3px solid var(--cyan);
  border-radius: 0 10px 10px 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.whatsapp-button {
  display: flex;
  min-height: 78px;
  padding: 15px 18px 15px 20px;
  color: var(--white);
  background: #128c4a;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 13px;
  box-shadow: 0 16px 34px rgba(18, 140, 74, 0.24);
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #0f7a40;
  box-shadow: 0 20px 42px rgba(18, 140, 74, 0.32);
  transform: translateY(-2px);
}

.whatsapp-button span,
.whatsapp-button small,
.whatsapp-button strong {
  display: block;
}

.whatsapp-button small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.whatsapp-button strong {
  font-size: clamp(1rem, 2vw, 1.22rem);
  letter-spacing: -0.02em;
}

.whatsapp-button b {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.15);
  place-items: center;
  border-radius: 50%;
  font-size: 1.05rem;
}

.site-footer {
  color: var(--white);
  background: #041f24;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 44px;
  padding-top: 58px;
  padding-bottom: 44px;
}

.footer-main img {
  width: min(220px, 100%);
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.18));
}

.footer-main > div:first-child p {
  max-width: 320px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.footer-product strong,
.footer-product span {
  display: block;
}

.footer-product strong {
  margin-bottom: 4px;
  font-size: 0.86rem;
}

.footer-product span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.74rem;
}

.footer-main > a {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 720;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 22px;
  padding-bottom: 22px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.63rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:first-child {
  max-width: 720px;
}

.mobile-cta {
  display: none;
}

.gallery-dialog {
  position: fixed;
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.gallery-dialog::backdrop {
  background: rgba(2, 22, 26, 0.82);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--petroleum-950);
  background: var(--paper);
  border: 1px solid var(--line);
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.gallery-dialog {
  width: min(1060px, calc(100% - 32px));
  color: var(--white);
  background: var(--petroleum-950);
}

.gallery-dialog img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #021518;
}

.gallery-dialog p {
  margin: 0;
  padding: 16px 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

.dialog-close-light {
  color: var(--white);
  background: rgba(4, 31, 36, 0.7);
  border-color: rgba(255, 255, 255, 0.24);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

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

.iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: inherit;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.76rem;
  }

  .hero-layout {
    grid-template-columns: 1fr 0.85fr;
  }

  .formula-chip span {
    display: none;
  }

  .benefit-card {
    padding-inline: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-auto-rows: 300px;
  }

  .gallery-landscape,
  .gallery-feature,
  .gallery-top-right,
  .gallery-left-tall,
  .gallery-center,
  .gallery-mid-right,
  .gallery-bottom-wide,
  .gallery-bottom-right {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-landscape,
  .gallery-bottom-wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 72px;
  }

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

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 71px;
    right: 0;
    left: 0;
    display: grid;
    padding: 22px 18px 28px;
    background: rgba(6, 43, 50, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 6px 0;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

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

  .hero-copy {
    max-width: 680px;
  }

  .product-stage {
    min-height: 540px;
  }

  .product-bottle {
    width: min(52vw, 300px);
  }

  .product-stage::before {
    width: min(70vw, 460px);
  }

  .orbit-one { width: min(78vw, 520px); }
  .orbit-two { width: min(60vw, 380px); }
  .formula-chip-one { left: 10%; }
  .formula-chip-two { right: 10%; }
  .formula-chip-four { right: 10%; }
  .amino-highlight { right: 3%; }

  .split-layout,
  .formula-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .testimonial-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-heading > p {
    max-width: 680px;
  }

  .video-gallery-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(78vw, 380px);
    gap: 16px;
    margin-inline: -18px;
    padding: 4px 18px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 18px;
    scroll-snap-type: inline mandatory;
    scrollbar-color: rgba(142, 216, 223, 0.62) rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
  }

  .video-testimonial {
    scroll-snap-align: start;
  }

  .mechanism-heading {
    margin-bottom: 38px;
  }

  .mechanism-grid {
    grid-template-areas:
      "visual"
      "left"
      "right";
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .soy-animation {
    width: min(100%, 520px);
    margin: 0 auto 34px;
  }

  .mechanism-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mechanism-step {
    min-height: 190px;
  }

  .mechanism-flow {
    margin-top: 54px;
  }

  .media-card,
  .media-card img {
    min-height: 430px;
  }

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

  .benefit-card:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .benefit-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .video-heading,
  .results-heading,
  .field-stories-heading,
  .management-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .field-stories-grid {
    grid-template-columns: 1fr;
  }

  .field-story-media {
    height: min(62vw, 480px);
  }

  .management-intro .eyebrow {
    grid-column: auto;
    margin-bottom: 6px;
  }

  .productivity-visual {
    width: min(100%, 720px);
    margin-top: 22px;
  }

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

  .result-card {
    min-height: auto;
  }

  .management-timeline {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 60px;
  }

  .management-timeline::before {
    display: none;
  }

  .timeline-step,
  .timeline-active {
    min-height: auto;
    transform: none;
  }

  .timeline-step + .timeline-step {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .timeline-active + .timeline-step {
    border-left-color: rgba(255, 255, 255, 0.12);
  }

  .timeline-dot {
    margin: 22px 0 28px;
  }

  .faq-heading {
    position: static;
  }

  .contact-image {
    width: 100%;
    opacity: 0.18;
  }

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

  .footer-main > a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 66px;
  }

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

  .brand-lockup {
    gap: 6px;
  }

  .brand {
    width: 152px;
  }

  .launch-ribbon {
    min-height: 26px;
    padding: 5px 8px;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .section {
    padding: 78px 0;
  }

  .testimonial-heading {
    margin-bottom: 34px;
  }

  .video-gallery-grid {
    grid-auto-columns: min(86vw, 350px);
  }

  .video-testimonial-badge {
    top: 10px;
    left: 10px;
    padding: 5px 8px;
    font-size: 0.54rem;
  }

  .video-testimonial-meta {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .video-testimonial-number {
    padding-top: 0;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero {
    padding: 112px 0 82px;
  }

  .hero-video {
    object-position: 52% center;
  }

  .hero::before {
    background: linear-gradient(
      150deg,
      rgba(3, 30, 36, 0.94) 0%,
      rgba(6, 48, 57, 0.86) 60%,
      rgba(9, 62, 72, 0.76) 100%
    );
  }

  .product-title strong {
    font-size: clamp(5.1rem, 28vw, 7rem);
  }

  .hero-motto {
    font-size: clamp(2.25rem, 12vw, 3.1rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-stage {
    min-height: 450px;
  }

  .product-bottle {
    width: min(64vw, 270px);
  }

  .formula-chip-one { top: 21%; left: 2%; }
  .formula-chip-two { top: 43%; right: 0; }
  .formula-chip-three { bottom: 25%; left: 2%; }
  .formula-chip-four { right: 0; bottom: 34%; }

  .amino-highlight {
    top: 0;
    right: 0;
    width: min(270px, 74%);
  }

  .stage-caption {
    right: 0;
    bottom: 0;
    width: 92%;
  }

  .hero-strip {
    display: none;
  }

  .media-card,
  .media-card img {
    min-height: 360px;
  }

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

  .benefit-card,
  .benefit-card:first-child,
  .benefit-card:nth-child(3) {
    min-height: auto;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .benefit-card:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .benefit-number {
    margin-bottom: 34px;
  }

  .role-statement {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .statement-mark {
    font-size: 5rem;
  }

  .element-panel {
    padding: 14px;
  }

  .mechanism-heading > p:last-child {
    font-size: 0.94rem;
  }

  .soy-animation {
    min-height: 580px;
  }

  .soy-turntable {
    width: min(100%, 360px);
    height: 500px;
  }

  .soy-orbit {
    width: min(92%, 410px);
  }

  .soy-orbit span:nth-child(3) {
    transform: translate(166px, -50%);
  }

  .soy-stage-copy {
    bottom: 58px;
  }

  .mechanism-steps {
    grid-template-columns: 1fr;
  }

  .mechanism-step {
    min-height: auto;
  }

  .mechanism-flow {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .mechanism-flow span {
    font-size: 0.66rem;
  }

  .element-card {
    min-height: 135px;
    padding: 18px;
  }

  .technical-video {
    border-radius: 16px;
  }

  .video-status {
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    font-size: 0.56rem;
  }

  .technical-video-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
  }

  .technical-video-caption strong {
    text-align: left;
  }

  .results-heading {
    margin-bottom: 30px;
  }

  .results-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .field-stories-heading {
    margin-bottom: 30px;
  }

  .field-story {
    padding: 9px;
    border-radius: 17px;
  }

  .field-story-media {
    height: 310px;
  }

  .field-story figcaption {
    padding-inline: 6px;
  }

  .field-stories-note {
    margin-top: 22px;
    text-align: left;
  }

  .productivity-visual {
    padding: 9px;
    border-radius: 17px;
  }

  .productivity-visual figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 11px 6px 3px;
  }

  .productivity-visual figcaption span {
    text-align: left;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-item,
  .gallery-landscape,
  .gallery-feature,
  .gallery-top-right,
  .gallery-left-tall,
  .gallery-center,
  .gallery-mid-right,
  .gallery-bottom-wide,
  .gallery-bottom-right {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .management-warning {
    grid-template-columns: 1fr;
  }

  .whatsapp-card {
    padding: 28px 22px 24px;
  }

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

  .footer-main > a {
    grid-column: auto;
  }

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

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    padding: 0 20px;
    color: var(--white);
    background: var(--agrocete-blue);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
    font-size: 0.86rem;
    font-weight: 780;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .soy-turntable,
  .soy-orbit,
  .soy-state {
    animation: none !important;
  }

  .soy-turntable {
    transform: translateX(-50%) !important;
  }

  .soy-state-early {
    opacity: 0;
  }

  .soy-state-filled {
    opacity: 1;
    transform: scale(1);
  }

  .soy-motion-toggle {
    display: none;
  }
}

@media print {
  .site-header,
  .mobile-cta,
  .hero-video,
  .video-section,
  .dialog-close {
    display: none !important;
  }

  body {
    padding: 0;
  }

  .hero,
  .role-section,
  .management-section,
  .contact-section {
    color: var(--ink);
    background: var(--white);
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
