:root {
  color-scheme: light;
  --color-white: #ffffff;
  --color-canvas: #ffffff;
  --color-surface-warm: #f6f5f4;
  --color-surface-alt: #f9f9f8;
  --color-border-warm: #00000014;
  --color-muted-border: #dfdcd9;
  --color-text-primary: #191918;
  --color-text-strong: #191918;
  --color-text-secondary: #615d59;
  --color-text-muted: #78736f;
  --color-text-soft: #a39e98;
  --color-action-primary-bg: #191918;
  --color-action-primary-text: #ffffff;
  --color-action-secondary-bg: #f6f5f4;
  --color-green: #00DA6C;
  --color-green-soft: #e8fff3;
  --color-lilac: #f2e3ff;
  --color-blue-soft: #eff6ff;
  --color-hero-navy: #00382b;
  --color-hero-button: #0f6b52;
  --color-hero-button-hover: #0a5944;
  --shadow-soft: 0 0.7px 1.462px rgba(0, 0, 0, 0.015), 0 3px 9px #00000008;
  --shadow-button: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(0, 0, 0, 0.12);
  --radius-card: 8px;
  --radius-media: 12px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-canvas);
  color: var(--color-text-primary);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

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

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

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

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-size: 18px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

/* Default header: full-width solid dark-green bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 40, 30, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--container), calc(100vw - 48px));
  margin: 0 auto;
  padding: 14px 0;
}

/* Header gains a subtle shadow once scrolled */
.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 20, 14, 0.35);
}

/* Green-hero pages: transparent bar overlaid on the hero (Holded home style) */
.home-page .site-header,
.solution-page .site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Once scrolled, the transparent bar becomes a solid dark-green bar */
.home-page .site-header.is-scrolled,
.solution-page .site-header.is-scrolled {
  background: rgba(0, 40, 30, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 20, 14, 0.35);
}

.home-page .nav-link,
.home-page .dropdown-toggle,
.solution-page .nav-link,
.solution-page .dropdown-toggle {
  color: rgba(255, 255, 255, 0.82);
}

.home-page .nav-link:hover,
.home-page .dropdown-toggle:hover,
.home-page .nav-link.is-active,
.home-page .dropdown-toggle.is-active,
.solution-page .nav-link:hover,
.solution-page .dropdown-toggle:hover,
.solution-page .nav-link.is-active,
.solution-page .dropdown-toggle.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.home-page .nav-shell > .nav-actions .btn-primary,
.solution-page .nav-shell > .nav-actions .btn-primary {
  background: #ffffff;
  color: #0c2c22;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 142px;
}

.brand img {
  width: 142px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  border: 0;
  border-radius: 100px;
  padding: 7px 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-link:hover,
.dropdown-toggle:hover,
.nav-link.is-active,
.dropdown-toggle.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.nav-shell > .nav-actions .btn-primary {
  background: #ffffff;
  color: #0c2c22;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: max(100%, 246px);
  height: 12px;
  z-index: 1;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 246px;
  padding: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-border-warm);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(23, 23, 23, 0.10);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-toggle .material-symbols-rounded {
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .dropdown-toggle .material-symbols-rounded {
  transform: rotate(180deg);
}

.dropdown-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  color: var(--color-text-secondary);
}

.dropdown-item:hover,
.dropdown-item.is-active {
  background: var(--color-surface-warm);
  color: var(--color-text-primary);
}

.dropdown-item .icon-box {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.dropdown-item strong {
  display: block;
  color: inherit;
  font-size: 13px;
  line-height: 18px;
}

.dropdown-item span:last-child {
  display: block;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 16px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
}

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

.section {
  padding: 112px 0;
}

.section.compact {
  padding: 72px 0;
}

.section-header {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 36px;
}

.section-header.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  display: block;
  width: fit-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #00b85c;
  box-shadow: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}


.section-header.centered .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.eyebrow b {
  display: inline;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.hero {
  padding: 92px 0 68px;
}

.br-mobile {
  display: none;
}

.br-desktop {
  display: inline;
}

.product-hero {
  overflow: hidden;
  padding: 152px 0 72px;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(15, 107, 82, 0.85) 0%, rgba(15, 107, 82, 0) 55%),
    radial-gradient(80% 70% at 85% 110%, rgba(0, 218, 108, 0.18) 0%, rgba(0, 218, 108, 0) 60%),
    linear-gradient(180deg, #024536 0%, var(--color-hero-navy) 48%, #002419 100%);
  color: var(--color-white);
}

.solution-hero {
  overflow: hidden;
  padding: 152px 0 72px;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(15, 107, 82, 0.85) 0%, rgba(15, 107, 82, 0) 55%),
    radial-gradient(80% 70% at 85% 110%, rgba(0, 218, 108, 0.18) 0%, rgba(0, 218, 108, 0) 60%),
    linear-gradient(180deg, #024536 0%, var(--color-hero-navy) 48%, #002419 100%);
  color: var(--color-white);
}

.solution-hero .hero-title {
  color: #ffffff;
}

.solution-hero .hero-copy {
  color: rgba(255, 255, 255, 0.76);
}

.solution-hero .hero-copy strong {
  color: #ffffff;
}

.solution-hero .eyebrow {
  color: #00b85c;
}

.solution-hero .eyebrow b {
  color: inherit;
}

.solution-hero .btn-primary {
  background: #ffffff;
  color: #0c2c22;
}

.solution-hero .btn-primary:hover {
  background: rgba(255, 255, 255, 0.88);
}

.solution-hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

.hero.centered {
  text-align: center;
}

.hero-inner {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.hero-title {
  max-width: 1000px;
  margin: 0;
  color: var(--color-text-primary);
  font-size: 56px;
  font-weight: 650;
  line-height: 64px;
  letter-spacing: 0;
}

.hero-title .hero-line {
  display: block;
}
.hero-title .hero-line:empty {
  display: none;
}

.product-hero .hero-title {
  color: #ffffff;
  font-size: 64px;
  line-height: 68px;
}

.hero-copy {
  max-width: 780px;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 18px;
  line-height: 28px;
}

.product-hero .hero-copy {
  color: rgba(255, 255, 255, 0.76);
}

.hero-copy strong {
  color: var(--color-text-primary);
  font-weight: 650;
}

.product-hero .hero-copy strong {
  color: #ffffff;
}

.product-hero .eyebrow {
  color: #00b85c;
}

.product-hero .eyebrow b {
  color: inherit;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.left-actions {
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  line-height: 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: var(--color-action-primary-bg);
  color: var(--color-action-primary-text);
  box-shadow: var(--shadow-button);
}

.product-hero .btn-primary {
  background: #ffffff;
  color: #0c2c22;
}

.product-hero .btn-primary:hover {
  background: rgba(255, 255, 255, 0.88);
}

.btn-secondary {
  background: var(--color-action-secondary-bg);
  border-color: rgba(110, 110, 110, 0.12);
  color: var(--color-text-strong);
  box-shadow: var(--shadow-button);
}

.product-hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  border-color: var(--color-border-warm);
  color: var(--color-text-secondary);
}

.hero-stage {
  position: relative;
  width: min(1120px, 100%);
  margin: 44px auto 0;
  padding: 14px;
  border: 1px solid var(--color-border-warm);
  border-radius: 20px;
  background: var(--color-surface-warm);
  box-shadow: 0 24px 80px rgba(23, 23, 23, 0.08);
}

.product-hero .hero-stage {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.36);
}

.solution-hero .hero-stage {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.36);
}

.solution-hero .browser-frame {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
}

.browser-frame {
  overflow: hidden;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-media);
  background: var(--color-white);
}

.product-hero .browser-frame {
  border-color: rgba(255, 255, 255, 0.16);
}

.browser-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--color-border-warm);
  background: #f7f5ef;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 600;
}

.traffic {
  display: flex;
  gap: 6px;
}

.traffic i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-muted-border);
}

.traffic i:nth-child(1) {
  background: #ff6b57;
}

.traffic i:nth-child(2) {
  background: #f2b94b;
}

.traffic i:nth-child(3) {
  background: #65b84d;
}

.hero-stage img {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
  object-position: top center;
}

.floating-proof {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 8px;
  width: min(520px, calc(100% - 68px));
}

.proof-pill {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  background: rgba(23, 23, 23, 0.78);
  color: var(--color-white);
  text-align: left;
  backdrop-filter: blur(14px);
}

.proof-pill small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 14px;
}

.proof-pill strong {
  font-size: 13px;
  line-height: 18px;
}

.trusted {
  display: grid;
  gap: 18px;
  padding: 42px 0 0;
  text-align: center;
}

.trusted p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 12px;
  font-weight: 650;
}

.product-hero .trusted p {
  color: rgba(255, 255, 255, 0.58);
}

.logo-strip {
  --logo-slot: 132px;
  --logo-height: 42px;
  --logo-gap: 36px;
  --logo-half-gap: 18px;
  overflow: hidden;
  width: min(calc((var(--logo-slot) * 4) + (var(--logo-gap) * 3)), 100%);
  margin: 0 auto;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: var(--logo-gap);
  align-items: center;
  animation: logo-marquee 34s linear infinite;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--logo-slot);
  min-height: var(--logo-height);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.product-hero .logo-mark {
  color: rgba(255, 255, 255, 0.72);
}

.product-hero .logo-mark img {
  opacity: 0.76;
  filter: grayscale(1) brightness(0) invert(1);
}

.logo-mark img {
  width: var(--logo-slot);
  height: var(--logo-height);
  max-width: none;
  max-height: none;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(1);
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - var(--logo-half-gap)));
  }
}

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

h2 {
  margin-bottom: 0;
  font-size: 34px;
  font-weight: 650;
  line-height: 42px;
}

h3 {
  margin-bottom: 8px;
  color: var(--color-text-primary);
  font-size: 18px;
  font-weight: 650;
  line-height: 26px;
}

.muted {
  color: var(--color-text-muted);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.technology-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.card {
  overflow: hidden;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  background: var(--color-white);
}

.linked-card {
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.linked-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.card.pad {
  padding: 22px;
}

.card-media {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}

.card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  padding: 4px 9px;
  border: 1px solid var(--color-border-warm);
  border-radius: 100px;
  background: var(--color-white);
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 600;
}

.chip.green {
  border-color: var(--color-border-warm);
  background: var(--color-white);
  color: var(--color-text-muted);
}

.chip.lilac {
  background: var(--color-lilac);
  color: #55305f;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-border-warm);
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-green);
}

.solution-switcher {
  display: grid;
  gap: 28px;
  align-items: start;
}

