:root {
  --ink: #173f4a;
  --deep: #0d211d;
  --petrol: #173f4a;
  --teal: #347873;
  --green: #1b5e20;
  --leaf: #718252;
  --gold: #c2a05a;
  --agroteli-gold: #ffc107;
  --cream: #f4f1e9;
  --sand: #e9e1d0;
  --mist: #e8efec;
  --white: #ffffff;
  --line: rgba(23, 63, 74, 0.17);
  --shadow: 0 20px 60px rgba(8, 35, 31, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  background: var(--white);
  color: var(--deep);
  transform: translateY(-150%);
  transition: transform 0.2s;
}

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

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

.section {
  padding-block: 112px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #e2bd67;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -1.4px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.08;
}

h2 em {
  color: var(--teal);
  font-weight: 400;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  background: var(--deep) url("assets/hero-soybean-field.png") center / cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 24, 19, 0.94), rgba(7, 31, 24, 0.72) 45%, rgba(7, 28, 21, 0.1) 82%),
    linear-gradient(0deg, rgba(5, 21, 17, 0.65), transparent 42%);
}

.nav,
.hero-content,
.hero-footer {
  position: relative;
  z-index: 2;
}

.nav {
  display: flex;
  height: 116px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.brand {
  display: flex;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}

.logo-agroteli {
  display: block;
  width: 230px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a,
.nav-contact {
  position: relative;
  color: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s;
}

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

.nav-contact {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  white-space: nowrap;
}

.nav-contact span {
  margin-left: 6px;
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}

.hero-content {
  max-width: 920px;
  padding-top: 126px;
  margin-left: max(32px, calc((100vw - 1180px) / 2));
  margin-right: 32px;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 27px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.025;
}

.hero-copy {
  max-width: 740px;
  margin-bottom: 0;
  color: #e5ece7;
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 15px 21px;
  border: 0;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
}

.button:hover,
.button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.button.primary,
.button.whatsapp {
  background: var(--gold);
  color: var(--deep);
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  color: var(--white);
  font-size: 15px;
  text-decoration: none;
}

.text-link span {
  margin-left: 8px;
  color: var(--gold);
}

.hero-footer {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: #d4ddd7;
  font-size: 13px;
  letter-spacing: 1.5px;
}

.brand-statement {
  padding-block: 43px;
  background: var(--gold);
  color: var(--deep);
}

.statement-grid {
  display: grid;
  grid-template-columns: 150px 1fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.statement-grid > span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.statement-grid strong {
  font: 600 clamp(30px, 3.2vw, 45px) / 1.02 "Playfair Display", Georgia, serif;
  letter-spacing: -1px;
}

.statement-grid p {
  max-width: 380px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.5;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 90px;
}

.intro-grid p,
.section-head > p,
.pathway-header p,
.knowledge-copy > p,
.profile-copy > p {
  color: #53635d;
  font-size: 17px;
  line-height: 1.7;
}

.intro-grid p:last-child {
  margin-bottom: 0;
}

.highlight-line {
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  color: var(--petrol) !important;
  font-weight: 700;
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.section-head > p {
  margin-bottom: 0;
}

.ecosystem {
  background: var(--petrol);
  color: var(--white);
}

.light-head h2 em {
  color: #91c0b8;
}

.light-head > p {
  color: #c9d7d3;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 0.82fr 1fr;
  align-items: stretch;
  gap: 22px;
  margin-bottom: 38px;
}

.pillar {
  position: relative;
  min-height: 318px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.pathway-pillar {
  background: #103640;
}

.agroteli-pillar {
  background: var(--white);
  color: var(--green);
}

.pillar > img {
  display: block;
  width: 200px;
  height: 64px;
  margin-bottom: 25px;
  object-fit: contain;
  object-position: left center;
}

.agroteli-pillar > img {
  width: 210px;
  height: 64px;
}

.pillar > span {
  display: block;
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.pillar h3 {
  margin-bottom: 14px;
  font-size: 29px;
  line-height: 1.18;
}

.pillar p {
  margin-bottom: 0;
  color: #c7d5d2;
  font-size: 17px;
  line-height: 1.6;
}

.agroteli-pillar p {
  color: #52625c;
}

.decision-bridge {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-content: center;
  gap: 10px 4px;
  padding: 28px 14px;
  border-block: 1px solid rgba(255, 255, 255, 0.24);
  color: #e5ece8;
  text-align: center;
}

.decision-bridge span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  padding: 4px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.decision-bridge i {
  display: none;
  color: var(--gold);
  font-style: normal;
}

.diagram-panel {
  padding: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.diagram-panel a,
.diagram-panel img,
.diagram-panel picture {
  display: block;
  width: 100%;
}

.diagram-panel img {
  height: auto;
}

.diagram-panel figcaption {
  padding: 15px 12px 3px;
  color: #5c6b65;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.diagram-panel figcaption strong {
  color: var(--petrol);
}

.diagram-details {
  margin-top: 36px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.diagram-details > summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 19px 24px;
  color: var(--petrol);
  cursor: pointer;
  font-size: 16px;
  list-style: none;
}

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

.diagram-details > summary span {
  font-weight: 700;
}

.diagram-details > summary small {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.diagram-details > summary small::after {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "+";
  font-size: 20px;
}

.diagram-details[open] > summary small::after {
  content: "−";
}

.diagram-details .diagram-panel {
  margin: 0 14px 14px;
}

.diagram-details-dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: #103640;
}

.diagram-details-dark > summary {
  color: var(--white);
}

.cycle {
  background: #e8e2d5;
}

.diagram-panel.warm {
  border: 1px solid rgba(194, 160, 90, 0.4);
  background: #f8f5ed;
}

.services {
  background: var(--cream);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.service-card > img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(0.92);
}

.service-card:nth-child(1) > img {
  object-position: center 58%;
}

.service-card:nth-child(2) > img {
  object-position: center 58%;
}

.service-card:nth-child(3) > img {
  object-position: center 52%;
}

.service-card:nth-child(4) > img {
  object-position: center 55%;
}

.service-body {
  min-height: 276px;
  padding: 28px 31px 31px;
}

.number {
  color: #9b762b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
}

.service-card h3 {
  margin: 19px 0 14px;
  color: var(--petrol);
  font: 600 29px / 1.17 "Playfair Display", Georgia, serif;
}

.service-card p {
  margin-bottom: 0;
  color: #596760;
  font-size: 17px;
  line-height: 1.63;
}

.solutions {
  background: var(--mist);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.solution-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border-top: 5px solid var(--gold);
  background: var(--white);
}

.solution-card::before {
  position: absolute;
  right: 28px;
  bottom: 22px;
  color: rgba(23, 63, 74, 0.06);
  content: "360";
  font: 700 86px / 1 "DM Sans", Arial, sans-serif;
}

.phe-card {
  border-color: var(--teal);
}

.ativa-card {
  border-color: var(--green);
}

.coop-card {
  border-color: var(--petrol);
}

.solution-tag {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 11px;
  background: var(--cream);
  color: var(--petrol);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.solution-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  color: var(--petrol);
  font-size: 27px;
  line-height: 1.2;
}

.solution-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: #55645f;
  font-size: 17px;
  line-height: 1.64;
}

.solution-card strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 90%;
  color: var(--green);
  font-size: 16px;
  line-height: 1.5;
}

.solution-card p .inline-strong {
  display: inline;
  max-width: none;
  color: var(--petrol);
  font-size: inherit;
}

.visual-library {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}

.visual-library details {
  border: 1px solid var(--line);
  background: var(--white);
}

.visual-library summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  color: #4e5f58;
  cursor: pointer;
  font-size: 16px;
  list-style: none;
}

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

.visual-library summary::after {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--petrol);
  content: "+";
  font-size: 19px;
}

.visual-library details[open] summary::after {
  content: "−";
}

.visual-library summary span {
  margin-right: auto;
  color: var(--petrol);
  font-weight: 700;
}

.visual-library figure {
  margin: 0;
  padding: 0 14px 14px;
}

.visual-library figure a,
.visual-library figure img,
.visual-library figure picture {
  display: block;
  width: 100%;
}

.pathway {
  background: var(--cream);
}

.pathway-header {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
}

.pathway-header > div > p:last-child {
  max-width: 790px;
  margin: 24px 0 0;
}

.pathway-header > img {
  width: 330px;
  justify-self: end;
}

.pathway-eyebrow {
  color: var(--teal);
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.research-grid article {
  min-height: 196px;
  padding: 25px;
  background: var(--white);
}

.research-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.research-grid h3 {
  margin: 28px 0 11px;
  color: var(--petrol);
  font-size: 20px;
}

.research-grid p {
  margin-bottom: 0;
  color: #63716c;
  font-size: 16px;
  line-height: 1.55;
}

.pathway-figure {
  margin-top: 0;
  border-top: 4px solid var(--teal);
}

.commercial {
  background: var(--deep);
  color: var(--white);
}

.value-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 38px;
  padding: 23px;
  border-block: 1px solid rgba(255, 255, 255, 0.22);
  color: #e8efeb;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.value-chain i,
.value-chain b {
  color: var(--gold);
  font-style: normal;
}

.dark-panel {
  background: #f8f5ed;
}

.knowledge {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 88px;
}

.knowledge-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.knowledge-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 30, 24, 0.05), rgba(6, 30, 24, 0.82));
  content: "";
}

.knowledge-visual img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.knowledge-visual > span {
  position: absolute;
  z-index: 1;
  bottom: 46px;
  left: 42px;
  color: var(--white);
  font: 600 43px / 1.02 "Playfair Display", Georgia, serif;
  letter-spacing: -1px;
}

.knowledge-visual em {
  color: #e0bb65;
}

.knowledge-copy h2 {
  margin-bottom: 26px;
}

.engagement-list {
  margin-top: 31px;
  border-top: 1px solid var(--line);
}

.engagement-list > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}

