:root {
  --ink: #14201a;
  --muted: #65746d;
  --paper: #f7f4ec;
  --surface: #fffdf8;
  --line: #ded7c8;
  --green-900: #143f2a;
  --green-700: #1f7445;
  --green-500: #58a33c;
  --clay: #b7633f;
  --gold: #d7aa4a;
  --blue: #2f667d;
  --shadow: 0 24px 80px rgba(20, 32, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(222, 215, 200, 0.7);
  background: rgba(247, 244, 236, 0.84);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 12px 36px rgba(20, 32, 26, 0.08);
}

.brand,
.site-nav,
.header-actions,
.hero-actions,
.mock-topbar,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-word {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1;
}

.brand-agro {
  color: var(--ink);
}

.brand-parte {
  color: #2fad26;
}

.site-nav {
  gap: 6px;
}

.site-nav a,
.header-cta {
  border-radius: 999px;
  padding: 10px 14px;
  color: #304039;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a:hover,
.header-cta:hover {
  background: rgba(31, 116, 69, 0.1);
  color: var(--green-900);
}

.header-cta {
  border: 1px solid rgba(20, 63, 42, 0.2);
  background: rgba(255, 253, 248, 0.78);
}

.header-actions {
  justify-content: flex-end;
  gap: 8px;
}

.header-login {
  color: #fffdf8;
  border-color: var(--green-900);
  background: var(--green-900);
}

.header-login:hover {
  color: #fffdf8;
  background: #0d3020;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(240px, 360px);
  align-items: end;
  justify-content: space-between;
  gap: clamp(28px, 6vw, 96px);
  min-height: min(760px, calc(100vh - 76px));
  overflow: hidden;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 4vw, 56px) 46px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 32, 22, 0.82) 0%, rgba(12, 32, 22, 0.62) 42%, rgba(12, 32, 22, 0.1) 78%),
    linear-gradient(180deg, rgba(12, 32, 22, 0.02), rgba(12, 32, 22, 0.38));
  content: "";
}

.hero::after {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: -1px;
  left: clamp(18px, 4vw, 56px);
  height: 1px;
  background: var(--line);
  content: "";
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-content {
  min-width: 0;
  max-width: 780px;
}

.hero .eyebrow {
  color: #efb963;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 100%;
  margin-bottom: 24px;
  color: #fffdf8;
  font-size: clamp(4.2rem, 8.8vw, 7.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1.18rem, 2vw, 1.6rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
}

.button.primary {
  color: #fffdf8;
  background: var(--green-900);
  box-shadow: 0 16px 34px rgba(20, 63, 42, 0.22);
}

.button.primary:hover {
  background: #0d3020;
}

.button.secondary {
  color: #fffdf8;
  border: 1px solid rgba(255, 253, 248, 0.42);
  background: rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(12px);
}

.hero-proof {
  align-self: end;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 8px;
  padding: 20px;
  color: #fffdf8;
  background: rgba(12, 32, 22, 0.48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.hero-proof strong,
.hero-proof span,
.hero-proof a {
  display: block;
  overflow-wrap: anywhere;
}

.hero-proof strong {
  font-size: 1.22rem;
  line-height: 1.1;
}

.hero-proof span {
  margin-top: 10px;
  color: rgba(255, 253, 248, 0.76);
}

.hero-proof a {
  margin-top: 18px;
  color: #fffdf8;
  font-weight: 850;
}

.hero-panel {
  justify-self: end;
  width: min(100%, 390px);
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow);
}

.panel-logo {
  width: 170px;
  height: auto;
  margin-bottom: 24px;
}

.panel-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.panel-row span,
.hero-panel p,
.mock-topbar span,
.mock-kpis span,
.mock-table span {
  color: var(--muted);
}

.panel-row strong {
  color: var(--green-900);
  font-size: 1.9rem;
}

.panel-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9e2d2;
}

.panel-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-700), var(--gold));
}

.hero-panel p {
  margin: 18px 0 0;
}

.hero-screens {
  position: relative;
  justify-self: end;
  width: min(100%, 540px);
  min-height: 620px;
}