.solution-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.role-tabs {
  margin: 0 auto 52px;
}
.role-strip.section.compact {
  padding-top: 28px;
  padding-bottom: 0;
}
.role-strip .role-tabs {
  margin-bottom: 0;
}
.importer-detail {
  padding-top: 0;
  padding-bottom: 0;
}
.importer-detail:has(.role-panel[hidden]) {
  padding: 0;
}
.importer-detail:has(.role-panel:not([hidden])) ~ #proceso {
  display: none;
}
.eudr-page main > section:not(.solution-hero) {
  padding-top: 80px;
  padding-bottom: 80px;
}
.importer-detail:has(.role-panel:not([hidden])) {
  padding-top: 80px;
  padding-bottom: 0;
}
.role-control-stack {
  display: grid;
  gap: 72px;
}
.role-control-stack > .control-card-beige:last-child {
  margin-top: -72px;
}
.control-card {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 80px max(24px, calc((100vw - var(--container)) / 2));
  border-radius: 0;
  align-items: center;
}
.control-card-beige {
  background: #fbfaf9;
}
.control-card-green {
  color: var(--color-white);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(0, 218, 108, 0.18) 0%, rgba(0, 218, 108, 0) 55%),
    radial-gradient(80% 100% at 0% 100%, rgba(15, 107, 82, 0.55) 0%, rgba(15, 107, 82, 0) 60%),
    linear-gradient(120deg, #002419 0%, var(--color-hero-navy) 45%, #024536 100%);
}
.control-card-green-left {
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(0, 218, 108, 0.18) 0%, rgba(0, 218, 108, 0) 55%),
    radial-gradient(80% 100% at 100% 100%, rgba(15, 107, 82, 0.55) 0%, rgba(15, 107, 82, 0) 60%),
    linear-gradient(240deg, #002419 0%, var(--color-hero-navy) 45%, #024536 100%);
}
.control-card-green :is(h2, h3) {
  color: var(--color-white);
}
.control-card-green .control-media img.svg-shot {
  width: 86%;
  max-width: 86%;
  margin-inline: auto;
	filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 50px rgba(0, 218, 108, 0.35));
}
.control-card-green .eyebrow,
.control-card-green .eyebrow b {
  color: #00b85c;
}
.control-card-green .control-copy > p,
.control-card-green .control-features li p {
  color: rgba(255, 255, 255, 0.72);
}
.control-card-green .control-features li > .material-symbols-rounded {
  color: var(--color-green);
}
.control-card-green .control-media img {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.solution-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid rgba(110, 110, 110, 0.12);
  border-radius: 10px;
  background: #ffffff;
  color: var(--color-text-strong);
  box-shadow: var(--shadow-button);
  cursor: pointer;
  text-align: left;
  font-weight: 650;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.solution-tab:hover {
  transform: translateY(-1px);
}

.tab-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.solution-tab.is-active {
  border-color: transparent;
  background: #25d366;
  color: #0c2c22;
}

.solution-tab.is-active .material-symbols-rounded {
  color: #0c2c22;
}

.solution-panel {
  display: grid;
  gap: 30px;
  padding-top: 8px;
}

.solution-panel[hidden] {
  display: none;
}

.solution-panel-header {
  display: grid;
  gap: 6px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.solution-panel-header .meta-row {
  justify-content: center;
}

.home-process-steps {
  display: grid;
  gap: 28px;
}

.process-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--color-border-warm);
}

.home-process-steps .process-row {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 520px);
  border-top: 0;
}

.home-process-steps .image-panel {
  width: min(100%, 520px);
  justify-self: center;
}

.home-process-steps .image-panel img {
  aspect-ratio: 1.55 / 1;
  height: auto;
  min-height: 0;
}

.process-row:nth-child(even) .process-copy {
  order: 2;
}

.process-row:nth-child(even) .image-panel {
  order: 1;
}

.process-copy {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.process-copy p {
  margin: 0;
  color: var(--color-text-muted);
}

.process-row .image-panel img {
  min-height: 280px;
}

.home-process-steps .process-row .image-panel img {
  min-height: 0;
}

.step-stack {
  display: grid;
  gap: 10px;
}

.step-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  background: var(--color-white);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 30px;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  background: var(--color-white);
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 750;
}

.step-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 19px;
}

.image-panel {
  overflow: hidden;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-media);
  background: var(--color-surface-warm);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: top center;
}

.feature-band {
  background: var(--color-surface-alt);
  color: var(--color-text-primary);
}

.feature-section-heading {
  margin-bottom: 30px;
}

.feature-band h2,
.feature-band h3 {
  color: var(--color-text-primary);
}

.feature-band .muted,
.feature-band p {
  color: var(--color-text-muted);
}

.dark-card {
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  background: var(--color-white);
  padding: 24px;
}

.card.pad > .icon-box,
.dark-card > .icon-box,
.value-card > .icon-box {
  display: flex;
  margin-bottom: 18px;
}

.inner-hero {
  padding: 100px 0 54px;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 48px;
  align-items: center;
}

/* Sobre nosotros — hero centrado con imagen debajo (estilo Holded) */
.about-hero .hero-inner {
  max-width: 860px;
}
.about-hero .hero-title {
  font-size: 64px;
}
.about-hero-signature {
  margin-top: 14px;
  text-align: center;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}
.about-hero-figure {
  margin-top: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.about-hero-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-media);
}
@media (max-width: 768px) {
  .about-hero .hero-title {
    font-size: 40px;
  }
  .about-hero-figure {
    margin-top: 32px;
  }
  .about-hero-figure img {
    max-height: 240px;
  }
}

.inner-hero h1 {
  margin: 16px 0 18px;
  font-size: 48px;
  font-weight: 650;
  line-height: 56px;
  letter-spacing: 0;
}

.inner-hero p {
  color: var(--color-text-secondary);
  font-size: 17px;
  line-height: 27px;
}

.portrait-media {
  overflow: hidden;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-media);
  background: var(--color-surface-warm);
}

.portrait-media img {
  width: 100%;
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
}

.commodity-selector,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-filter-spacing {
  margin-top: 24px;
}

.commodity-button,
.filter-button {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--color-border-warm);
  border-radius: 100px;
  background: var(--color-white);
  color: var(--color-text-secondary);
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
}

.commodity-button.is-active,
.filter-button.is-active {
  border-color: #cfe4be;
  background: var(--color-green-soft);
  color: var(--color-green);
}

.commodity-panel {
  margin-top: 18px;
}

.commodity-card {
  display: none;
  padding: 24px;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  background: var(--color-white);
}

.commodity-card.is-active {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: center;
}

.role-eyebrow-header {
  margin-bottom: 22px;
}

.role-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0 auto 48px;
}

.role-choice {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  background: var(--color-surface-warm);
  color: var(--color-text-primary);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.role-choice:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.role-choice.is-active {
  background: var(--color-action-primary-bg);
  color: var(--color-action-primary-text);
}

.role-choice.is-active .icon-box {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  color: var(--color-green);
}

.role-choice strong,
.role-choice small {
  display: block;
}

.role-choice strong {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 25px;
}

.role-choice small {
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 19px;
}

.role-choice.is-active small {
  color: rgba(255, 255, 255, 0.72);
}

.role-panels {
  display: grid;
  gap: 28px;
}

.role-panel[hidden] {
  display: none;
}

.role-panel .section-header {
  margin-bottom: 34px;
}

.role-feature-card {
  min-height: 236px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: start;
}

.process-accordion {
  border-top: 1px solid var(--color-border-warm);
}

.process-accordion details {
  border-bottom: 1px solid var(--color-border-warm);
  background: transparent;
}

.process-accordion summary {
  display: grid;
  grid-template-columns: 42px 1fr 22px;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
}

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

.process-accordion .chevron {
  color: var(--color-text-soft);
  transition: transform 160ms ease;
}

.process-accordion details[open] .chevron {
  transform: rotate(180deg);
}

.process-accordion .step-number {
  background: var(--color-white);
  color: var(--color-text-muted);
}

.process-accordion details[open] .step-number {
  background: var(--color-surface-warm);
  color: var(--color-text-primary);
}

.process-accordion p {
  margin: 0 0 18px 56px;
  color: var(--color-text-secondary);
}

.process-preview {
  position: sticky;
  top: 94px;
}

.process-preview .image-panel img {
  width: 713.64px;
  height: 461.38px;
  max-width: 100%;
  min-height: 0;
  object-fit: cover;
}

.preview-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--color-border-warm);
  border-top: 0;
  border-radius: 0 0 var(--radius-media) var(--radius-media);
  background: var(--color-white);
}

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

.faq-list details {
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  background: var(--color-white);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 22px;
  gap: 14px;
  align-items: center;
  padding: 17px 18px;
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.faq-list summary::after {
  content: "expand_more";
  color: var(--color-text-soft);
  font-family: "Material Symbols Rounded";
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  line-height: 1;
  transition: transform 160ms ease, color 160ms ease;
}

.faq-list details[open] summary::after {
  color: var(--color-text-soft);
  transform: rotate(180deg);
}

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

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--color-text-muted);
}

/* FAQ estilo lista (Holded): columna centrada con líneas divisorias */
.faq-section .section-header.centered {
  margin-bottom: 40px;
}
.faq-flush {
  max-width: 760px;
  margin: 0 auto;
  gap: 0;
}
.faq-flush details {
  border: 0;
  border-bottom: 1px solid var(--color-border-warm);
  border-radius: 0;
  background: transparent;
}
.faq-flush details:first-child {
  border-top: 1px solid var(--color-border-warm);
}
.faq-flush summary {
  padding: 22px 8px;
  font-size: 17px;
}
.faq-flush p {
  padding: 0 8px 22px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 72px 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #002419 0%, var(--color-hero-navy) 45%, #024536 100%);
  color: var(--color-white);
  box-shadow: 0 24px 60px rgba(0, 56, 43, 0.25);
}

.cta-copy {
  display: grid;
  gap: 12px;
  max-width: 640px;
}

.cta-panel h2 {
  margin: 0;
  color: var(--color-white);
}

.cta-panel .eyebrow,
.cta-panel .eyebrow b {
  color: #00b85c;
}

.cta-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 24px;
}

.cta-panel .button-row {
  flex-shrink: 0;
}

.cta-panel .btn {
  padding: 16px 34px;
  font-size: 17px;
}

.cta-panel .btn-primary {
  background: #ffffff;
  color: var(--color-hero-navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.cta-panel .btn-primary:hover {
  background: #f3f3f1;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.cta-panel .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: none;
}

.cta-panel .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 760px) {
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 36px 28px;
  }
}

.blog-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: 118px;
  border-right: 1px solid var(--color-border-warm);
  padding-right: 36px;
}

.blog-sidebar h1 {
  margin: 22px 0 20px;
  font-size: 50px;
  font-weight: 700;
  line-height: 56px;
}

.blog-eyebrow {
  margin-bottom: 0;
}

.blog-sidebar p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 24px;
}

.blog-word-menu {
  display: grid;
  gap: 13px;
  margin-top: 34px;
}

.blog-word-menu a {
  color: var(--color-text-muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 22px;
}

.blog-word-menu a:hover,
.blog-word-menu a.is-active {
  color: var(--color-text-primary);
}

.blog-content {
  min-width: 0;
}

.blog-topic-heading {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin-bottom: 34px;
}

.blog-topic-heading h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 42px;
}

.blog-topic-heading p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 21px;
  line-height: 32px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 28px;
}

.article-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 0 0 18px;
  border: 1px solid var(--color-border-warm);
  border-radius: 18px;
  background: var(--color-white);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.article-card.is-hidden {
  display: none;
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 107, 82, 0.28);
  box-shadow: 0 16px 38px rgba(0, 20, 14, 0.08);
}

.article-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.6 / 1;
  border-radius: 0;
  object-fit: cover;
}

.article-card .meta-row {
  order: 1;
  margin: 14px 18px 0;
}

