:root {
  --navy: #0b1f38;
  --navy-2: #112c4a;
  --ink: #142233;
  --muted: #5c6b78;
  --line: #dbe3e6;
  --paper: #f7f9f6;
  --white: #ffffff;
  --green: #3a973d;
  --green-dark: #236b35;
  --green-soft: #e7f0e3;
  --blue: #369bd2;
  --amber: #f5ad23;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px rgba(18, 41, 54, 0.1);
  --font-body: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Manrope", var(--font-body);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, textarea { font: inherit; }

button { cursor: pointer; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.nav-wrap {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
}

.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: -0.04em; }
.brand-copy small { margin-top: 4px; color: rgba(255,255,255,.66); font-size: .67rem; letter-spacing: .09em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 26px; font-size: .88rem; }
.site-nav > a:not(.button) { color: rgba(255,255,255,.82); transition: color .2s ease; }
.site-nav > a:not(.button):hover, .site-nav > a:not(.button):focus-visible { color: var(--white); }
.language-switcher { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; }
.language-button { min-width: 27px; padding: 5px 6px; border: 0; border-radius: 999px; background: transparent; color: rgba(255,255,255,.58); font-size: .62rem; font-weight: 700; }
.language-button:hover, .language-button:focus-visible, .language-button.is-active { background: rgba(255,255,255,.17); color: var(--white); }

[hidden] { display: none !important; }

.translation-notice {
  position: absolute;
  z-index: 2;
  top: 98px;
  right: max(24px, calc((100% - 1160px) / 2));
  width: min(440px, calc(100% - 48px));
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 12px;
  background: rgba(7, 24, 44, .78);
  color: rgba(255,255,255,.82);
  font-size: .69rem;
  line-height: 1.45;
  backdrop-filter: blur(8px);
}

.translation-notice strong { display: block; margin-bottom: 3px; color: var(--amber); font-size: .72rem; }
.translation-notice span { display: block; }

.menu-toggle { display: none; border: 0; background: transparent; color: var(--white); padding: 8px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 5px 0; background: currentColor; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: .86rem;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(11,31,56,.2); }
.button-small { min-height: 42px; padding: 0 16px; font-size: .78rem; }
.button-dark { background: var(--white); color: var(--navy); }
.button-accent { background: var(--amber); color: var(--navy); }
.button-outline { min-height: 38px; border-color: #b9cbb9; background: transparent; color: var(--green-dark); }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(6, 24, 43, .97) 0%, rgba(7, 26, 44, .9) 36%, rgba(7, 26, 44, .35) 74%, rgba(7, 26, 44, .55) 100%), url("assets/Jamay_Hero_RGB.webp");
  background-position: center, center;
  background-size: cover;
}

.hero-background::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--paper));
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, .97fr);
  align-items: center;
  gap: 70px;
  padding-top: 84px;
  padding-bottom: 100px;
}

.hero-copy { max-width: 630px; }
.eyebrow { margin: 0 0 17px; color: var(--green-dark); font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow-light { color: #aad28a; }
.eyebrow-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--amber); vertical-align: 1px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -.045em; }
h1 { max-width: 650px; margin-bottom: 25px; font-size: clamp(3rem, 5.4vw, 5.25rem); font-weight: 800; }
h2 { margin-bottom: 22px; font-size: clamp(2.2rem, 3.7vw, 3.8rem); font-weight: 700; }
h3 { margin-bottom: 11px; font-size: 1.14rem; }

.hero-lead { max-width: 590px; margin-bottom: 13px; color: rgba(255,255,255,.85); font-size: 1.12rem; line-height: 1.65; }
.hero-note { max-width: 510px; margin-bottom: 33px; color: rgba(255,255,255,.6); font-size: .92rem; }
.hero-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: .86rem; font-weight: 700; }
.text-link span { font-size: 1.1em; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link-light { color: rgba(255,255,255,.78); }
.text-link-dark { color: var(--green-dark); }
.hero-location { margin-top: 70px; color: rgba(255,255,255,.6); font-size: .77rem; letter-spacing: .02em; }
.location-pin { color: var(--amber); font-size: 1.15rem; vertical-align: -2px; }

.hero-visual {
  position: relative;
  min-height: 485px;
  align-self: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.02));
  box-shadow: 0 32px 70px rgba(0,0,0,.24);
}