.phone-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 9px solid #10281d;
  border-radius: 34px;
  background: #f5f8f1;
  box-shadow: 0 28px 72px rgba(20, 32, 26, 0.24);
}

.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.phone-main {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: min(62%, 286px);
  height: 560px;
}

.phone-secondary {
  bottom: 78px;
  left: 0;
  z-index: 1;
  width: min(56%, 252px);
  height: 494px;
  opacity: 0.96;
}

.hero-badge {
  position: absolute;
  bottom: 0;
  left: 28px;
  z-index: 3;
  max-width: 260px;
  border: 1px solid rgba(255, 253, 248, 0.7);
  border-radius: 8px;
  padding: 16px 18px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  color: var(--green-900);
  font-size: 1rem;
}

.hero-badge span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.intro-band,
.section,
.workflow,
.product-section,
.demo-section,
.fit-section,
.contact-section {
  padding-right: clamp(18px, 4vw, 56px);
  padding-left: clamp(18px, 4vw, 56px);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--green-900);
}

.intro-band div {
  min-height: 118px;
  padding: 28px;
  background: #183f2d;
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  color: #fffdf8;
  font-size: 1.24rem;
}

.intro-band span {
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.7);
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  padding-top: clamp(72px, 10vw, 132px);
  padding-bottom: clamp(72px, 10vw, 132px);
}

.section-copy,
.section-heading,
.workflow-copy,
.fit-copy {
  max-width: 720px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.7vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.15;
}

.section-copy p:not(.eyebrow),
.workflow-copy p:not(.eyebrow),
.fit-copy p:not(.eyebrow),
.contact-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-self: end;
}

.pain-grid article,
.module-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.pain-grid article {
  min-height: 250px;
  padding: 22px;
}

.pain-grid span {
  display: inline-flex;
  margin-bottom: 70px;
  color: var(--blue);
  font-weight: 850;
}

.pain-grid p,
.module-card p,
.timeline p,
.fit-list p {
  color: var(--muted);
}

.modules {
  display: block;
  background: #fffdf8;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.module-card {
  min-height: 236px;
  padding: 24px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 116, 69, 0.35);
  box-shadow: 0 18px 46px rgba(20, 32, 26, 0.1);
}

.module-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fffdf8;
  background: var(--green-900);
  font-weight: 900;
}

.module-card:nth-child(2n) .module-icon {
  background: var(--blue);
}

.module-card:nth-child(3n) .module-icon {
  background: var(--clay);
}

.workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  padding-top: clamp(72px, 10vw, 132px);
  padding-bottom: clamp(72px, 10vw, 132px);
  background: #eef1e7;
}

.timeline {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid rgba(20, 32, 26, 0.16);
}

.timeline li:last-child {
  border-bottom: 1px solid rgba(20, 32, 26, 0.16);
}

.timeline span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: #fffdf8;
  background: var(--green-900);
  font-weight: 850;
}

.flow-map {
  grid-column: 1 / -1;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 26, 0.16);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 22px 64px rgba(20, 32, 26, 0.1);
}

.flow-map img {
  width: 100%;
  height: auto;
}

.product-section {
  padding-top: clamp(72px, 10vw, 132px);
  padding-bottom: clamp(72px, 10vw, 132px);
  background: #fffdf8;
}

.product-section h2 {
  max-width: 980px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.showcase-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 22px 64px rgba(20, 32, 26, 0.1);
}

.showcase-wide {
  grid-column: 1 / -1;
}

.showcase-card picture,
.showcase-card img {
  display: block;
  width: 100%;
}

.showcase-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.showcase-incidents img {
  background: #eef5e8;
  object-fit: contain;
  object-position: center;
}

.showcase-card div {
  padding: clamp(20px, 3vw, 28px);
}

.showcase-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-card h3 {
  max-width: 680px;
  font-size: clamp(1.45rem, 2.7vw, 2.4rem);
}

.showcase-card p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.demo-section {
  padding-top: clamp(72px, 10vw, 132px);
  padding-bottom: clamp(72px, 10vw, 132px);
  background: var(--green-900);
}

.demo-section .eyebrow {
  color: var(--gold);
}