.article-card .chip {
  min-height: 24px;
  padding: 3px 11px;
  border: 0;
  border-radius: 7px;
  background: rgba(15, 107, 82, 0.10);
  color: var(--color-hero-button);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.article-card h2,
.article-card h3 {
  margin: 0 18px;
  order: 2;
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.article-card p {
  margin: 0 18px;
  order: 3;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 23px;
}

.article-card .seo-note {
  order: 4;
  margin: 2px 18px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-soft, var(--color-text-muted));
}

.read-more {
  display: none;
}

.featured-article {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border-warm);
}

.events-hero {
  padding-bottom: 18px;
}

.events-hero + .section.compact {
  padding-top: 18px;
}

.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.event-filters button {
  padding: 0 0 6px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

.event-filters button:hover,
.event-filters button.is-active {
  border-bottom-color: var(--color-green);
  color: var(--color-text-primary);
}

.event-highlight {
  display: grid;
  gap: 18px;
  align-self: start;
  width: 100%;
  max-width: 560px;
  padding: 24px;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  background: var(--color-surface-alt);
}

.event-highlight-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-highlight-date {
  display: grid;
  gap: 2px;
  width: fit-content;
  padding: 14px 16px;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  background: var(--color-white);
}

.event-highlight-date strong {
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
}

.event-highlight-date span {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 650;
}

.event-highlight-image {
  width: 100%;
  aspect-ratio: 1.78 / 1;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  object-fit: cover;
}

.event-highlight h2 {
  margin: 0;
  font-size: 30px;
  line-height: 38px;
}

.event-highlight p {
  margin: 0;
  color: var(--color-text-secondary);
}

.event-highlight .btn {
  justify-self: start;
}

.events-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 34px;
}

.events-list {
  display: grid;
  gap: 14px;
}

.event-card {
  display: grid;
  grid-template-columns: 78px minmax(160px, 238px) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  background: var(--color-white);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.event-card.is-hidden {
  display: none;
}

.event-date {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 12px 8px;
  border: 1px solid #cfe4be;
  border-radius: var(--radius-card);
  background: var(--color-green-soft);
  color: var(--color-green);
  text-align: center;
}

.event-date strong {
  font-size: 30px;
  font-weight: 700;
  line-height: 34px;
}

.event-date span,
.event-date small {
  font-size: 11px;
  font-weight: 650;
  line-height: 15px;
  text-transform: uppercase;
}

.event-date small {
  color: var(--color-text-muted);
  text-transform: none;
}

.event-date-soft {
  border-color: var(--color-border-warm);
  background: var(--color-surface-warm);
  color: var(--color-text-primary);
}

.event-thumb {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  border-radius: var(--radius-card);
  object-fit: cover;
}

.webinar-art {
  background: var(--color-surface-warm);
  object-fit: contain;
}

.event-card-body {
  display: grid;
  gap: 8px;
}

.event-card-body h3,
.event-card-body p {
  margin: 0;
}

.event-card-body p {
  color: var(--color-text-muted);
}

.event-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 650;
}

.event-meta-line span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.event-card > .btn {
  justify-self: end;
  white-space: nowrap;
}

.download-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: 330px;
  padding: 22px;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  background: var(--color-white);
}

.download-card .icon-box {
  width: 42px;
  height: 42px;
}

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

.stat {
  padding: 20px;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  background: var(--color-white);
}

.stat strong {
  display: block;
  font-size: 30px;
  line-height: 38px;
}

.stat span {
  color: var(--color-text-muted);
  font-size: 13px;
}


/* About page sections */
.insights-section {
  padding-top: 10px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  gap: 64px;
  padding: 16px 0 8px;
}

.insight-stat {
  display: grid;
  gap: 12px;
}

.insight-stat strong {
  color: var(--color-text-primary);
  font-size: 104px;
  font-weight: 700;
  line-height: 108px;
  letter-spacing: 0;
}

.insight-stat span {
  max-width: 270px;
  color: var(--color-text-secondary);
  font-size: 18px;
  line-height: 27px;
}

.culture-layout,
.presence-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: start;
}

.culture-copy,
.presence-copy {
  display: grid;
  gap: 18px;
}

.culture-copy p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 18px;
  line-height: 29px;
}

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

.value-card {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  background: var(--color-white);
}

.value-card .icon-box {
  margin-bottom: 18px;
}

.value-card h3,
.value-card p {
  margin: 0;
}

.value-card h3 {
  margin-bottom: 8px;
}

.value-card p {
  color: var(--color-text-muted);
}

.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.country-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--color-border-warm);
  border-radius: 100px;
  background: var(--color-white);
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 650;
}

.trusted-light {
  padding-top: 0;
}

.trusted-light .logo-mark {
  color: var(--color-text-muted);
}

.trusted-light .logo-mark img {
  opacity: 0.74;
  filter: grayscale(1) contrast(0.92);
}

@media (max-width: 1024px) {
  .insights-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .culture-layout,
  .presence-layout {
    grid-template-columns: 1fr;
  }

  .insight-stat strong {
    font-size: 58px;
    line-height: 62px;
  }
}

@media (max-width: 760px) {

  .insights-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .insight-stat strong {
    font-size: 48px;
    line-height: 54px;
  }

}


.about-logos-section {
  padding-top: 8px;
  padding-bottom: 12px;
}

.beige-section {
  background: #f6f5f4;
}

.beige-section .value-card {
  background: var(--color-white);
}

.presence-copy-wide {
  max-width: 820px;
  margin-bottom: 34px;
}

.map-section {
  overflow: hidden;
  padding-bottom: 0;
}

.full-map-frame {
  width: 100%;
  border-top: 1px solid var(--color-border-warm);
  border-bottom: 1px solid var(--color-border-warm);
  background: #ffffff;
}

@media (max-width: 1024px) {
  .insight-stat strong {
    font-size: 72px;
    line-height: 78px;
  }
}

@media (max-width: 760px) {
  .about-logos-section {
    padding-top: 0;
  }

  .insight-stat strong {
    font-size: 54px;
    line-height: 60px;
  }

}



/* MapLibre world map */
.interactive-world-map {
  position: relative;
  width: 100%;
  height: min(58vw, 660px);
  min-height: 440px;
  background: #ffffff;
}

.interactive-world-map .maplibregl-canvas {
  outline: none;
}

.interactive-world-map .maplibregl-ctrl-bottom-left,
.interactive-world-map .maplibregl-ctrl-bottom-right {
  opacity: 0.54;
}

.interactive-map-tooltip {
  position: absolute;
  z-index: 3;
  padding: 6px 10px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.16);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 12px));
  transition: opacity 160ms ease;
  white-space: nowrap;
}

.interactive-map-tooltip.is-visible {
  opacity: 1;
}

.map-fallback {
  display: grid;
  min-height: 420px;
  place-items: center;
  margin: 0;
  color: var(--color-text-muted);
}

@media (max-width: 760px) {
  .interactive-world-map {
    height: 370px;
    min-height: 340px;
  }
}

/* About page spacing rhythm */
.section.compact.about-logos-section {
  padding: 46px 0 48px;
}

.about-logos-section .trusted {
  gap: 24px;
  padding-top: 0;
}

.section.compact.insights-section {
  padding: 52px 0 118px;
}

.insights-grid {
  padding: 0;
}

.section.compact.beige-section {
  padding: 108px 0;
}

.section.compact.map-section {
  padding: 108px 0 0;
}

#demo.section.compact {
  padding-top: 104px;
}

@media (max-width: 1024px) {
  .section.compact.insights-section {
    padding: 44px 0 88px;
  }

  .section.compact.beige-section,
  .section.compact.map-section {
    padding-top: 88px;
  }
}

@media (max-width: 760px) {
  .section.compact.about-logos-section {
    padding: 28px 0 30px;
  }

  .section.compact.insights-section {
    padding: 34px 0 68px;
  }

  .section.compact.beige-section,
  .section.compact.map-section,
  #demo.section.compact {
    padding-top: 68px;
  }
}

/* Card surfaces on white sections */
.section:not(.beige-section):not(.feature-band) :is(
  .card,
  .commodity-card,
  .step-card,
  .faq-list details,
  .event-highlight,
  .event-highlight-date,
  .event-card,
  .download-card,
  .stat,
  .value-card,
  .preview-caption
) {
  background: var(--color-surface-warm);
}

/* EUDR process preview */
.eudr-process-preview {
  width: min(100%, 760px);
  justify-self: center;
}

.eudr-process-preview .image-panel {
  border-radius: var(--radius-media);
}

.eudr-process-preview .image-panel img {
  width: 713.64px;
  height: 461.38px;
  max-width: 100%;
  aspect-ratio: auto;
  min-height: 0;
  object-fit: cover;
}

/* EUDR role section contrast and hierarchy */
.eudr-role-section {
  background: var(--color-surface-warm);
}

.section.eudr-role-section.eudr-role-section :is(.card, .role-choice, .role-feature-card) {
  background: #ffffff !important;
  box-shadow: 0 1px 2px rgba(25, 25, 24, 0.04);
}

.section.eudr-role-section.eudr-role-section :is(.card, .role-choice, .role-feature-card):hover {
  background: #ffffff !important;
}

.section.eudr-role-section.eudr-role-section .role-choice.is-active {
  border-color: var(--color-green);
  background: #ffffff !important;
  color: var(--color-text-primary);
  box-shadow: 0 0 0 1px var(--color-green), 0 12px 32px rgba(0, 218, 108, 0.12);
}

.section.eudr-role-section.eudr-role-section :is(.card, .role-choice) .icon-box {
  background: #ffffff;
}

.eudr-role-section .role-choice.is-active .icon-box {
  border-color: rgba(0, 218, 108, 0.24);
  background: var(--color-green-soft);
  color: var(--color-green);
}

.eudr-role-section .role-choice.is-active small {
  color: var(--color-text-muted);
}

.role-panel-title {
  margin: 0;
  font-size: 26px;
  font-weight: 650;
  line-height: 34px;
}

/* Memorisely-inspired entrance animations */
@media (prefers-reduced-motion: no-preference) {
  html.js-reveal [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.985);
    filter: blur(3px);
    transition:
      opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
      filter 760ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
  }

  html.js-reveal [data-reveal="hero"] {
    transform: translate3d(0, 18px, 0) scale(0.99);
    filter: blur(2px);
  }

  html.js-reveal [data-reveal="media"] {
    transform: translate3d(0, 34px, 0) scale(0.975);
  }

  html.js-reveal [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.site-footer {
  padding: 96px 0 64px;
  border-top: 0;
  color: var(--color-white);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(0, 218, 108, 0.2) 0%, rgba(0, 218, 108, 0) 55%),
    radial-gradient(80% 100% at 0% 100%, rgba(15, 107, 82, 0.55) 0%, rgba(15, 107, 82, 0) 60%),
    linear-gradient(140deg, #002419 0%, var(--color-hero-navy) 45%, #024536 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(5, minmax(0, 0.56fr));
  gap: 28px;
}

.footer-grid img {
  width: 150px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-grid h3 {
  font-size: 13px;
  line-height: 20px;
  color: var(--color-white);
}

.footer-grid a,
.footer-grid p,
.footer-grid .footer-name {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-grid .footer-name {
  color: var(--color-white);
  font-weight: 600;
}

.footer-grid a:hover {
  color: var(--color-white);
}

.footer-grid a.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin: 4px 0 22px;
}

.footer-social a {
  display: inline-flex;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--color-green);
}

.social-svg {
  width: 22px;
  height: 22px;
  display: block;
}

.linkedin-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--color-white);
  color: var(--color-hero-navy);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.seo-note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.article-detail {
  background: var(--color-white);
}