.engagement-list b {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
}

.engagement-list span {
  color: #5a6963;
  font-size: 16px;
  line-height: 1.5;
}

.engagement-list strong {
  display: block;
  color: var(--petrol);
  font-size: 17px;
}

.profile {
  background: #e4ebe3;
}

.profile-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: start;
  gap: 100px;
}

.profile-portrait {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-bottom: 5px solid var(--gold);
  background: #cad7c5;
}

.profile-monogram {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: grid;
  width: 148px;
  height: 160px;
  place-items: center;
  background: var(--petrol);
  color: #dfb654;
  font: 62px "Playfair Display", Georgia, serif;
}

.profile-portrait > img {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: -10px;
  width: 94%;
  height: 89%;
  object-fit: contain;
  object-position: bottom right;
}

.profile-portrait > span {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 25px;
  color: var(--petrol);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.7px;
  line-height: 1.35;
}

.profile-copy h2 {
  margin-bottom: 29px;
}

.profile-copy blockquote {
  margin: 31px 0;
  padding: 27px 29px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.48);
  color: var(--green);
  font: 600 29px / 1.24 "Playfair Display", Georgia, serif;
}

.joint-signature {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-top: 23px;
  border-top: 1px solid rgba(23, 63, 74, 0.18);
}

.joint-signature img {
  width: min(390px, 100%);
  max-height: 100px;
  object-fit: contain;
  object-position: left center;
}