.demo-section h2 {
  max-width: 900px;
  color: #fffdf8;
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

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

.screen-card {
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.screen-card img {
  width: 100%;
  aspect-ratio: 9 / 20;
  object-fit: cover;
  object-position: top;
  background: #f4f7ef;
}

.screen-card div {
  min-height: 154px;
  padding: 20px;
}

.screen-card h3 {
  color: #fffdf8;
}

.screen-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
}

.product-shot {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
  background: #f9f6ed;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 24px 18px;
  background: #183f2d;
}

.mock-sidebar img {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  object-fit: contain;
}

.mock-sidebar span {
  width: 44px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.42);
}

.mock-sidebar span:nth-child(2) {
  background: var(--gold);
}

.mock-main {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 20px;
  padding: clamp(20px, 4vw, 34px);
}

.mock-topbar {
  justify-content: space-between;
  gap: 18px;
}

.mock-topbar strong,
.mock-topbar span {
  display: block;
}

.mock-topbar strong {
  font-size: clamp(1.4rem, 3vw, 2.15rem);
}

.mock-topbar button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #fffdf8;
  background: var(--green-900);
  font: inherit;
  font-weight: 800;
}

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

.mock-kpis div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.mock-kpis span,
.mock-kpis strong {
  display: block;
}

.mock-kpis strong {
  margin-top: 14px;
  color: var(--green-900);
  font-size: 2.4rem;
}

.mock-chart {
  display: flex;
  align-items: end;
  gap: 14px;
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(20, 32, 26, 0.06) 1px, transparent 1px) 0 0 / 100% 25%,
    var(--surface);
}

.mock-chart span {
  flex: 1;
  min-width: 18px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--gold), var(--green-700));
}

.mock-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.mock-table div {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) minmax(120px, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  background: var(--surface);
}

.mock-table strong {
  font-weight: 800;
}

.mock-table em {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green-900);
  background: rgba(31, 116, 69, 0.12);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 800;
}

.fit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  padding-top: clamp(72px, 10vw, 132px);
  padding-bottom: clamp(72px, 10vw, 132px);
  background: #fffdf8;
}

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

.fit-list p {
  margin: 0;
  border-left: 4px solid var(--gold);
  padding: 16px 18px;
  background: #f5efe1;
  font-weight: 700;
}

.contact-section {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
  background: linear-gradient(135deg, #173e2b, #1d5435 58%, #244050);
}

.contact-card {
  max-width: 920px;
  margin: 0 auto;
  color: #fffdf8;
  text-align: center;
}

.contact-card .eyebrow {
  color: var(--gold);
}

.contact-card p {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  color: rgba(255, 253, 248, 0.76);
}

.contact-card .contact-email {
  margin-bottom: 24px;
  color: #fffdf8;
  font-weight: 850;
}

.contact-email a {
  border-bottom: 2px solid rgba(215, 170, 74, 0.72);
  color: #fffdf8;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  padding: 13px 14px;
  color: #fffdf8;
  background: rgba(255, 253, 248, 0.1);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(215, 170, 74, 0.22);
}

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

.message-field,
.privacy-check,
.contact-form .button,
.hidden-field {
  grid-column: 1 / -1;
}

.contact-form .privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 640px;
  margin: 4px auto 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: left;
}

.contact-form .privacy-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.privacy-check a {
  border-bottom: 1px solid rgba(215, 170, 74, 0.78);
  color: #fffdf8;
}

.hidden-field {
  display: none;
}

.contact-form .button {
  justify-self: center;
  min-width: 180px;
  border: 0;
  cursor: pointer;
}

.contact-card .button.primary {
  background: #fffdf8;
  color: var(--green-900);
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: rgba(255, 253, 248, 0.7);
  background: #10281d;
}

.site-footer span:first-child {
  color: #fffdf8;
  font-weight: 850;
}

.site-footer > div {
  display: grid;
  gap: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 750;
}

.footer-links a {
  color: rgba(255, 253, 248, 0.78);
}

.footer-links a:hover {
  color: #fffdf8;
}

.legal-header {
  position: sticky;
}

.legal-page {
  background:
    linear-gradient(180deg, rgba(31, 116, 69, 0.08), rgba(255, 253, 248, 0) 360px),
    var(--paper);
}