.article-detail-hero {
  padding: 92px 0 56px;
  text-align: left;
  background: linear-gradient(180deg, rgba(15, 107, 82, 0.07) 0%, rgba(246, 245, 244, 0.45) 100%);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  gap: 56px;
  align-items: center;
}

.article-hero-media img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 20, 14, 0.16);
}

.article-topic-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-topic-row .article-meta-info {
  margin-top: 0;
  font-size: 13px;
  color: var(--color-text-muted);
}

.article-share-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border-warm);
}

.article-share-row a,
.article-share-row .article-share-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.15s ease;
}

.article-share-row a:hover,
.article-share-row .article-share-copy:hover {
  color: var(--color-hero-button);
}

.article-share-copy-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.article-share-row .article-share-copy .material-symbols-outlined {
  width: 18px;
  height: 18px;
  font-size: 22px;
  line-height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.article-share-copied-msg {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  white-space: nowrap;
  background: var(--color-text);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.article-share-copy-wrap.is-copied .article-share-copied-msg {
  opacity: 1;
  transform: translateY(0);
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

.article-share-row .social-svg {
  width: 18px;
  height: 18px;
}

.back-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: fit-content;
  margin: 0 0 24px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 650;
}

.back-link:hover {
  color: var(--color-text-primary);
}

.article-detail-hero .chip {
  border: 0;
  border-radius: 7px;
  padding: 4px 12px;
  background: rgba(15, 107, 82, 0.10);
  color: var(--color-hero-button);
  font-size: 13px;
  font-weight: 650;
}

.article-detail-hero h1 {
  max-width: none;
  margin: 16px 0 16px;
  font-size: 46px;
  font-weight: 700;
  line-height: 54px;
  letter-spacing: -0.015em;
}

.article-detail-hero p {
  max-width: none;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 19px;
  line-height: 29px;
}

.article-meta-info {
  margin-top: 18px;
  color: var(--color-text-soft, var(--color-text-muted));
  font-size: 14px;
  font-weight: 500;
}

.article-cover {
  width: min(960px, calc(100vw - 48px));
  margin: 0 auto 44px;
}

.article-cover img {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  border-radius: var(--radius-media);
  object-fit: cover;
}

.article-body {
  width: min(var(--container), calc(100vw - 48px));
  margin: 0 auto;
  padding-top: 56px;
  padding-bottom: 96px;
}

.article-body > * {
  max-width: 960px;
}

.article-body h2 {
  margin: 34px 0 12px;
  font-size: 28px;
  line-height: 36px;
}

.article-body p,
.article-body li {
  color: var(--color-text-secondary);
  font-size: 18px;
  line-height: 30px;
}

.article-body ul {
  padding-left: 22px;
}
.article-body table {
  width: 100%;
  max-width: 960px;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 16px;
  line-height: 24px;
}

.article-body th,
.article-body td {
  padding: 12px 16px;
  border: 1px solid var(--color-border-warm);
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background: var(--color-surface-warm, #F7F5F2);
  font-weight: 600;
  color: var(--color-text);
}

.article-body td {
  color: var(--color-text-secondary);
}

@media (max-width: 640px) {
  .article-body table {
    font-size: 14px;
    line-height: 20px;
  }
  .article-body th,
  .article-body td {
    padding: 8px 10px;
  }
}


.narrow-title {
  max-width: 820px;
}

.left-copy {
  text-align: left;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
    line-height: 56px;
  }

  .product-hero .hero-title {
    font-size: 48px;
    line-height: 54px;
  }

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

  .article-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .article-hero-media {
    order: -1;
  }

  .inner-hero-grid,
  .solution-switcher,
  .solution-panel,
  .process-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    grid-template-columns: 78px minmax(0, 190px) minmax(0, 1fr);
  }

  .event-card > .btn {
    grid-column: 3;
    justify-self: start;
  }

  .stats-grid,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-shell {
    width: calc(100vw - 32px);
    flex-wrap: nowrap;
    align-items: center;
    padding: 10px 0;
  }

  .brand {
    order: 0;
    min-width: auto;
  }

  .brand img {
    width: 126px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 1;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    cursor: pointer;
  }

  .nav-toggle .material-symbols-rounded {
    font-size: 24px;
  }

  /* Keep the logo + close button above the full-screen overlay */
  .site-header.nav-open .brand,
  .site-header.nav-open .nav-toggle {
    position: relative;
    z-index: 42;
  }

  /* Solid header while the mobile menu is open.
     backdrop-filter must be removed: a filtered ancestor becomes the
     containing block for position:fixed children, which would clip the
     full-screen overlay to the header box. */
  .site-header.nav-open,
  .home-page .site-header.nav-open,
  .solution-page .site-header.nav-open {
    background: rgba(0, 40, 30, 0.99);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  /* Full-screen overlay menu (sits below the top bar) */
  .site-header.nav-open .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 40;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    margin: 0;
    padding: 84px 20px 132px;
    background: rgba(0, 40, 30, 0.99);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-header.nav-open .nav-actions {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 41;
    gap: 10px;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
    background: rgba(0, 40, 30, 0.99);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-link,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    min-height: 52px;
    border-radius: 11px;
    padding: 12px 14px;
    font-size: 17px;
    font-weight: 600;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    padding: 2px 0 6px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: grid;
  }

  .dropdown-item {
    color: rgba(255, 255, 255, 0.86);
  }

  .dropdown-item .icon-box {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
  }

  .dropdown-item .icon-box .material-symbols-rounded {
    font-size: 28px;
  }

  .dropdown-item strong {
    color: #ffffff;
  }

  .dropdown-item span:last-child {
    color: rgba(255, 255, 255, 0.62);
  }

  .dropdown-item:hover,
  .dropdown-item.is-active {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
  }

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

  .section {
    padding: 56px 0;
  }

  .section.compact {
    padding: 44px 0;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-title,
  .inner-hero h1,
  .blog-sidebar h1 {
    font-size: 32px;
    line-height: 39px;
    letter-spacing: -0.015em;
  }

  .product-hero .hero-title {
    font-size: 36px;
    line-height: 43px;
    letter-spacing: -0.02em;
  }

  .br-mobile {
    display: inline;
  }

  .br-desktop {
    display: none;
  }

  .product-hero {
    padding-top: 116px;
    padding-bottom: 12px;
  }

  .solution-hero {
    padding-top: 116px;
  }

  .inner-hero {
    padding-top: 40px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-trial {
    font-size: 13px;
    line-height: 19px;
  }

  .article-detail-hero {
    padding: 84px 0 40px;
  }

  .article-detail-hero h1 {
    font-size: 30px;
    line-height: 37px;
    margin: 12px 0 12px;
  }

  .article-body {
    padding-top: 36px;
    padding-bottom: 64px;
  }

  .hero-copy,
  .inner-hero p,
  .article-detail-hero p,
  .blog-topic-heading p {
    font-size: 16px;
    line-height: 25px;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
    line-height: 26px;
  }

  .section-header {
    margin-bottom: 28px;
  }

  h2 {
    font-size: 25px;
    line-height: 32px;
    letter-spacing: -0.01em;
  }

  .floating-proof {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 10px;
  }

  .hero-stage img,
  .image-panel img,
  .process-preview .image-panel img {
    min-height: 280px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .role-choice-grid,
  .stats-grid,
  .blog-shell,
  .blog-grid,
  .event-card,
  .commodity-card.is-active,
  .featured-article,
  .process-row {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    gap: 32px;
  }

  .article-card .chip {
    font-size: 11px;
  }

  .article-card h2,
  .article-card h3 {
    font-size: 15px;
    line-height: 21px;
  }

  .article-card p {
    font-size: 13px;
    line-height: 20px;
  }

  .article-card .seo-note {
    font-size: 11px;
  }

  .event-card .chip {
    font-size: 11px;
  }

  .event-card-body h3 {
    font-size: 15px;
    line-height: 21px;
  }

  .event-card-body p {
    font-size: 13px;
    line-height: 20px;
  }

  .event-meta-line {
    font-size: 11px;
  }

  .download-card .chip {
    font-size: 11px;
  }

  .download-card h3 {
    font-size: 15px;
    line-height: 21px;
  }

  .download-card p {
    font-size: 13px;
    line-height: 20px;
  }

  .event-card > .btn,
  .event-highlight .btn {
    grid-column: auto;
    justify-self: stretch;
  }

  .event-date {
    justify-items: start;
    width: 100%;
  }

  .event-thumb {
    aspect-ratio: 1.8 / 1;
  }

  .blog-sidebar {
    position: static;
    border-right: 0;
    border-bottom: 1px solid var(--color-border-warm);
    padding: 0 0 28px;
  }

  .process-row:nth-child(even) .process-copy,
  .process-row:nth-child(even) .image-panel {
    order: initial;
  }

  .home-process-steps .image-panel {
    width: 100%;
  }

  .solution-panel {
    gap: 18px;
  }

  .button-row,
  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}


/* Article back link mobile layout */
@media (max-width: 760px) {
  .article-detail-hero .back-link {
    position: static;
    margin-bottom: 24px;
  }
}

/* Proceso invertido (imagen izquierda, texto derecha) - Huella de Carbono */
.process-layout.process-reversed {
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
}
.process-layout.process-reversed .process-accordion {
  order: 2;
}
.process-layout.process-reversed .process-preview {
  order: 1;
}

/* Filas impares: imagen izquierda, texto derecha */
.home-process-steps.process-reversed .process-row:nth-child(odd) {
  grid-template-columns: minmax(260px, 520px) minmax(0, 1fr);
}
.home-process-steps.process-reversed .process-row:nth-child(odd) .process-copy {
  order: 2;
}
.home-process-steps.process-reversed .process-row:nth-child(odd) .image-panel {
  order: 1;
}
/* Filas pares: texto izquierda, imagen derecha */
.home-process-steps.process-reversed .process-row:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 520px);
}
.home-process-steps.process-reversed .process-row:nth-child(even) .process-copy {
  order: 1;
}
.home-process-steps.process-reversed .process-row:nth-child(even) .image-panel {
  order: 2;
}

/* ===== Sección Onboarding / Implementación ===== */
.onboarding.feature-band {
  background: var(--color-hero-navy);
  color: var(--color-white);
}
.onboarding .eyebrow,
.onboarding .eyebrow b {
  color: #00b85c;
}
.onboarding h2,
.onboarding .dark-card h3 {
  color: var(--color-white);
}
.onboarding .dark-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}
.onboarding .dark-card p {
  color: rgba(255, 255, 255, 0.72);
}
.onboarding .dark-card .icon-box {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-green);
}
.onboarding-cta {
  justify-content: center;
  margin-top: 32px;
}
.onboarding .btn-primary {
  background: #ffffff;
  color: var(--color-hero-navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.onboarding .btn-primary:hover {
  background: #f3f3f1;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

/* ===== Cobertura EUDR (estilo Holded) ===== */
.eudr-cover {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 64px;
  align-items: start;
}
.eudr-cover-intro h2 {
  margin: 14px 0 18px;
}
.eudr-cover-intro p {
  color: var(--color-text-secondary);
  font-size: 17px;
  line-height: 27px;
}
.eudr-cover-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 40px;
}
.eudr-cover-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}
.eudr-cover-item > .material-symbols-rounded {
  color: var(--color-green);
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
  margin-top: 2px;
}
.eudr-cover-item h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 24px;
}
.eudr-cover-item p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 23px;
}
.eudr-cover-item .eudr-art {
  color: var(--color-green);
  font-weight: 650;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .eudr-cover {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 560px) {
  .eudr-cover-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Frase de prueba bajo el botón del hero */
.hero-trial {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* ===== Sección Control y gestión (estilo Holded) ===== */
.control-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: center;
}
.governance-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}
.control-copy h2 {
  margin: 14px 0 16px;
}
.control-copy > p {
  color: var(--color-text-secondary);
  font-size: 17px;
  line-height: 27px;
  margin: 0 0 28px;
}
.control-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 24px;
}
.control-features li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
}
.control-features li > .material-symbols-rounded {
  color: var(--color-green);
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
  margin-top: 2px;
}
.control-features h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 24px;
}
.control-features li p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 23px;
}
.control-layout.media-left {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}
.proveedores-section {
  background: #fbfaf9;
}
body.eudr-page,
body.solution-page {
  --color-surface-warm: #fbfaf9;
  --color-surface-alt: #fbfaf9;
}
body.eudr-page .beige-section {
  background: #fbfaf9;
}
.control-beige {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 72px max(24px, calc((100vw - var(--container)) / 2));
  background: #fbfaf9;
}
.control-green {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(0, 218, 108, 0.18) 0%, rgba(0, 218, 108, 0) 55%),
    radial-gradient(80% 100% at 0% 100%, rgba(15, 107, 82, 0.5) 0%, rgba(15, 107, 82, 0) 60%),
    linear-gradient(120deg, #002419 0%, var(--color-hero-navy) 45%, #024536 100%);
  color: var(--color-white);
}
.control-green .eyebrow,
.control-green .eyebrow b {
  color: #00b85c;
}
.control-green .control-copy h2 {
  color: var(--color-white);
}
.control-green .control-copy > p {
  color: rgba(255, 255, 255, 0.72);
}
.control-green .control-features h3 {
  color: var(--color-white);
}
.control-green .control-features li p {
  color: rgba(255, 255, 255, 0.7);
}
.control-media {
  display: grid;
  gap: 22px;
}
.control-media img {
  width: 100%;
  height: auto;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-media);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
}
.control-media img.svg-shot {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.18));
}
.control-media img.svg-shot.svg-shot-square {
  width: auto;
  max-width: 100%;
  max-height: 440px;
  margin-inline: auto;
}
.eudr-ready {
  background: var(--color-white);
}
.faq-section {
  background: #fbfaf9;
}
.cover-section.section.compact {
  padding-top: 80px;
  padding-bottom: 48px;
}
body.eudr-page #proceso {
  padding-top: 0;
}
body.home-page .home-process-steps .process-row.eudr-feature-row:not(.eudr-feature-soft):not(.eudr-feature-dark),
body.home-page .home-process-steps .process-row.eudr-cards-row {
  margin-bottom: 48px;
}