.contact {
  background: var(--petrol);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 90px;
}

.contact h2 {
  max-width: 720px;
  margin-bottom: 26px;
}

.contact-copy {
  max-width: 650px;
  margin-bottom: 0;
  color: #c7d5d1;
  font-size: 18px;
  line-height: 1.6;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 17px;
  padding: 34px;
  border-top: 4px solid var(--gold);
  background: var(--cream);
  color: var(--petrol);
}

.contact-card > span {
  color: #708078;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.contact-phone {
  color: var(--petrol);
  font: 27px "Playfair Display", Georgia, serif;
  text-decoration: none;
}

.contact-mail {
  width: 100%;
  padding-top: 17px;
  border-top: 1px solid #d1d5cf;
  color: #334b45;
  font-size: 15px;
  text-decoration: none;
}

.contact-mail b {
  float: right;
  color: #9e7930;
}

.footer {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #6c7b75;
  font-size: 13px;
}

.footer-brand .logo-agroteli {
  width: 175px;
  height: 52px;
}

.whatsapp-float {
  position: fixed;
  z-index: 20;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 13px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 28px;
  background: #176b36;
  box-shadow: 0 12px 35px rgba(8, 35, 31, 0.25);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.whatsapp-float b {
  color: #f1cf80;
}

:focus-visible {
  outline: 3px solid var(--agroteli-gold);
  outline-offset: 3px;
}

.solution-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gold);
  color: var(--petrol);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.solution-link span {
  color: var(--gold);
}