.hero-visual::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 19px;
  content: "";
  pointer-events: none;
}

.visual-label {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 30px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(10,29,50,.68);
  backdrop-filter: blur(8px);
  font-size: .7rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #8bc77a; box-shadow: 0 0 0 4px rgba(139,199,122,.16); }
.visual-caption { position: absolute; z-index: 2; right: 29px; bottom: 27px; left: 29px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.visual-caption span { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; }
.visual-caption small { max-width: 155px; color: rgba(255,255,255,.66); font-size: .67rem; line-height: 1.35; text-align: right; }

.section-pad { padding: 125px 0; }
.section-tint { background: #edf3ed; }
.section-dark { background: var(--navy); color: var(--white); }
.intro { background: var(--paper); }
.intro-grid, .split-heading { display: grid; grid-template-columns: 1.02fr .98fr; align-items: end; gap: 90px; }
.intro h2 { max-width: 560px; margin-bottom: 0; }
.intro-text { max-width: 490px; color: var(--muted); font-size: 1.04rem; }
.intro-text p:last-child { margin-bottom: 0; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 82px; }
.value-card { min-height: 225px; padding: 27px; border-top: 2px solid var(--green); background: var(--white); box-shadow: 0 10px 25px rgba(17, 43, 65, .04); }
.card-number { margin-bottom: 35px; color: var(--green); font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.value-card p { max-width: 290px; margin-bottom: 0; color: var(--muted); font-size: .92rem; }

.section-heading { margin-bottom: 72px; }
.centered-heading { max-width: 665px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading > p:last-child { margin-bottom: 0; color: var(--muted); }
.centered-heading > p:last-child { margin-right: auto; margin-left: auto; max-width: 560px; }
.process-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 42px; }
.process-step { position: relative; }
.process-step:not(:last-child)::after { position: absolute; top: 21px; left: calc(100% + 10px); width: 22px; height: 1px; background: #b7cfbc; content: ""; }
.step-icon { display: inline-grid; width: 43px; height: 43px; place-items: center; margin-bottom: 29px; border: 1px solid #9bbca4; border-radius: 50%; color: var(--green-dark); font-size: .72rem; font-weight: 700; }
.process-step h3 { margin-bottom: 10px; }
.process-step p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.capabilities { background: var(--paper); }
.split-heading > p { max-width: 410px; margin: 0 0 8px auto; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 19px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.product-card-large .product-image { position: relative; height: 245px; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-copy { padding: 25px 25px 28px; }
.product-kicker { margin-bottom: 10px; color: var(--green-dark); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.product-copy p { margin-bottom: 17px; color: var(--muted); font-size: .9rem; }
.product-footnote { color: #7d8b8a; font-size: .72rem; }
.product-card-simple { min-height: 230px; }
.product-image-simple { height: 180px; overflow: hidden; }
.product-image-simple img { width: 100%; height: 100%; object-fit: cover; }
.inline-dialog-button { padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--green-dark); font-size: .78rem; font-weight: 700; text-align: left; }
.inline-dialog-button span { display: inline-block; margin-left: 4px; color: var(--amber); transition: transform .2s ease; }
.inline-dialog-button:hover span, .inline-dialog-button:focus-visible span { transform: translate(3px, -2px); }
.timeline-card { display: grid; grid-template-rows: 245px 1fr; }
.timeline-art { padding: 22px 24px 18px; background: #e9f0e8; }
.timeline-toolbar { display: flex; align-items: center; gap: 6px; color: #74877d; font-size: .62rem; }
.timeline-toolbar span { display: block; width: 6px; height: 6px; border-radius: 50%; background: #7da887; }
.timeline-toolbar b { margin-left: 11px; color: var(--navy); font-size: .72rem; letter-spacing: .07em; }
.timeline-toolbar small { margin-left: auto; font-size: .62rem; }
.chart-area { display: grid; grid-template-columns: 38px 1fr; gap: 7px; height: 168px; align-items: stretch; margin-top: 17px; }
.chart-y, .chart-x { display: flex; flex-direction: column; justify-content: space-between; color: #84928a; font-size: .57rem; }
.chart-area svg { overflow: visible; width: 100%; height: 100%; }
.chart-grid { fill: none; stroke: #c8d7ca; stroke-dasharray: 3 4; stroke-width: 1; }
.chart-line { fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3; }
.chart-line-one { stroke: var(--green); }
.chart-line-two { stroke: var(--amber); }
.chart-dot-one { fill: var(--green); }
.chart-dot-two { fill: var(--amber); }
.chart-x { flex-direction: row; height: 13px; margin-left: 45px; }
.timeline-card .product-copy { padding-top: 21px; }
.sample-note { margin: 25px 0 0; color: #7c8d85; font-size: .75rem; }
.sample-note span { color: var(--amber); margin-right: 4px; }
.resources-note { display: flex; align-items: center; gap: 15px; max-width: 700px; margin-top: 23px; padding: 13px 15px; border-left: 2px solid var(--amber); background: #f0f5ee; }
.resources-note-label { color: var(--green-dark); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.resources-note p { margin: 0; color: var(--muted); font-size: .78rem; }

.crop-section { background: #edf3ed; }
.crop-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.crop-group { min-height: 275px; padding: 26px; border: 1px solid #d2e0d1; border-radius: var(--radius-md); background: rgba(255,255,255,.72); }
.crop-group-number { display: block; margin-bottom: 35px; color: var(--green); font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.crop-group h3 { margin-bottom: 15px; }
.crop-group ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .88rem; }
.crop-group li::before { display: inline-block; width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: var(--amber); content: ""; vertical-align: 1px; }
.crop-note { margin: 24px 0 0; color: #7c8d85; font-size: .75rem; }
.crop-note-warning { max-width: 900px; padding: 14px 16px; border-left: 2px solid #c57b35; background: rgba(245,173,35,.09); color: #6e6659; }
.crop-note-warning strong { color: #9b5c25; }

.split-heading-light > p { color: rgba(255,255,255,.62); }
.plans-grid { display: grid; max-width: 900px; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.plan-card { display: flex; min-height: 335px; flex-direction: column; padding: 30px; border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius-md); background: rgba(255,255,255,.07); }
.plan-featured { border-color: #6d9f62; background: #edf4e9; color: var(--navy); }
.plan-topline { display: flex; align-items: center; justify-content: space-between; min-height: 24px; margin-bottom: 31px; color: rgba(255,255,255,.65); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.plan-featured .plan-topline { color: var(--green-dark); }
.plan-badge { padding: 5px 8px; border-radius: 999px; background: var(--green-dark); color: var(--white); font-size: .58rem; letter-spacing: .05em; }
.plan-saving { color: var(--amber); }
.plan-card h3 { margin-bottom: 15px; font-size: 1.35rem; }
.plan-price { margin-bottom: 17px; color: rgba(255,255,255,.7); font-size: .82rem; }
.plan-featured .plan-price { color: var(--green-dark); }
.plan-price strong { color: var(--white); font-family: var(--font-display); font-size: 2.4rem; letter-spacing: -.07em; }
.plan-featured .plan-price strong { color: var(--navy); }
.plan-price span { font-size: .72rem; }
.plan-price-custom { color: var(--amber); font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; letter-spacing: -.07em; }
.plan-analogy { min-height: 3.1em; color: var(--amber); font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; letter-spacing: -.04em; line-height: 1.18; }
.plan-featured .plan-analogy { color: var(--navy); }
.plan-card > p:not(.plan-price) { margin-bottom: 25px; color: rgba(255,255,255,.7); font-size: .88rem; }
.plan-featured > p:not(.plan-price) { color: var(--muted); }
.plan-link { display: inline-flex; align-items: center; gap: 10px; margin-top: auto; color: var(--amber); font-size: .82rem; font-weight: 700; }
.plan-featured .plan-link { color: var(--green-dark); }
.plan-disclaimer { max-width: 740px; margin: 27px 0 0; color: rgba(255,255,255,.47); font-size: .72rem; }
.pricing-note { max-width: 700px; margin: 17px 0 0; color: rgba(255,255,255,.55); font-size: .76rem; }

.audience { background: var(--paper); }
.audience-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
.audience-intro h2 { max-width: 450px; }
.audience-intro > p:last-child { max-width: 390px; color: var(--muted); }
.audience-list { border-top: 1px solid var(--line); }
.audience-item { display: grid; grid-template-columns: 55px 1fr; gap: 24px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.audience-mark { color: var(--green); font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.audience-item h3 { margin-bottom: 5px; font-size: 1.1rem; }
.audience-item p { margin-bottom: 0; color: var(--muted); font-size: .88rem; }

.mexico-grid { display: grid; grid-template-columns: 1fr 1.3fr; align-items: center; gap: 100px; }
.context-map { width: 100%; max-width: 390px; margin: 0 auto; overflow: hidden; border: 1px solid #c6d5c4; border-radius: var(--radius-md); background: #dbe8d8; box-shadow: 0 14px 30px rgba(18, 55, 36, .08); }
.context-map img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.mexico-grid h2 { max-width: 510px; }
.mexico-grid > div:last-child > p:not(.eyebrow) { max-width: 570px; color: var(--muted); }
.muted-copy { font-size: .8rem; }
.mexico-grid .text-link { margin-top: 12px; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }
.faq h2 { max-width: 380px; }
.faq-intro { max-width: 325px; color: var(--muted); font-size: .9rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 21px 0; list-style: none; cursor: pointer; font-family: var(--font-display); font-size: .97rem; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { color: var(--green); content: "+"; font-family: var(--font-body); font-size: 1.3rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 680px; margin: -4px 42px 21px 0; color: var(--muted); font-size: .88rem; }

.contact { background: var(--navy); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 110px; }
.contact-copy h2 { max-width: 420px; }
.contact-copy > p:not(.eyebrow) { max-width: 425px; color: rgba(255,255,255,.68); }
.contact-direct { display: flex; align-items: center; gap: 13px; margin-top: 48px; }
.contact-icon { display: grid; width: 37px; height: 37px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--amber); font-size: .86rem; }
.contact-direct small { display: block; margin-bottom: 1px; color: rgba(255,255,255,.46); font-size: .67rem; text-transform: uppercase; letter-spacing: .1em; }
.email-button { padding: 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); background: transparent; color: white; font-size: .9rem; }
.email-button span { display: inline-block; margin-left: 4px; color: var(--amber); transition: transform .2s ease; }
.email-button:hover span, .email-button:focus-visible span { transform: translateX(4px); }
.contact-small { margin-top: 31px; color: rgba(255,255,255,.43) !important; font-size: .74rem !important; }
.contact-form { padding: 33px; border-radius: var(--radius-md); background: #f1f5ef; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: block; margin-bottom: 17px; color: #456052; font-size: .72rem; font-weight: 700; letter-spacing: .02em; }
.contact-form input, .contact-form textarea { display: block; width: 100%; margin-top: 7px; padding: 12px 13px; border: 1px solid #d4ded4; border-radius: 8px; outline: none; background: white; color: var(--ink); font-size: .86rem; font-weight: 400; resize: vertical; transition: border .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(58,151,61,.12); }
.contact-form textarea { min-height: 100px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #a1aca5; }
.button-submit { width: 100%; margin-top: 4px; border: 0; }
.form-status { min-height: 22px; margin: 12px 0 0; color: var(--green-dark); font-size: .75rem; }
.privacy-note { margin: 8px 0 0; color: #7f8d82; font-size: .67rem; line-height: 1.45; }

.technical-dialog { width: min(680px, calc(100% - 34px)); padding: 0; border: 0; border-radius: var(--radius-md); color: var(--ink); box-shadow: 0 25px 80px rgba(6,24,43,.3); }
.technical-dialog::backdrop { background: rgba(5, 20, 36, .68); backdrop-filter: blur(4px); }
.technical-dialog-inner { position: relative; padding: 38px; background: var(--paper); }
.technical-dialog h2 { max-width: 500px; margin: 0 0 18px; }
.technical-dialog p:not(.eyebrow) { color: var(--muted); font-size: .92rem; }
.technical-dialog .dialog-disclaimer { margin-top: 24px; padding: 14px 16px; border-left: 2px solid var(--amber); background: #eef4ea; color: var(--green-dark); }
.dialog-close { position: absolute; top: 17px; right: 20px; width: 34px; height: 34px; border: 0; border-radius: 50%; background: #e3ebe1; color: var(--navy); font-size: 1.45rem; line-height: 1; }
.dialog-close:hover, .dialog-close:focus-visible { background: var(--amber); }

.site-footer { background: #07182d; color: var(--white); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 45px; padding-bottom: 43px; }
.brand-footer .brand-copy small { color: rgba(255,255,255,.45); }
.footer-top > p { margin: 0; color: rgba(255,255,255,.45); font-size: .78rem; }
.footer-actions { display: flex; align-items: center; gap: 19px; }
.linkedin-link { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 700; }
.linkedin-link span { display: grid; width: 21px; height: 21px; place-items: center; border-radius: 4px; background: #4d83b8; color: var(--white); font-family: Arial, sans-serif; font-size: .76rem; font-weight: 700; }
.linkedin-link:hover, .linkedin-link:focus-visible { color: var(--white); }
.footer-link { color: var(--amber); font-size: .78rem; font-weight: 700; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-top: 15px; padding-bottom: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.35); font-size: .67rem; }

:focus-visible { outline: 3px solid rgba(245,173,35,.75); outline-offset: 4px; }

@media (max-width: 950px) {
  .site-nav { gap: 15px; }
  .hero-grid { gap: 38px; }
  .intro-grid, .split-heading, .audience-grid, .faq-grid, .contact-grid { gap: 55px; }
  .mexico-grid { gap: 55px; }
  .process-line { gap: 20px; }
  .process-step:not(:last-child)::after { display: none; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 34px, 600px); }
  .site-header { background: linear-gradient(rgba(7,24,44,.35), transparent); }
  .nav-wrap { min-height: 75px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 68px; right: 17px; left: 17px; display: none; padding: 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(8, 29, 49, .96); box-shadow: 0 20px 30px rgba(0,0,0,.2); }
  .site-nav.is-open { display: grid; gap: 4px; }
  .site-nav > a:not(.button) { padding: 10px 8px; }
  .site-nav .button { margin-top: 8px; }
  .language-switcher { justify-self: start; margin-top: 8px; }
  .translation-notice { top: 91px; right: 17px; width: calc(100% - 34px); }
  .hero, .hero-grid { min-height: 820px; }
  .hero-grid { display: block; padding-top: 152px; padding-bottom: 64px; }
  h1 { font-size: clamp(2.8rem, 13vw, 4.1rem); }
  .hero-lead { font-size: 1rem; }
  .hero-location { margin-top: 42px; }
  .hero-visual { min-height: 220px; margin-top: 52px; }
  .visual-caption { bottom: 20px; left: 20px; right: 20px; }
  .visual-label { top: 20px; left: 20px; }
  .section-pad { padding: 84px 0; }
  .intro-grid, .split-heading, .audience-grid, .faq-grid, .contact-grid, .mexico-grid { display: block; }
  .intro-text { margin-top: 28px; }
  .value-grid, .plans-grid { grid-template-columns: 1fr; margin-top: 46px; }
  .value-card { min-height: 0; }
  .card-number { margin-bottom: 24px; }
  .section-heading { margin-bottom: 45px; }
  .split-heading > p { margin: 25px 0 0; }
  .process-line { grid-template-columns: 1fr 1fr; gap: 35px 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .crop-groups { grid-template-columns: 1fr; }
  .product-card-large .product-image, .timeline-card { min-height: 210px; }
  .timeline-card { grid-template-rows: 245px 1fr; }
  .plan-card { min-height: 0; }
  .audience-list { margin-top: 45px; }
  .context-map { margin-bottom: 52px; }
  .faq-list { margin-top: 47px; }
  .contact-form { margin-top: 48px; padding: 23px 19px; }
  .footer-top, .footer-bottom { display: grid; }
  .footer-top { gap: 17px; padding: 35px 0; }
  .footer-actions { justify-content: flex-start; }
  .footer-bottom { gap: 10px; padding: 15px 0 20px; }
}

@media (max-width: 430px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .process-line { grid-template-columns: 1fr; }
  .process-step { display: grid; grid-template-columns: 43px 1fr; gap: 0 17px; }
  .process-step .step-icon { grid-row: span 2; }
  .process-step p { grid-column: 2; }
}