/* Solución (huella de carbono): pasos con padding vertical uniforme */
body.solution-page #proceso {
  padding-top: 0;
  padding-bottom: 80px;
}
body.solution-page .home-process-steps {
  gap: 0;
}
body.solution-page .home-process-steps .process-row {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
}

/* EUDR: pasos como bandas a sangre completa, pegadas y con padding uniforme */
body.eudr-page .home-process-steps {
  gap: 0;
}
body.eudr-page .home-process-steps .process-row {
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
}
body.eudr-page .home-process-steps .process-row.proveedores-step,
body.eudr-page .home-process-steps .process-row.eudr-cards-row {
  background: var(--color-white);
}
body.eudr-page .home-process-steps .process-row.eudr-feature-soft {
  background: #fbfaf9;
}

/* EUDR "todo conectado" dark band */
.eudr-connected {
  color: var(--color-white);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(0, 218, 108, 0.16) 0%, rgba(0, 218, 108, 0) 55%),
    radial-gradient(80% 100% at 0% 100%, rgba(15, 107, 82, 0.5) 0%, rgba(15, 107, 82, 0) 60%),
    linear-gradient(120deg, #002419 0%, var(--color-hero-navy) 45%, #024536 100%);
}
.connected-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}
.connected-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-media);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.connected-media img.svg-shot {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}
.eudr-connected .eyebrow,
.eudr-connected .eyebrow b {
  color: #00b85c;
}
.connected-copy h2 {
  margin: 14px 0 16px;
  color: var(--color-white);
}
.connected-copy > p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 27px;
}
.connected-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}
.connected-features li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
}
.connected-features li > .material-symbols-rounded {
  color: var(--color-green);
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
  margin-top: 2px;
}
.connected-features h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 24px;
  color: var(--color-white);
}
.connected-features li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 23px;
}
@media (max-width: 900px) {
  .connected-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .control-layout,
  .control-layout.media-left,
  .control-layout.governance-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== Primer paso EUDR enriquecido (estilo Proveedores Holded) ===== */
.home-process-steps .process-row.eudr-feature-row {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}
.eudr-feature-row .image-panel {
  width: 100%;
  justify-self: stretch;
}
.eudr-feature-copy {
  display: block;
}
.eudr-feature-copy .eyebrow {
  margin-bottom: 14px;
}
.eudr-feature-copy h3 {
  margin: 0 0 16px;
  font-size: 34px;
  font-weight: 650;
  line-height: 42px;
}
.eudr-feature-copy > div > p {
  margin: 0 0 28px;
  color: var(--color-text-secondary);
  font-size: 17px;
  line-height: 27px;
}
.eudr-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}
.eudr-feature-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
}
.eudr-feature-list li > .material-symbols-rounded {
  color: var(--color-green);
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
  margin-top: 2px;
}
.eudr-feature-list h4 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 24px;
  color: var(--color-text-primary);
}
.eudr-feature-list li p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 23px;
}

/* Variante oscura del paso (estilo Tesorería Holded) */
.home-process-steps .process-row.eudr-feature-dark {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  padding: 80px max(24px, calc((100vw - var(--container)) / 2));
  gap: 56px;
  color: var(--color-white);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(0, 218, 108, 0.18) 0%, rgba(0, 218, 108, 0) 55%),
    radial-gradient(80% 100% at 0% 100%, rgba(15, 107, 82, 0.55) 0%, rgba(15, 107, 82, 0) 60%),
    linear-gradient(120deg, #002419 0%, var(--color-hero-navy) 45%, #024536 100%);
}
.eudr-feature-dark .eyebrow,
.eudr-feature-dark .eyebrow b {
  color: #00b85c;
}
.eudr-feature-dark .eudr-feature-copy h3 {
  color: var(--color-white);
}
.eudr-feature-dark .eudr-feature-copy > div > p,
.eudr-feature-dark .eudr-feature-list li p {
  color: rgba(255, 255, 255, 0.72);
}
.eudr-feature-dark .eudr-feature-list h4 {
  color: var(--color-white);
}
.eudr-feature-dark .eudr-feature-list li > .material-symbols-rounded {
  color: var(--color-green);
}
.eudr-feature-dark .image-panel img {
  border-radius: var(--radius-media);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.home-process-steps .process-row.eudr-feature-dark .process-copy {
  order: 1;
}
.home-process-steps .process-row.eudr-feature-dark .image-panel {
  order: 2;
}
[data-solution-panel="carbono"] .home-process-steps .process-row.eudr-feature-soft .process-copy,
body.solution-page .home-process-steps .process-row.eudr-feature-soft .process-copy {
  order: 1;
}
[data-solution-panel="carbono"] .home-process-steps .process-row.eudr-feature-soft .image-panel,
body.solution-page .home-process-steps .process-row.eudr-feature-soft .image-panel {
  order: 2;
}
.home-process-steps .process-row.eudr-feature-soft {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 80px max(24px, calc((100vw - var(--container)) / 2));
  background: #f9f9f8;
}
body.home-page #soluciones {
  padding-top: 64px;
  padding-bottom: 48px;
}
body.eudr-page #proceso {
  padding-bottom: 0;
}
.image-panel.actores-panel,
.image-panel.svg-shot-panel {
  overflow: visible;
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.actores-shot,
.svg-shot,
.eudr-feature-dark .image-panel img.svg-shot {
  display: block;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  filter: drop-shadow(0 6px 16px rgba(0, 36, 25, 0.22));
}
.eudr-feature-dark .image-panel img.svg-shot {
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}
.doc-card {
  align-self: center;
  justify-self: center;
  width: min(100%, 560px);
  background: var(--color-white);
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-media);
  padding: 24px 26px 6px;
  filter: drop-shadow(0 18px 40px rgba(0, 36, 25, 0.12));
}
.doc-card-head h3 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.doc-card-head p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.45;
}
.doc-card-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.doc-card-list li {
  display: grid;
  grid-template-columns: 28px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--color-border-warm);
}
.doc-card-ico {
  font-size: 22px;
  color: var(--color-text-primary);
}
.doc-card-text h4 {
  margin: 0 0 2px;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.doc-card-text p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.4;
}
.doc-card-check {
  font-size: 20px;
  color: var(--color-green);
}
.doc-card-dl {
  font-size: 20px;
  color: var(--color-text-primary);
}
@media (max-width: 600px) {
  .doc-card {
    padding: 24px 22px 8px;
  }
  .doc-card-list li {
    column-gap: 12px;
  }
  .doc-card-text h4 {
    font-size: 16px;
  }
  .doc-card-text p {
    font-size: 13px;
  }
}
.home-process-steps .process-row.eudr-feature-row.actores-step {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 80px max(24px, calc((100vw - var(--container)) / 2));
  background: #fbfaf9;
}
.home-process-steps .process-row.eudr-feature-row.proveedores-step .process-copy {
  order: 1;
}
.home-process-steps .process-row.eudr-feature-row.proveedores-step .image-panel {
  order: 2;
}
.home-process-steps .process-row.eudr-feature-dark.geo-step .process-copy {
  order: 2;
}
.home-process-steps .process-row.eudr-feature-dark.geo-step .image-panel {
  order: 1;
}
.home-process-steps .process-row.eudr-feature-row.datos-origen-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -28px;
  padding: 72px max(24px, calc((100vw - var(--container)) / 2));
  background: #fbfaf9;
}
.tech-white.feature-band {
  padding-top: 72px;
  background: var(--color-white);
}
.tech-white .feature-section-heading {
  margin-bottom: 20px;
}
.section-header.centered .section-intro {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--color-text-secondary);
  font-size: 17px;
  line-height: 27px;
}
.tech-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f8 55%, #f1f1ef 100%);
}
.tech-feature {
  padding: 32px 28px 30px;
  border-right: 1px solid var(--color-border-warm);
  border-bottom: 1px solid var(--color-border-warm);
}
.tech-feature:nth-child(3n) {
  border-right: 0;
}
.tech-feature:nth-child(n + 4) {
  border-bottom: 0;
}
.tech-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border: 1px solid var(--color-border-warm);
  border-radius: 12px;
  background: #ffffff;
  color: var(--color-green);
}
.tech-feature-icon .material-symbols-rounded {
  font-size: 24px;
}
.tech-feature h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 650;
  line-height: 24px;
}
.tech-feature p {
  margin: 0 0 18px;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 23px;
}
.tech-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-primary);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.tech-feature-link .material-symbols-rounded {
  font-size: 18px;
  transition: transform 0.2s ease;
}
.tech-feature-link:hover .material-symbols-rounded {
  transform: translateX(4px);
}
@media (max-width: 1024px) {
  .tech-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tech-feature {
    border-right: 1px solid var(--color-border-warm);
    border-bottom: 1px solid var(--color-border-warm);
  }
  .tech-feature:nth-child(2n) {
    border-right: 0;
  }
  .tech-feature:nth-child(n + 5) {
    border-bottom: 0;
  }
}
@media (max-width: 600px) {
  .tech-feature-grid {
    grid-template-columns: 1fr;
  }
  .tech-feature {
    border-right: 0;
    border-bottom: 1px solid var(--color-border-warm);
  }
  .tech-feature:last-child {
    border-bottom: 0;
  }
}