.ativa-se-feature {
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

.ativa-se-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: end;
  gap: 76px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ativa-se-brand-block > img {
  display: block;
  width: min(620px, 100%);
  margin-bottom: 34px;
}

.ativa-se-brand-block h2 {
  color: var(--white);
  font-size: clamp(43px, 4.8vw, 67px);
}

.ativa-se-copy > p {
  color: rgba(255, 255, 255, 0.83);
  font-size: 19px;
  line-height: 1.65;
}

.ativa-acronyms {
  margin-block: 30px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ativa-acronyms p {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  margin: 0;
  padding-block: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ativa-acronyms b {
  color: var(--gold);
  letter-spacing: 2px;
}

.ativa-acronyms span {
  color: var(--white);
}

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

.ativa-se-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-block: 66px;
}

.ativa-se-pillars article {
  position: relative;
  min-height: 330px;
  padding: 34px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.ativa-se-pillars article::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 6px;
  content: "";
}

.ativa-se-pillars .prepare::before {
  background: var(--gold);
}

.ativa-se-pillars .follow::before {
  background: var(--teal);
}

.ativa-se-pillars .validate::before {
  background: #4f9a55;
}

.ativa-se-pillars .learn::before {
  background: #d7e2df;
}

.ativa-se-pillars article > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.ativa-se-pillars h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 28px;
  letter-spacing: -0.5px;
}

.ativa-se-pillars p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

.ativa-se-pillars strong {
  display: block;
  margin-top: 22px;
  color: #e2bd67;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.ativa-se-ecosystem {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 74px;
  padding-block: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ativa-se-ecosystem h3 {
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 3.8vw, 56px);
  line-height: 1.08;
}

.ativa-se-ecosystem h3 em {
  color: #9fc4bd;
  font-weight: 400;
}

.ativa-role-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.ativa-role-list p {
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 22px;
  margin: 0;
  padding-block: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ativa-role-list b {
  color: #e2bd67;
}

.ativa-role-list span {
  color: rgba(255, 255, 255, 0.76);
}

.ativa-se-details {
  margin-top: 58px;
  border-color: rgba(255, 255, 255, 0.2);
}

.ativa-se-details > summary {
  color: var(--white);
}

.ativa-se-details > summary small {
  color: #e2bd67;
}

.ativa-se-figure {
  background: var(--white);
}

.ativa-se-figure figcaption {
  color: var(--petrol);
}

.ativa-se-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 58px;
  padding: 34px 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.ativa-se-cta span {
  display: block;
  margin-bottom: 8px;
  color: #e2bd67;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.ativa-se-cta strong {
  color: var(--white);
  font-size: 22px;
}

.ativa-se-cta .button {
  flex: 0 0 auto;
}

@media (max-width: 1060px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 14px;
  }

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

  .decision-bridge {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(7, auto);
    padding-block: 18px;
  }

  .decision-bridge span {
    width: 74px;
    aspect-ratio: 1;
    justify-self: center;
  }

  .decision-bridge i {
    display: block;
    align-self: center;
  }

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

  .ativa-se-intro,
  .ativa-se-ecosystem {
    gap: 42px;
  }

  .ativa-se-pillars {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 38px, 1180px);
  }

  .section {
    padding-block: 78px;
  }

  .nav {
    height: 82px;
  }

  .logo-agroteli {
    width: 168px;
    height: 50px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

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

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

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

  .nav-links {
    position: fixed;
    z-index: 30;
    inset: 82px 0 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 26px 20px;
    background: rgba(13, 33, 29, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s, transform 0.2s;
  }

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

  .nav-links a {
    padding: 18px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 17px;
  }

  .nav-contact {
    display: none;
  }

  .hero {
    min-height: 730px;
    background-position: 61% center;
  }

  .hero-content {
    margin-inline: 19px;
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 61px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-footer {
    display: none;
  }

  .statement-grid,
  .intro-grid,
  .section-head,
  .pathway-header,
  .knowledge,
  .profile-grid,
  .contact-grid,
  .ativa-se-intro,
  .ativa-se-ecosystem {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ativa-se-brand-block > img {
    width: min(540px, 100%);
  }

  .ativa-se-copy > p {
    font-size: 17px;
  }

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

  .statement-grid {
    gap: 12px;
  }

  .statement-grid strong {
    font-size: 32px;
  }

  .statement-grid p {
    font-size: 16px;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .pillars,
  .service-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .decision-bridge {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: repeat(7, auto);
    overflow-x: auto;
  }

  .diagram-panel {
    padding: 7px;
  }

  .diagram-panel img {
    min-width: 0;
  }

  .diagram-panel figcaption {
    padding: 13px 9px 5px;
  }

  .diagram-details > summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .diagram-details > summary small {
    width: 100%;
    justify-content: space-between;
  }

  .visual-library details:last-child figure a,
  .pathway-details .diagram-panel a {
    overflow-x: auto;
  }

  .visual-library details:last-child figure img,
  .pathway-details .diagram-panel img {
    min-width: 820px;
  }

  .service-body,
  .solution-card {
    min-height: auto;
  }

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

  .ativa-role-list p {
    grid-template-columns: 140px 1fr;
  }

  .pathway-header > img {
    width: 250px;
    justify-self: start;
  }

  .value-chain {
    flex-wrap: wrap;
  }

  .knowledge-visual {
    min-height: 420px;
  }

  .knowledge-visual > span {
    bottom: 32px;
    left: 28px;
    font-size: 35px;
  }

  .profile-portrait {
    height: 430px;
  }

  .whatsapp-float span {
    display: none;
  }

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

@media (max-width: 540px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

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

  h2 {
    font-size: 37px;
  }

  .pillar {
    min-height: 0;
    padding: 26px;
  }

  .pillar h3 {
    font-size: 25px;
  }

  .decision-bridge span {
    width: 62px;
    font-size: 10px;
  }

  .service-card > img {
    height: 220px;
  }

  .service-body,
  .solution-card {
    padding: 25px;
  }

  .service-card h3,
  .solution-card h3 {
    font-size: 25px;
  }

  .ativa-se-pillars {
    grid-template-columns: 1fr;
  }

  .ativa-se-pillars article {
    min-height: 0;
  }

  .ativa-acronyms p,
  .ativa-role-list p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ativa-se-cta {
    padding: 26px;
  }

  .ativa-se-cta strong {
    font-size: 19px;
  }

  .visual-library summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-library summary::after {
    position: absolute;
    right: 18px;
  }

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

  .research-grid article {
    min-height: 0;
  }

  .value-chain {
    align-items: stretch;
    flex-direction: column;
  }

  .value-chain i,
  .value-chain b {
    transform: rotate(90deg);
  }

  .profile-portrait {
    height: 360px;
  }

  .profile-monogram {
    width: 105px;
    height: 115px;
    font-size: 45px;
  }

  .joint-signature {
    align-items: flex-start;
    flex-direction: column;
  }

  .joint-signature span {
    width: 100%;
    height: 1px;
  }

  .contact-card {
    padding: 26px;
  }

  .contact-phone {
    font-size: 24px;
  }

  .contact-mail {
    font-size: 15px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 24px;
  }

  .footer > span:last-child {
    display: none;
  }
}

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