.legal-hero {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(72px, 11vw, 130px) clamp(18px, 4vw, 56px) 34px;
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.98;
}

.legal-hero p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 750;
}

.legal-content {
  max-width: 920px;
  margin: 0 auto clamp(72px, 10vw, 120px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 56px);
  background: var(--surface);
  box-shadow: 0 22px 64px rgba(20, 32, 26, 0.08);
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.legal-content h2:first-of-type {
  margin-top: 24px;
}

.legal-content p {
  margin: 0 0 16px;
  color: #43534b;
  font-size: 1.04rem;
}

.legal-content a {
  border-bottom: 1px solid rgba(31, 116, 69, 0.32);
  color: var(--green-700);
  font-weight: 800;
}

.thanks-page {
  display: grid;
  min-height: calc(100vh - 76px);
  place-items: center;
  padding: clamp(42px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(20, 63, 42, 0.9), rgba(36, 64, 80, 0.84)),
    url("assets/visuals/agroparte-informes-exportacion-oficina-1600.jpg") center / cover;
}

.thanks-card {
  width: min(760px, 100%);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  padding: clamp(28px, 6vw, 58px);
  color: #fffdf8;
  background: rgba(16, 40, 29, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.thanks-card .eyebrow {
  color: var(--gold);
}

.thanks-card h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.98;
}

.thanks-card p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.12rem;
}

.thanks-card .button.primary {
  background: #fffdf8;
  color: var(--green-900);
}

.thanks-card .button.secondary {
  color: #fffdf8;
}

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

.js .reveal {
  transform: none;
  opacity: 1;
}
.js .reveal.is-visible {
  transform: none;
  opacity: 1;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .section,
  .workflow,
  .fit-section {
    grid-template-columns: 1fr;
  }

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

  .hero-proof {
    max-width: 520px;
  }

  .hero-content {
    padding-bottom: 20px;
  }

  .hero-panel {
    justify-self: stretch;
  }

  .hero-screens {
    justify-self: stretch;
    min-height: 560px;
  }

  .phone-main {
    right: 6%;
  }

  .phone-secondary {
    left: 6%;
  }

  .pain-grid,
  .module-grid,
  .showcase-grid,
  .screen-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-wide {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 12px;
    min-height: 68px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .header-cta:not(.header-login) {
    display: none;
  }

  .header-login {
    padding: 9px 13px;
    font-size: 0.88rem;
  }

  .site-nav a {
    padding: 9px 11px;
    white-space: nowrap;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(12, 32, 22, 0.82) 0%, rgba(12, 32, 22, 0.68) 42%, rgba(12, 32, 22, 0.18) 100%),
      linear-gradient(90deg, rgba(12, 32, 22, 0.18), rgba(12, 32, 22, 0.08));
  }

  .hero-photo img {
    object-position: 64% center;
  }

  .hero-proof {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 4.1rem);
    line-height: 0.9;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .hero-lead {
    max-width: 100%;
  }

  .intro-band,
  .pain-grid,
  .module-grid,
  .showcase-grid,
  .mock-kpis {
    grid-template-columns: 1fr;
  }

  .intro-band {
    padding-right: 0;
    padding-left: 0;
  }

  .pain-grid span {
    margin-bottom: 34px;
  }

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

  .phone-shot {
    border-width: 7px;
    border-radius: 28px;
  }

  .phone-main {
    right: 0;
    width: 58%;
    height: 470px;
  }

  .phone-secondary {
    bottom: 56px;
    left: 0;
    width: 52%;
    height: 410px;
  }

  .hero-badge {
    right: 14px;
    left: 14px;
    max-width: none;
  }

  .product-shot {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-main {
    gap: 14px;
  }

  .mock-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .mock-chart {
    min-height: 180px;
    gap: 8px;
  }

  .mock-table div {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .flow-map {
    overflow-x: auto;
  }

  .flow-map img {
    width: 980px;
    max-width: none;
  }

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

  .screen-gallery.compact {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-content {
    max-width: 350px;
  }

  .hero-lead {
    font-size: 1.05rem;
  }
}

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

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