/* Implementación — grid unido estilo .dark-card (oscuro) */
.onboarding-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}
.onboarding-grid .tech-feature {
  border-bottom: 0;
  border-right-color: rgba(255, 255, 255, 0.14);
  background: transparent;
}
.onboarding-grid .tech-feature h3 {
  color: var(--color-white);
}
.onboarding-grid .tech-feature p {
  color: rgba(255, 255, 255, 0.72);
}
.onboarding-grid .tech-feature-icon {
  background: rgba(0, 218, 108, 0.16);
  color: var(--color-green);
}
.onboarding-grid .tech-feature:nth-child(4n) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.onboarding-grid .tech-feature:last-child {
  border-right: 0;
}
@media (max-width: 1024px) {
  .onboarding-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .onboarding-grid .tech-feature {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .onboarding-grid .tech-feature:nth-child(2n) {
    border-right: 0;
  }
  .onboarding-grid .tech-feature:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 600px) {
  .onboarding-grid {
    grid-template-columns: 1fr;
  }
  .onboarding-grid .tech-feature {
    border-right: 0;
  }
}

/* Por qué importa — banda beige */
.why-band {
  padding-top: 64px;
  background: #faf8f5;
}
.why-band .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}
.why-band .section-header .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

/* Por qué importa — strip de argumentos (buyer persona) */
.why-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid var(--color-border-warm);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 18px 40px -28px rgba(0, 36, 25, 0.22);
  overflow: hidden;
}
.why-item {
  padding: 30px 26px;
  border-right: 1px solid var(--color-border-warm);
}
.why-item:last-child {
  border-right: 0;
}
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 12px;
}
.why-icon .material-symbols-rounded {
  font-size: 24px;
}
.why-icon,
.why-icon-blue,
.why-icon-purple,
.why-icon-green,
.why-icon-red,
.why-icon-amber {
  border: 1px solid var(--color-border-warm);
  background: #ffffff;
  color: var(--color-green);
}
.why-item h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 650;
  line-height: 24px;
}
.why-item p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 23px;
}
@media (max-width: 1024px) {
  .why-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-item {
    border-bottom: 1px solid var(--color-border-warm);
  }
  .why-item:nth-child(2n) {
    border-right: 0;
  }
  .why-item:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 600px) {
  .why-strip {
    grid-template-columns: 1fr;
  }
  .why-item {
    border-right: 0;
  }
}

/* EUDR step 3 — 3 cards (tpv-software style) */
.home-process-steps .process-row.eudr-cards-row {
  display: block;
  grid-template-columns: none;
  border-top: 0;
}
.eudr-cards-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.eudr-cards-head .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}
.eudr-cards-head h3 {
  margin: 0 0 16px;
  font-size: 34px;
  font-weight: 650;
  line-height: 42px;
}
.eudr-cards-head p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 17px;
  line-height: 27px;
}
.eudr-step-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.eudr-step-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-media);
  background: var(--color-white);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 56, 43, 0.08);
}
.eudr-step-shot {
  padding: 20px 20px 0;
  background: var(--color-surface-warm);
}
.eudr-step-shot img {
  display: block;
  width: 100%;
  border-radius: 12px 12px 0 0;
  border: 1px solid var(--color-border);
  border-bottom: 0;
  box-shadow: 0 12px 28px rgba(0, 56, 43, 0.12);
}
.eudr-step-shot.eudr-step-shot-green {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: radial-gradient(120% 120% at 80% 0%, rgba(0, 218, 108, 0.18) 0%, rgba(0, 218, 108, 0) 55%),
    radial-gradient(120% 120% at 0% 100%, rgba(15, 107, 82, 0.55) 0%, rgba(15, 107, 82, 0) 60%),
    linear-gradient(120deg, #002419 0%, var(--color-hero-navy) 45%, #024536 100%);
}
.eudr-step-shot.eudr-step-shot-green img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 0;
  border-radius: 12px;
  box-shadow: none;
  background: transparent;
}
.eudr-step-shot.eudr-step-shot-green.eudr-step-shot-wide {
  padding-left: 0;
  padding-right: 0;
}
.eudr-step-shot.eudr-step-shot-green.eudr-step-shot-wide img {
  width: 104%;
  max-width: 104%;
}
.eudr-step-shot.eudr-step-shot-green.eudr-step-shot-bottom {
  align-items: flex-end;
  padding-bottom: 0;
  aspect-ratio: 16 / 9;
}
.eudr-step-shot.eudr-step-shot-green.eudr-step-shot-bottom img {
  width: 58%;
  height: 100%;
  max-height: 100%;
  margin-inline: auto;
  object-fit: cover;
  object-position: center -8px;
  border-radius: 12px 12px 0 0;
}
.eudr-step-body {
  padding: 28px 24px 32px;
}
.eudr-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 30px;
  margin-bottom: 16px;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  background: var(--color-white);
  color: var(--color-green);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
}
.eudr-step-body h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 650;
  line-height: 26px;
}
.eudr-step-body p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 23px;
}

@media (max-width: 760px) {
  .home-process-steps .process-row.eudr-feature-row {
    grid-template-columns: 1fr;
  }
  .home-process-steps .process-row.eudr-feature-dark,
  .home-process-steps .process-row.eudr-feature-soft {
    padding: 32px 24px;
    gap: 28px;
  }
  .eudr-step-cards {
    grid-template-columns: 1fr;
  }
}

/* Home page eyebrows on dark backgrounds */
body.home-page .product-hero .eyebrow,
body.home-page .product-hero .eyebrow b,
body.home-page .onboarding .eyebrow,
body.home-page .onboarding .eyebrow b,
body.home-page .cta-panel .eyebrow,
body.home-page .cta-panel .eyebrow b,
body.home-page .eudr-feature-dark .eyebrow,
body.home-page .eudr-feature-dark .eyebrow b {
  color: #00b85c;
}

/* ===== EUDR spec sections (guion de contenido) ===== */
.spec-lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--color-text-secondary);
  font-size: 18px;
  line-height: 28px;
}
.section-header.centered .spec-lead {
  text-align: center;
}
.spec-repeat-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 6px 14px;
  border: 1px dashed #d9a400;
  border-radius: 100px;
  background: #fff8e6;
  color: #8a6d00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.spec-repeat-banner .material-symbols-rounded {
  font-size: 16px;
}

/* Problem grid (estilo tarjetas Holded autónomos) */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.problem-card {
  padding: 26px 24px 28px;
  border: 1px solid var(--color-border-warm);
  border-radius: 18px;
  background: #ffffff;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0, 20, 14, 0.07);
}
.problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border-warm);
  border-radius: 12px;
  background: #ffffff;
  color: var(--color-green);
}
.problem-icon .material-symbols-rounded {
  font-size: 24px;
}
.problem-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 650;
  line-height: 23px;
}
.problem-card p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 22px;
}

/* Solution flow */
.solution-cover {
  margin-top: 36px;
  padding: 30px 28px;
  border: 1px solid rgba(15, 107, 82, 0.28);
  border-radius: 22px;
  background: #f6fbf8;
}
.solution-cover-banner {
  margin: 0 0 24px;
  text-align: center;
  color: var(--color-hero-button);
  font-size: 15px;
  font-weight: 650;
}
.flow-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.flow-node {
  padding: 20px 14px;
  border: 1px solid var(--color-border-warm);
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
}
.flow-node.is-traces {
  border-color: var(--color-hero-button);
  box-shadow: 0 14px 32px rgba(15, 107, 82, 0.16);
}
.flow-node h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}
.flow-role {
  display: block;
  color: var(--color-green);
  font-size: 12px;
  font-weight: 650;
}
.flow-node p {
  margin: 8px 0 0;
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 18px;
}
.spec-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.spec-stat strong {
  display: block;
  color: var(--color-text-primary);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}
.spec-stat span {
  display: block;
  margin-top: 10px;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 23px;
}

/* Two products (estilo precios Holded) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.product-plan {
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border: 1px solid var(--color-border-warm);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 20, 14, 0.05);
}
.product-plan-flag {
  margin: 0 0 14px;
  color: var(--color-hero-button);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.product-plan h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 29px;
}
.product-plan > p {
  margin: 0 0 22px;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 23px;
}
.product-plan-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.product-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 22px;
}
.product-plan-features .material-symbols-rounded {
  flex: none;
  margin-top: 1px;
  color: var(--color-hero-button);
  font-size: 20px;
}
.product-plan .btn {
  margin-top: auto;
  justify-content: center;
}

/* Detail blocks + mini UI (secciones repetidas) */
.spec-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  margin-top: 32px;
}
.spec-detail.media-left .spec-detail-media {
  order: -1;
}
.spec-detail h3 {
  margin: 12px 0 14px;
  font-size: 30px;
  font-weight: 650;
  line-height: 38px;
}
.spec-detail > div > p {
  margin: 0 0 24px;
  color: var(--color-text-secondary);
  font-size: 17px;
  line-height: 27px;
}
.spec-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.spec-feature-list li {
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 23px;
}
.spec-feature-list strong {
  color: var(--color-text-primary);
  font-weight: 650;
}
.mini-ui {
  padding: 22px 24px;
  border: 1px solid var(--color-border-warm);
  border-radius: 18px;
  background: #fbfaf9;
}
.mini-ui-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  text-transform: uppercase;
}
.mini-ui-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-warm);
  font-size: 14px;
  color: var(--color-text-secondary);
}
.mini-ui-row:last-child {
  border-bottom: 0;
}
.mini-ui-row b {
  color: var(--color-text-primary);
  font-weight: 600;
}
.mini-ui-ok {
  color: var(--color-hero-button);
  font-weight: 650;
}

/* Steps conectados */
.spec-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.spec-step {
  padding: 26px 22px;
  border: 1px solid var(--color-border-warm);
  border-radius: 18px;
  background: #ffffff;
}
.spec-step .problem-icon {
  margin-bottom: 16px;
}
.spec-step .spec-step-num {
  display: block;
  margin-bottom: 10px;
  color: var(--color-green);
  font-size: 13px;
  font-weight: 700;
}
.spec-step h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 650;
  line-height: 22px;
}
.spec-step p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 21px;
}

@media (max-width: 1024px) {
  .problem-grid,
  .spec-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .flow-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .products-grid,
  .spec-detail,
  .spec-detail.media-left {
    grid-template-columns: 1fr;
  }
  .spec-detail.media-left .spec-detail-media {
    order: 0;
  }
  .spec-stats {
    gap: 16px;
  }
}

@media (max-width: 760px) {
  .problem-grid,
  .spec-steps,
  .flow-row,
  .spec-stats {
    grid-template-columns: 1fr;
  }
  .spec-detail h3 {
    font-size: 24px;
    line-height: 31px;
  }
  .spec-stat strong {
    font-size: 38px;
  }
}

/* Problem cards: cruz roja delante del texto */
.problem-card p {
  display: flex;
  gap: 8px;
}
.problem-card p::before {
  content: "cancel";
  font-family: "Material Symbols Rounded";
  flex: none;
  color: #e5484d;
  font-size: 20px;
  line-height: 22px;
}

/* Two products: estilo tarjetas de precios (franja y acento por columna) */
.product-plan {
  position: relative;
  overflow: hidden;
  padding-top: 40px;
}
.product-plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #00b85c;
}
.products-grid .product-plan:nth-child(2)::before {
  background: #3d7bfd;
}
.product-plan-flag {
  display: flex;
  align-items: center;
  gap: 9px;
}
.product-plan-flag::before {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00b85c;
}
.products-grid .product-plan:nth-child(2) .product-plan-flag {
  color: #3d7bfd;
}
.products-grid .product-plan:nth-child(2) .product-plan-flag::before {
  background: #3d7bfd;
}
.product-plan .btn-primary {
  background: #00b85c;
  color: #0c2c22;
}
.product-plan .btn-primary:hover {
  background: #04a552;
}
.products-grid .product-plan:nth-child(2) .btn-primary {
  background: #3d7bfd;
  color: #ffffff;
}
.products-grid .product-plan:nth-child(2) .btn-primary:hover {
  background: #2f61e0;
}

/* Two products — ajuste final estilo precios Holded (cajas unidas) */
.products-grid {
  gap: 0;
  border: 1px solid var(--color-border-warm);
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 20, 14, 0.08);
}
.product-plan {
  padding-top: 34px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}
.product-plan::before {
  display: none;
}
.products-grid .product-plan + .product-plan {
  border-left: 1px solid var(--color-border-warm);
}
.product-plan:hover {
  transform: none;
  box-shadow: none;
}
.product-plan h3 {
  min-height: 58px;
}

/* Dos productos — banda de fondo oscuro (estilo precios Holded) */
.products-band {
  background: #0b2a20;
}
.products-band .eyebrow,
.products-band .eyebrow b {
  color: #5ed27e;
}
.products-band h2 {
  color: #ffffff;
}
.products-band .spec-lead {
  color: rgba(255, 255, 255, 0.72);
}

/* Problem cards — igualar altura de títulos para alinear el cuerpo */
.problem-card h3 {
  min-height: 46px;
}

/* Flow nodes — lista de funcionalidades por fase */
.flow-node {
  text-align: left;
}
.flow-node h4,
.flow-node .flow-role {
  text-align: center;
}
.flow-features {
  list-style: none;
  margin: 14px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--color-border-warm);
  display: grid;
  gap: 8px;
}
.flow-features li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 17px;
}
.flow-features li::before {
  content: "check";
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "Material Symbols Rounded";
  font-size: 14px;
  line-height: 15px;
  color: var(--color-hero-button);
}
.flow-node.is-traces .flow-features li::before {
  color: var(--color-hero-button);
}

/* Conexión 360° (estilo Holded ERP) */
.conexion-stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-top: 40px;
}
.conexion-pills {
  display: grid;
  gap: 16px;
}
.conexion-pills-right {
  justify-items: end;
}
.conexion-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--color-border-warm);
  border-radius: 100px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 20, 14, 0.06);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  white-space: nowrap;
}
.conexion-pill i {
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--dot, #00b85c);
}
.conexion-media img {
  width: 100%;
  border: 1px solid var(--color-border-warm);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 20, 14, 0.12);
}
.conexion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 44px;
  margin-top: 48px;
}
.conexion-feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.conexion-feature .problem-icon {
  margin: 0;
}
.conexion-feature h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 650;
  line-height: 22px;
}
.conexion-feature p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 1024px) {
  .conexion-stage {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .conexion-pills {
    grid-auto-flow: column;
    justify-content: center;
    justify-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .conexion-pills-right {
    justify-items: center;
  }
  .conexion-media {
    order: -1;
  }
  .conexion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .conexion-pills {
    grid-auto-flow: row;
  }
  .conexion-grid {
    grid-template-columns: 1fr;
  }
}

/* Conexión 360° — fix de maquetación */
.conexion-stage {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 230px;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}
.conexion-pills {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.conexion-pills-left {
  align-items: flex-start;
}
.conexion-pills-right {
  align-items: flex-end;
}
.conexion-pill {
  width: fit-content;
}
.conexion-media img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .conexion-stage {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .conexion-media {
    order: -1;
  }
  .conexion-pills {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .conexion-pills-left,
  .conexion-pills-right {
    align-items: center;
  }
  .conexion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* El problema — sin hover */
.problem-card,
.problem-card:hover {
  transform: none;
  box-shadow: none;
}

/* Conexión 360° — sin espaciado superior (pegada a la sección anterior) */
.conexion-section {
  padding-top: 0;
}

/* Conexión 360° — imagen con el mismo contorno que la Hero */
.conexion-media {
  padding: 14px;
  border: 1px solid var(--color-border-warm);
  border-radius: 20px;
  background: var(--color-surface-warm);
  box-shadow: 0 24px 80px rgba(23, 23, 23, 0.08);
}
.conexion-media img {
  border-radius: var(--radius-media);
  box-shadow: none;
}

/* Conexión 360° — comparador antes/después (Origins vs Compliance Hub) */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-media);
  touch-action: none;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}
.ba-top {
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
.ba-label {
  position: absolute;
  bottom: 16px;
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(20, 12, 8, 0.72);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  pointer-events: none;
}
.ba-label-left {
  left: 16px;
}
.ba-label-right {
  right: 16px;
}
.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  margin-left: -1px;
  background: #fff;
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--pos, 50%);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #2a1a12;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

/* Comparador — fix de especificidad y arrastre */
.conexion-media .ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-slider {
  cursor: ew-resize;
}

/* Comparador — capas con etiqueta incluida (se recortan con su imagen) */
.ba-pane {
  position: absolute;
  inset: 0;
}

/* Fondos de secciones home */
.conexion-section {
  background: var(--color-surface-warm);
}
.products-band {
  background: linear-gradient(160deg, #0f3a2c 0%, #071c15 100%);
}

/* Conexión 360° — píldoras alineadas hacia la imagen central */
.conexion-pills-left {
  align-items: flex-end;
}
.conexion-pills-right {
  align-items: flex-start;
}

/* Dos productos — Origins verde brillante, Compliance Hub verde oscuro; títulos negros menos bold */
.product-plan-flag::before {
  background: #25d366;
}
.product-plan .btn-primary {
  background: #25d366;
  color: #0c2c22;
}
.product-plan .btn-primary:hover {
  background: #1fbd5a;
}
.products-grid .product-plan:nth-child(2) .product-plan-flag {
  color: #0f6b52;
}
.products-grid .product-plan:nth-child(2) .product-plan-flag::before {
  background: #0f6b52;
}
.products-grid .product-plan:nth-child(2) .btn-primary {
  background: #0f6b52;
  color: #ffffff;
}
.products-grid .product-plan:nth-child(2) .btn-primary:hover {
  background: #0a5944;
}
.product-plan h3 {
  color: #10201a;
  font-weight: 600;
}

/* Revertir h3 y aplicar negro + menos bold al flag (título) */
.product-plan h3 {
  color: var(--color-text-primary);
  font-weight: 700;
}
.product-plan-flag,
.products-grid .product-plan:nth-child(2) .product-plan-flag {
  color: #10201a;
  font-weight: 600;
}

/* Flags — mismo negro y peso medium en ambas tarjetas */
.products-grid .product-plan .product-plan-flag,
.products-grid .product-plan:nth-child(2) .product-plan-flag {
  color: #10201a;
  font-weight: 500;
}

/* Comparador — mostrar la pantalla completa */
.ba-slider {
  aspect-ratio: 16 / 9;
  background: #eef0f0;
}
.conexion-media .ba-img {
  object-fit: contain;
  object-position: center top;
}

/* Home — fondos secciones detalle */
.sec-white {
  background: #ffffff;
}
.sec-beige {
  background: var(--color-surface-warm);
}

/* Home — bloques de detalle: padding uniforme y sin doble hueco */
.home-detail {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Home — Evidencias con fondo blanco (anula la banda gris) */
body.home-page .home-detail .process-row.eudr-feature-soft {
  background: #ffffff;
  padding-top: 0;
  padding-bottom: 0;
}

/* Home — bloques de detalle contiguos, sin huecos en blanco */
.home-detail {
  padding-top: 0;
  padding-bottom: 0;
}
body.home-page .home-detail .home-process-steps .process-row {
  margin-bottom: 0;
}

/* === Home · ritmo vertical uniforme en bloques de detalle === */
body.home-page .home-detail {
  padding: 0;
}
body.home-page .home-detail .home-process-steps {
  gap: 0;
}
body.home-page .home-detail .home-process-steps .process-row {
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  padding: 56px max(24px, calc((100vw - var(--container)) / 2));
}
body.home-page .home-detail .home-process-steps .process-row.eudr-feature-soft {
  background: #ffffff;
}
body.home-page section.home-detail:has(.control-layout) {
  padding: 56px 0;
}

/* Home · elimina el margen que crea la banda blanca entre filas */
body.home-page .home-detail .home-process-steps .process-row {
  margin-bottom: 0 !important;
}

/* Evidencias (home) — fondo verde oscuro con degradado (ángulo distinto) */
body.home-page .home-detail .home-process-steps .process-row.eudr-feature-soft {
  background: linear-gradient(300deg, #0f3a2c 0%, #071c15 100%);
}
body.home-page .home-detail .eudr-feature-soft .process-copy .eyebrow,
body.home-page .home-detail .eudr-feature-soft .process-copy .eyebrow b {
  color: #5ed27e;
}
body.home-page .home-detail .eudr-feature-soft .process-copy h2,
body.home-page .home-detail .eudr-feature-soft .process-copy h3,
body.home-page .home-detail .eudr-feature-soft .process-copy h4 {
  color: #ffffff;
}
body.home-page .home-detail .eudr-feature-soft .process-copy p {
  color: rgba(255, 255, 255, 0.8);
}

/* Home · Proveedores/Gobernanza sin padding inferior transparente (pega con la banda siguiente) */
body.home-page section.home-detail:has(.control-layout) {
  padding-bottom: 0;
}

/* Home · eyebrows sobre fondo verde con el mismo verde que "Exportas o importas" */
body.home-page .home-detail .eudr-feature-dark .eyebrow,
body.home-page .home-detail .eudr-feature-dark .eyebrow b,
body.home-page .home-detail .eudr-feature-soft .eyebrow,
body.home-page .home-detail .eudr-feature-soft .eyebrow b,
body.home-page .products-band .eyebrow,
body.home-page .products-band .eyebrow b {
  color: #5ed27e;
}

/* Home · Gobernanza: un poco de padding inferior para que respire */
body.home-page section.home-detail.sec-beige {
  padding-bottom: 48px;
}

/* Desplegable EUDR — cada nombre en una línea */
.dropdown-menu[aria-label="EUDR"] {
  min-width: 240px;
}
.dropdown-menu[aria-label="EUDR"] .dropdown-item span,
.dropdown-menu[aria-label="EUDR"] .dropdown-item strong {
  white-space: nowrap;
}

/* Desplegable EUDR — invertir tamaño: producto grande, rol pequeño */
.dropdown-menu[aria-label="EUDR"] .dropdown-item strong {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 500;
}
.dropdown-menu[aria-label="EUDR"] .dropdown-item span:last-child {
  color: var(--color-text-strong);
  font-size: 15px;
  font-weight: 650;
}

/* Home · títulos laterales de módulo (Origins / Compliance Hub) */
.module-intro {
  padding-bottom: 8px;
}
.module-intro .section-header {
  margin-bottom: 0;
}

/* Home · título de módulo pegado al bloque siguiente (estilo Holded precios) */
.module-intro {
  padding-bottom: 0;
}
.module-intro + .home-detail .home-process-steps .process-row:first-child {
  padding-top: 24px;
}
.module-intro + section.home-detail:has(.control-layout) {
  padding-top: 24px;
}

/* Home · cabecera de módulo dentro de la sección (tamaños tipo Holded) */
.section-header.module-intro {
  margin-bottom: 28px;
  padding-bottom: 0;
}
.section-header.module-intro .eyebrow,
.section-header.module-intro .eyebrow b {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 600;
}
.section-header.module-intro h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}
.section-header.module-intro .muted {
  max-width: 640px;
  font-size: 16px;
  line-height: 25px;
}

/* Módulo adicional · Huella de carbono */
.carbon-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  margin-top: 36px;
  padding: 44px 48px;
  border-radius: 22px;
  background: linear-gradient(160deg, #0f3a2c 0%, #071c15 100%);
  color: #ffffff;
}
.carbon-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #133527;
  color: #5ed27e;
}
.carbon-icon .material-symbols-rounded {
  font-size: 30px;
}
.carbon-body .eyebrow,
.carbon-body .eyebrow b {
  color: #5ed27e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  font-weight: 600;
}
.carbon-body h3 {
  margin: 12px 0 12px;
  font-size: 24px;
  line-height: 31px;
  font-weight: 700;
  color: #ffffff;
}
.carbon-body > p {
  margin: 0 0 22px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 25px;
}
.carbon-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.carbon-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 22px;
}
.carbon-features .material-symbols-rounded {
  flex: none;
  margin-top: 1px;
  color: #25d366;
  font-size: 20px;
}
.carbon-cta.btn-primary {
  align-self: center;
  background: #25d366;
  color: #0c2c22;
  white-space: nowrap;
}
.carbon-cta.btn-primary:hover {
  background: #1fbd5a;
}

@media (max-width: 900px) {
  .carbon-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }
  .carbon-cta.btn-primary {
    justify-self: stretch;
    justify-content: center;
  }
}

/* Botón ancho verde brillante (estilo tarjeta) hacia Huella de carbono */
.carbon-fullcta.btn {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 18px 24px;
  border-radius: 14px;
  background: #5ed27e;
  color: #0c2c22;
  text-align: center;
  font-weight: 650;
}
.carbon-fullcta.btn:hover {
  background: #4ec972;
}

/* Carbon card · botón integrado a ancho completo dentro de la caja */
.carbon-card {
  grid-template-columns: auto minmax(0, 1fr);
}
.carbon-card .carbon-fullcta {
  grid-column: 1 / -1;
  margin-top: 28px;
}

/* Carbon card · icono arriba junto al título, una sola columna */
.carbon-card {
  grid-template-columns: 1fr;
}
.carbon-body .carbon-icon {
  margin-bottom: 18px;
}

/* Carbon card · más estrecha y centrada */
.carbon-card {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* EUDR · padding-top de Tecnología igual al de Trazabilidad (bandas del proceso: 80px) */
body.eudr-page .tech-white.feature-band {
  padding-top: 80px;
}

/* Compliance Hub · igualar el espacio sobre Tecnología (bloque Proveedores) al ritmo de 80px */
body.eudr-page .section.importer-detail {
  padding-bottom: 0;
}

/* Páginas legales */
.legal-page {
  padding-top: 96px;
}
.legal-container {
  max-width: 760px;
}
.legal-container h1 {
  margin: 12px 0 8px;
  font-size: 40px;
  line-height: 48px;
}
.legal-updated {
  margin: 0 0 8px;
  color: var(--color-text-muted);
  font-size: 14px;
}
.legal-container h2 {
  margin: 40px 0 12px;
  font-size: 26px;
}
.legal-container h3 {
  margin: 26px 0 8px;
  font-size: 18px;
}
.legal-container p,
.legal-container li {
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 26px;
}
.legal-container ul {
  margin: 0 0 16px;
  padding-left: 20px;
}
.legal-container a {
  color: var(--color-hero-button);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Carbon CTA · versión blanca */
.carbon-fullcta.btn {
  background: #ffffff;
  color: #0c2c22;
}
.carbon-fullcta.btn:hover {
  background: rgba(255, 255, 255, 0.88);
}

/* ===== Ajustes responsive finales (home / EUDR / módulos) ===== */
@media (max-width: 1024px) {
  /* Tarjetas de producto apiladas: divisor arriba en vez de a la izquierda */
  .products-grid .product-plan + .product-plan {
    border-left: 0;
    border-top: 1px solid var(--color-border-warm);
  }
}

@media (max-width: 760px) {
  /* Comparador antes/después: etiquetas y tirador más compactos */
  .ba-label {
    bottom: 10px;
    padding: 6px 10px;
    font-size: 12px;
  }
  .ba-label-left { left: 10px; }
  .ba-label-right { right: 10px; }
  .ba-handle {
    width: 36px;
    height: 36px;
  }

  /* Píldoras de Conexión 360° */
  .conexion-pill {
    padding: 10px 14px;
    font-size: 14px;
  }

  /* Módulo de carbono: caja y textos ajustados */
  .carbon-card {
    padding: 26px 20px;
    border-radius: 18px;
  }
  .carbon-body h3 {
    font-size: 21px;
    line-height: 28px;
  }
  .carbon-body > p {
    font-size: 15px;
    line-height: 23px;
  }
  .carbon-features li {
    font-size: 14px;
  }
  .carbon-card .carbon-fullcta {
    margin-top: 20px;
    padding: 15px 18px;
  }

  /* Bandas de detalle: padding vertical algo menor en móvil */
  body.home-page .home-detail .home-process-steps .process-row {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Cabecera de sección centrada: subtítulo legible */
  .section-header.centered .spec-lead {
    font-size: 16px;
    line-height: 25px;
  }
}

/* Menú móvil · desplegable EUDR con texto claro sobre fondo oscuro */
@media (max-width: 760px) {
  .dropdown-menu[aria-label="EUDR"] .dropdown-item span:last-child {
    color: #ffffff;
  }
  .dropdown-menu[aria-label="EUDR"] .dropdown-item strong {
    color: rgba(255, 255, 255, 0.62);
  }
}

/* Footer · evitar solape del email y columnas en móvil */
.footer-grid a {
  overflow-wrap: anywhere;
}
@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Language switcher (ES / EN / FR) ===== */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
}

.lang-switcher button,
.lang-switcher a {
  appearance: none;
  border: 0;
  margin: 0;
  padding: 5px 9px;
  border-radius: 100px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-switcher button:hover,
.lang-switcher a:hover {
  color: #ffffff;
}

.lang-switcher button.is-active,
.lang-switcher a.is-active {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

@media (max-width: 760px) {
  .site-header.nav-open .nav-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .site-header.nav-open .lang-switcher {
    align-self: center;
  }
}

/* Selector de idioma · más separación con el botón */
.nav-actions .lang-switcher {
  margin-right: 14px;
}

/* Estado vacío (Blog / Descargables sin contenido) */
.empty-state {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
  padding: 64px 24px;
  border: 1px dashed var(--color-border-warm);
  border-radius: 18px;
  background: var(--color-surface-warm);
}
.empty-state .material-symbols-rounded {
  font-size: 40px;
  color: var(--color-hero-button);
}
.empty-state h2 {
  margin: 0;
  font-size: 22px;
}
.empty-state p {
  margin: 0;
  max-width: 460px;
  color: var(--color-text-secondary);
}

/* Webinars sin imagen · fecha como texto (sin cuadro) y proporcional */
.events-list .event-card {
  grid-template-columns: auto minmax(0, 1fr) auto;
}
.events-list .event-date {
  border: 0;
  background: transparent;
  padding: 0;
  min-width: 92px;
  justify-items: start;
  text-align: left;
  color: var(--color-hero-button);
}
.events-list .event-date strong {
  font-size: 20px;
  line-height: 26px;
}
.events-list .event-date-soft {
  color: var(--color-text-primary);
}

@media (max-width: 760px) {
  .events-list .event-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .events-list .event-date {
    min-width: 0;
  }
  .events-list .event-card > .btn {
    justify-self: start;
  }
}

/* ============ Formulario de contacto ============ */
.contact-section {
  background: #f6f5f4;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.contact-intro h2 {
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.contact-details a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-weight: 600;
}

.contact-details a:hover {
  color: var(--color-hero-button);
}

.contact-details .material-symbols-rounded {
  color: var(--color-hero-button);
  font-size: 22px;
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 20, 14, 0.08);
}

.contact-card h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.contact-card-sub {
  margin: 0 0 24px;
  color: var(--color-text-muted);
  font-size: 15px;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-card {
    padding: 28px;
  }
}

.contact-card .btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.contact-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.contact-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.contact-field .req {
  color: #c0392b;
}

.contact-field input,
.contact-field textarea {
  border: 1px solid var(--color-border-warm);
  border-radius: 10px;
  padding: 11px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-white);
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: 2px solid var(--color-hero-button);
  outline-offset: 1px;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 24px;
}

.contact-consent input[type="checkbox"] {
  margin-top: 4px;
  flex: 0 0 auto;
}

.contact-consent label {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 22px;
}

.contact-consent a {
  color: var(--color-hero-button);
  text-decoration: underline;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 22px;
  border-radius: var(--radius-card);
  background: var(--color-surface-warm);
  border: 1px solid var(--color-border-warm);
}

.contact-success .material-symbols-rounded {
  color: var(--color-hero-button);
  font-size: 26px;
}

.contact-error-summary {
  padding: 16px 20px;
  border-radius: var(--radius-card);
  border: 1px solid #c0392b40;
  background: #c0392b0d;
  color: #8e2b1f;
  margin-bottom: 24px;
}

.contact-error-summary ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

@media (max-width: 640px) {
  .contact-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
