@layer reset, base, layout, components, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  body, h1, h2, h3, p, figure { margin: 0; }
  img, svg { display: block; max-width: 100%; }
  button, input, textarea { font: inherit; }
}

@layer components {
  .capabilities-intro { padding-bottom: 54px; }
  .capabilities-intro .hero-lead, .capabilities-intro .section-lead { max-width: 760px; }
  .capabilities-scope { max-width: 820px; margin-top: 24px; padding: 20px 24px; border-left: 3px solid var(--accent); background: var(--cream); font-size: 14px; }
  .capabilities-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 64px; padding-bottom: 70px; align-items: start; }
  .capabilities-index { position: sticky; top: 24px; max-height: calc(100vh - 48px); overflow-y: auto; padding: 12px 12px 16px 0; }
  .capabilities-index nav { display: block; }
  .capabilities-index ol { list-style: none; margin: 0; padding: 0; }
  .capabilities-index li + li { border-top: 1px solid var(--line); }
  .capabilities-index a { display: block; padding: 10px 5px; font-size: 13px; line-height: 1.4; }
  .capabilities-content { min-width: 0; }
  .capability-section { padding: 16px 0 54px; }
  .capability-section + .capability-section { border-top: 1px solid var(--line); padding-top: 42px; }
  .capability-section h2 { font-size: clamp(1.8rem, 3vw, 2.35rem); }
  .capability-section header > p:last-child { margin-top: 14px; }
  .capability-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 30px; margin-top: 30px; }
  .capability-grid article { padding-top: 18px; border-top: 1px solid var(--line); }
  .capability-grid h3 { font-size: 17px; margin-bottom: 10px; }
  .capability-grid p { font-size: 14px; line-height: 1.7; }
  .capabilities-back { display: inline-block; margin-top: 24px; padding-block: 7px; font-size: 12px; }
}
@layer responsive {
  @media (max-width: 1050px) { .capabilities-layout { grid-template-columns: 200px minmax(0, 1fr); gap: 35px; } }
  @media (max-width: 820px) {
    .capabilities-layout { grid-template-columns: 1fr; gap: 36px; }
    .capabilities-index { position: static; max-height: none; overflow: visible; padding: 0; }
    .capabilities-index ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
    .capabilities-index li { border-top: 1px solid var(--line); }
    .capabilities-index a { min-height: 44px; }
    .capabilities-intro { padding-bottom: 32px; }
  }
  @media (max-width: 580px) {
    .capabilities-page h1 { font-size: 2.9rem; }
    .capability-grid { grid-template-columns: 1fr; gap: 20px; }
    .capabilities-scope { padding: 17px; }
    .capabilities-index a { font-size: 12px; }
  }
}
@layer base {
  :root {
    --ink: #183d33; --ink-soft: #53665d; --paper: #faf9f5; --white: #fff;
    --accent: #b84625; --accent-hover: #973a20; --line: #dcded4;
    --sage: #eaf0e3; --cream: #f2eee2; --peach: #f1ded0;
    --radius: 16px; --container: 1160px; --font: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }
  html { scroll-behavior: smooth; scroll-padding-top: 28px; }
  body { background: var(--paper); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.6; }
  a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 5px; }
  a:hover { text-decoration-thickness: 2px; }
  :focus-visible { outline: 3px solid var(--accent); outline-offset: 5px; }
  ::selection { color: var(--ink); background: #f0c6ad; }
  h1, h2, h3 { font-weight: 600; text-wrap: balance; }
  h1 { font-size: clamp(3.35rem, 5.6vw, 4.95rem); line-height: 1.02; letter-spacing: -.058em; }
  h1 em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.055em; }
  h2 { font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.13; letter-spacing: -.045em; }
  h3 { font-size: 1.35rem; line-height: 1.25; letter-spacing: -.025em; }
  p { color: var(--ink-soft); }
  section[id] { scroll-margin-top: 30px; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
}
@layer layout {
  .container { width: min(var(--container), calc(100% - 64px)); margin-inline: auto; }
  .section { padding-block: 96px; }
  .hero { display: grid; grid-template-columns: 1.03fr 1fr; gap: 64px; align-items: center; padding-block: 76px 68px; }
  .header-inner, .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
  .section-heading { display: flex; align-items: end; justify-content: space-between; gap: 56px; margin-bottom: 40px; }
  .section-heading > p { max-width: 355px; flex-shrink: 0; }
  .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .operation-section, .faq-section { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
  .price-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: 90px; align-items: center; }
  .contact-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 110px; align-items: center; }
}
@layer components {
  .skip-link { position: fixed; top: -90px; left: 20px; z-index: 20; background: var(--ink); color: white; padding: 12px 24px; }
  .skip-link:focus { top: 12px; }
  .preview-bar { display: flex; justify-content: center; align-items: center; gap: 8px; background: #edece5; color: #4c5c51; min-height: 29px; padding: 4px 16px; text-align: center; font-size: 11px; letter-spacing: .035em; }
  .preview-dot { width: 5px; height: 5px; border-radius: 50%; background: #9a5a26; }
  .site-header { border-bottom: 1px solid var(--line); }
  .header-inner { min-height: 94px; }
  .brand { display: inline-flex; align-items: center; color: var(--ink); font-size: 30px; letter-spacing: -1.5px; line-height: 1; font-weight: 750; text-decoration: none; white-space: nowrap; }
  .brand-period { color: var(--accent); }
  .brand-mark { width: 25px; height: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-right: 11px; }
  .brand-mark i { background: var(--ink); border-radius: 2px; }
  .brand-mark i:last-child { background: var(--accent); border-radius: 50%; }
  nav { display: flex; flex-wrap: wrap; gap: 28px; }
  nav a { font-size: 14px; font-weight: 550; text-decoration: none; }
  nav a:hover, nav a[aria-current] { color: var(--accent); text-decoration: underline; }
  .button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 52px; padding: 13px 22px; border: 1px solid transparent; border-radius: 7px; background: var(--accent); color: white; text-decoration: none; font-size: 14px; font-weight: 600; line-height: 1.4; text-align: center; }
  .button:hover { background: var(--accent-hover); }
  .button span, .text-link span { font-size: 20px; font-weight: 400; line-height: 1; }
  .button-small { min-height: 43px; padding: 10px 17px; }
  .button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 30px; }
  .text-link { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; text-decoration: underline; }
  .eyebrow { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 10px; font-weight: 650; letter-spacing: .12em; line-height: 1.6; margin-bottom: 20px; }
  .small-line { width: 23px; height: 2px; background: var(--accent); flex-shrink: 0; }
  .hero-lead { font-size: 17px; max-width: 460px; margin-top: 26px; line-height: 1.7; }
  .hero-footnote { font-size: 11px; margin-top: 25px; }
  .check { font-size: 15px; margin-right: 4px; }
  .hero-figure { min-width: 0; padding-top: 22px; }
  figcaption { font-size: 10px; color: #687568; margin-top: 15px; text-align: center; }
  .commerce-board { background: #efeee5; border: 1px solid #e3e2d6; padding: 26px; border-radius: 24px; position: relative; }
  .board-heading { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-bottom: 28px; }
  .mini-label { display: block; font-size: 9px; font-weight: 650; letter-spacing: .1em; line-height: 1.4; }
  .board-status { display: inline-flex; align-items: center; gap: 5px; background: #e0e7d9; border-radius: 20px; color: #35543f; font-size: 10px; padding: 4px 9px; }
  .board-status > span { font-size: 7px; }
  .channel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .channel-card { min-width: 0; padding: 20px 16px 14px; background: var(--white); border: 1px solid #e2e3d7; border-radius: 12px; }
  .channel-card h3 { font-size: 16px; margin-top: 8px; }
  .channel-card .mini-label { font-size: 7px; margin-top: 14px; }
  .channel-card > p { border-top: 1px solid #e8e9e0; font-size: 9px; padding-top: 10px; }
  .channel-icon { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 9px; background: var(--sage); }
  .channel-icon svg { width: 19px; height: 19px; }
  .channel-local .channel-icon { background: var(--peach); }
  .mini-products { height: 96px; display: flex; align-items: center; justify-content: center; gap: 8px; }
  .product-shape { position: relative; display: block; width: 40px; height: 54px; background: #eeeee5; border-radius: 6px; }
  .product-pot i { position: absolute; width: 15px; height: 15px; background: #c78a68; bottom: 10px; left: 13px; clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%); }
  .product-pot::before, .product-pot::after { content: ""; position: absolute; width: 11px; height: 18px; background: #658464; top: 10px; left: 11px; border-radius: 70% 0 70% 0; transform: rotate(-25deg); }
  .product-pot::after { left: 20px; top: 8px; transform: rotate(30deg); }
  .product-box { background: #e6eadf; }
  .product-box i { position: absolute; inset: 17px 9px 12px; background: #cda479; border: 1px solid #b58c67; }
  .product-box i::after { content: ""; position: absolute; left: 8px; top: 0; height: 100%; border-left: 3px solid #e1c4a6; }
  .product-bottle { background: #f1e4d9; }
  .product-bottle i { position: absolute; left: 14px; bottom: 10px; width: 13px; height: 27px; border-radius: 4px 4px 3px 3px; background: #8c9d7a; }
  .product-bottle i::after { content: ""; position: absolute; left: 3px; top: -5px; width: 7px; height: 6px; background: #526a4f; border-radius: 2px 2px 0 0; }
  .counter-illustration { position: relative; height: 96px; padding-top: 17px; }
  .counter-screen { margin: 0 auto; width: 73px; height: 45px; border: 5px solid #355747; background: #e4eadc; border-radius: 5px; padding: 5px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
  .counter-screen i { background: #b5c5a4; border-radius: 2px; }
  .counter-screen i:last-child { background: #d6a17e; }
  .counter-stand { width: 12px; height: 8px; background: #355747; margin-inline: auto; }
  .counter-desk { width: 91px; height: 4px; border-radius: 2px; background: #d0b294; margin-inline: auto; }
  .connector-lines { position: relative; height: 28px; margin: 0 23%; border: 1px solid #a6b1a2; border-top: 0; border-radius: 0 0 10px 10px; }
  .connector-lines::after { content: ""; position: absolute; height: 14px; width: 1px; background: #a6b1a2; left: 50%; bottom: -14px; }
  .shared-platform { margin-top: 13px; border-radius: 11px; padding: 17px 14px; display: flex; gap: 11px; align-items: center; background: var(--ink); color: white; }
  .shared-symbol { display: grid; place-items: center; flex-shrink: 0; width: 35px; height: 35px; background: #f6f5eb; color: var(--ink); font-size: 28px; font-weight: 750; border-radius: 7px; line-height: 1; }
  .shared-platform strong { display: block; font-size: 12px; font-weight: 550; }
  .shared-platform div > span { display: block; font-size: 10px; color: #cbd7c8; margin-top: 2px; }
  .shared-arrow { font-size: 25px; margin-left: auto; color: #cdd8c6; }
  .board-bottom { display: flex; justify-content: center; gap: 18px; margin-top: 20px; }
  .board-bottom > span { display: inline-flex; gap: 5px; align-items: center; font-size: 9px; }
  .board-bottom svg { width: 13px; height: 13px; }
  .value-strip { border-block: 1px solid var(--line); }
  .value-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-block: 23px; }
  .value-strip-inner > span { font-size: 12px; font-weight: 550; }
  .value-strip-inner > span:first-child { font-size: 11px; font-weight: 400; color: var(--ink-soft); padding-right: 26px; border-right: 1px solid var(--line); }
  .value-strip-inner strong { color: var(--ink); font-weight: 550; }
  .feature-card { position: relative; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
  .icon-box { width: 43px; height: 43px; background: var(--sage); border-radius: 11px; display: grid; place-items: center; margin-bottom: 29px; }
  .icon-box svg { width: 24px; height: 24px; }
  .card-number { position: absolute; top: 35px; right: 28px; color: #687668; font-size: 11px; }
  .feature-card h3 { margin-bottom: 17px; }
  .feature-card p { font-size: 14px; line-height: 1.75; }
  .feature-tag { display: block; font-size: 9px; font-weight: 650; letter-spacing: .075em; margin-top: 27px; }
  .sector-band { display: grid; grid-template-columns: .85fr 1.15fr; border-radius: 20px; background: var(--sage); overflow: hidden; }
  .sector-copy { padding: 53px 58px 53px 30px; }
  .sector-copy > p:not(.eyebrow) { margin-block: 21px; max-width: 455px; font-size: 15px; }
  .sector-illustration { position: relative; min-height: 355px; align-self: stretch; background: #e3e9d9; }
  .plant-label { position: absolute; font-size: 9px; letter-spacing: .12em; font-weight: 600; left: 30px; bottom: 29px; }
  .plant { position: absolute; width: 112px; height: 207px; bottom: 85px; left: 23%; }
  .plant::before { content: ""; position: absolute; bottom: 51px; left: 56px; height: 120px; border-left: 3px solid #4d7251; }
  .plant b { position: absolute; bottom: 0; left: 17px; width: 81px; height: 67px; background: #c78c6a; clip-path: polygon(0 0, 100% 0, 82% 100%, 18% 100%); }
  .plant b::before { content: ""; position: absolute; top: 8px; left: 0; width: 100%; height: 2px; background: #b77c5d; }
  .plant i { position: absolute; width: 45px; height: 65px; background: #688666; border-radius: 70% 0 70% 0; }
  .plant i:nth-child(1) { top: 18px; left: 14px; transform: rotate(-55deg); }
  .plant i:nth-child(2) { top: 47px; left: 56px; transform: rotate(15deg); background: #3b6550; }
  .plant i:nth-child(3) { top: 82px; left: 10px; transform: rotate(-58deg); background: #859875; }
  .plant i:nth-child(4) { top: -8px; left: 57px; transform: rotate(12deg); background: #4e7555; }
  .plant-two { left: 51%; transform: scale(.66); transform-origin: bottom center; bottom: 73px; }
  .plant-two b { background: #dfa888; }
  .plant-two i { background: #829673; }
  .section-lead { font-size: 16px; margin-top: 24px; max-width: 445px; }
  .operation-list article { display: flex; gap: 19px; padding-block: 22px; border-bottom: 1px solid var(--line); }
  .operation-list article:first-child { padding-top: 0; }
  .operation-list article:last-child { border-bottom: 0; padding-bottom: 0; }
  .operation-list h3 { font-size: 18px; margin-bottom: 9px; }
  .operation-list p { font-size: 14px; }
  #quota .section-lead + .operation-list { margin-top: 28px; }
  #posada-en-marxa .button { margin-top: 24px; }
  .operation-icon { width: 25px; flex-shrink: 0; margin-top: 2px; }
  .price-section { background: var(--cream); }
  .included-list { list-style: none; padding: 0; margin: 29px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 21px; }
  .included-list li { position: relative; padding-left: 22px; font-size: 13px; line-height: 1.5; }
  .included-list li::before { content: "✓"; position: absolute; left: 0; color: #426842; }
  .price-card { padding: 36px; border: 1px solid #d9dbce; border-radius: var(--radius); background: var(--paper); }
  .price { display: flex; align-items: baseline; gap: 8px; margin-block: 13px 18px; color: var(--ink); }
  .price strong { font-size: 78px; line-height: 1.1; font-weight: 550; letter-spacing: -.065em; }
  .price strong > span { font-size: 37px; font-weight: 400; margin-left: 4px; }
  .price > span { font-size: 14px; }
  .price-card h3 { font-size: 22px; margin-bottom: 15px; }
  .price-card > p:not(.price):not(.review-note) { font-size: 14px; }
  .price-card .button { width: 100%; margin-top: 23px; }
  .review-note { font-size: 10px; line-height: 1.6; margin-top: 18px; color: #735a47; }
  .faq-list details { border-bottom: 1px solid var(--line); }
  .faq-list details:first-child { border-top: 1px solid var(--line); }
  .faq-list summary { cursor: pointer; list-style: none; font-size: 14px; font-weight: 550; padding: 21px 29px 21px 0; position: relative; }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary::after { content: "+"; position: absolute; right: 0; top: 17px; font-size: 23px; font-weight: 400; }
  .faq-list details[open] summary::after { content: "−"; }
  .faq-list details p { font-size: 14px; padding: 0 18px 23px 0; }
  .contact-section { background: var(--ink); color: var(--paper); }
  .contact-section .eyebrow { color: #c8d6b9; }
  .contact-section p { color: #d1ddcf; }
  .contact-section h2 + p { font-size: 15px; max-width: 445px; margin-top: 24px; }
  .contact-action { padding-left: 47px; border-left: 1px solid #55725d; }
  .contact-prompt { font-size: 21px; line-height: 1.5; }
  .button-light { margin-top: 24px; background: #f5f4ea; color: var(--ink); }
  .button-light:hover { background: #e0e8d2; }
  .contact-note { font-size: 10px; max-width: 295px; margin-top: 17px; }
  .site-footer { padding-block: 36px 24px; }
  .footer-inner .brand { font-size: 26px; }
  .footer-inner p, .footer-inner > a:last-child { font-size: 11px; }
  .footer-note { font-size: 9px; color: #687468; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
  .breadcrumb { display: inline-flex; gap: 10px; color: var(--ink-soft); font-size: 11px; text-decoration: none; margin-bottom: 22px; }
  .sector-hero { padding-top: 49px; }
  .nursery-board { border-radius: 24px; padding: 25px; background: #e9eddf; border: 1px solid #dbe1d1; }
  .nursery-board .board-heading > svg { width: 23px; height: 23px; }
  .nursery-product { padding: 23px 20px; background: #fafaf5; border: 1px solid #dae1ce; border-radius: 12px; display: flex; gap: 23px; align-items: center; }
  .nursery-product strong { display: block; font-size: 17px; line-height: 1.4; margin: 8px 0; }
  .nursery-product div > span:last-child { display: block; font-size: 11px; color: var(--ink-soft); }
  .small-plant { position: relative; width: 82px; min-width: 70px; height: 108px; background: #e9edde; border-radius: 9px; }
  .small-plant b { position: absolute; bottom: 13px; left: 26px; width: 32px; height: 32px; background: #c08361; clip-path: polygon(0 0,100% 0,80% 100%,20% 100%); }
  .small-plant::before { content: ""; position: absolute; height: 42px; border-left: 2px solid #446c4d; left: 42px; top: 20px; }
  .small-plant i { position: absolute; width: 20px; height: 31px; background: #547a51; top: 28px; left: 22px; border-radius: 70% 0 70% 0; transform: rotate(-60deg); }
  .small-plant i:nth-child(2) { top: 15px; left: 41px; transform: rotate(8deg); background: #81966c; }
  .small-plant i:nth-child(3) { top: 40px; left: 40px; transform: rotate(25deg); }
  .nursery-divider { display: flex; align-items: center; gap: 10px; padding: 15px 7px; font-size: 8px; font-weight: 600; letter-spacing: .08em; }
  .nursery-divider > span:first-child { font-size: 19px; }
  .customer-strip { display: flex; align-items: center; gap: 13px; padding: 16px; border-radius: 10px; background: var(--ink); color: white; }
  .customer-strip > svg { width: 24px; height: 24px; }
  .customer-strip strong { display: block; font-size: 12px; }
  .customer-strip div > span { color: #d5dfd0; display: block; font-size: 10px; margin-top: 3px; }
  .delivery-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1.15fr; align-items: center; gap: 7px; margin-top: 18px; }
  .delivery-flow > div { display: flex; flex-direction: column; align-items: center; padding: 15px 5px; background: #f8f8f0; border-radius: 8px; border: 1px solid #dbe0cf; }
  .delivery-flow > div > span { font-size: 6px; letter-spacing: .04em; }
  .delivery-flow > div > svg { width: 24px; height: 24px; margin-block: 12px 8px; }
  .delivery-flow strong { font-size: 10px; font-weight: 550; }
  .delivery-flow .delivery-final { background: #e8ccb8; border-color: #dec0a9; }
  .flow-plus, .flow-equals { font-size: 17px; }
  .workflow-section { background: var(--cream); }
  .workflow { display: grid; grid-template-columns: repeat(4,1fr); padding: 0; list-style: none; margin: 48px 0 35px; }
  .workflow li { padding-right: 25px; }
  .workflow li + li { padding-left: 25px; border-left: 1px solid #d4d6c8; }
  .step-number { width: 42px; height: 42px; display: grid; place-items: center; background: #e1e5d5; border-radius: 50%; font-size: 12px; margin-bottom: 23px; }
  .workflow h3 { font-size: 17px; margin-bottom: 12px; }
  .workflow p { font-size: 13px; }
  .sector-price { display: grid; grid-template-columns: 1.4fr 1fr; align-items: center; gap: 75px; padding: 45px 55px; border: 1px solid var(--line); border-radius: 17px; background: #f1f3e9; }
  .sector-price .text-link { margin-top: 24px; }
  .sector-price > div:last-child { border-left: 1px solid #d2d9c6; padding-left: 40px; }
  .sector-price .review-note { max-width: 260px; }
}
@layer components {
  .home-page .hero-regulation { margin-top: 18px; font-size: 14px; }
  .home-page .hero-regulation strong { color: var(--ink); }
  .home-page .channel-professional { grid-column: 1 / -1; display: flex; gap: 14px; align-items: center; }
  .home-page .channel-professional .channel-icon { flex-shrink: 0; }
  .home-page .channel-professional .mini-label { margin-top: 0; }
  .home-page .channel-professional p { font-size: 11px; margin-top: 8px; }
  .home-page .home-connector { text-align: center; font-size: 26px; line-height: 1; padding-top: 12px; }
  .home-page .shared-platform { display: block; text-align: center; margin-top: 8px; }
  .home-page .shared-platform .home-platform-name { font-size: 27px; font-weight: 650; letter-spacing: .035em; }
  .home-page .shared-platform p { color: #e2eadf; font-size: 12px; margin-top: 7px; }
  .home-page .shared-platform .home-platform-data { font-size: 11px; }
  .home-page .board-bottom { flex-wrap: wrap; gap: 8px 16px; }
  .home-page .operation-list p + p { margin-top: 14px; }
  .home-page .home-includes { padding-top: 0; }
  .home-page .home-price-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
  .home-page .home-price-layout h2 { font-size: 28px; }
  .home-page .home-price-layout p + p,
  .home-page .home-price-layout h2 + p,
  .home-page .home-setup h3 + p { margin-top: 20px; }
  .home-page .home-setup .button { margin-top: 26px; }
}
@layer responsive {
  @media (min-width: 1400px) { .hero { gap: 70px; } }
  @media (max-width: 1050px) {
    .hero { gap: 30px; } h1 { font-size: 4rem; }
    .hero-copy .eyebrow { font-size: 9px; } .button-row { gap: 15px; }
    .hero-copy .button { font-size: 12px; padding-inline: 14px; }
    .hero-copy .text-link { font-size: 12px; }
    .commerce-board { padding: 20px; } .channel-card { padding: 15px 10px 12px; }
    .channel-card h3 { font-size: 14px; } .board-bottom { gap: 10px; }
    .operation-section, .faq-section, .price-layout, .contact-layout { gap: 55px; }
    .section-heading { gap: 35px; } .section-heading > p { max-width: 310px; }
    .sector-copy { padding: 40px 35px; } .feature-card { padding: 23px; }
    .feature-card h3 { font-size: 21px; }
    .sector-price { gap: 45px; padding: 40px; }
  }
  @media (max-width: 820px) {
    .home-page .home-price-layout { grid-template-columns: 1fr; gap: 35px; }
    .container { width: calc(100% - 40px); } .header-inner { gap: 20px; min-height: 85px; }
    nav { gap: 16px; } nav a { font-size: 12px; } .brand { font-size: 27px; }
    .header-inner .button { font-size: 12px; gap: 10px; padding-inline: 13px; }
    .hero { grid-template-columns: 1fr; gap: 28px; padding-block: 48px; }
    h1 { font-size: clamp(3.5rem, 8.5vw, 4.7rem); } .desktop-break { display: none; }
    .hero-copy { max-width: 620px; } .hero-lead { max-width: 540px; }
    .hero-figure { max-width: 540px; width: 100%; justify-self: center; padding-top: 0; }
    .hero-copy .button, .hero-copy .text-link { font-size: 14px; }
    .commerce-board, .nursery-board { padding: 25px; }
    .channel-card { padding: 20px 16px 14px; } .channel-card h3 { font-size: 17px; }
    .value-strip-inner { flex-wrap: wrap; justify-content: flex-start; gap: 15px 30px; }
    .value-strip-inner > span:first-child { width: 100%; border: 0; padding: 0; }
    .value-strip-inner > span:first-child br { display: none; }
    .section { padding-block: 65px; } .section-heading { display: block; }
    .section-heading > p { max-width: 550px; margin-top: 22px; }
    .feature-grid { gap: 13px; } .feature-card { padding: 21px 17px; }
    .feature-card h3 { font-size: 19px; } .feature-card p { font-size: 13px; }
    .feature-tag { font-size: 8px; } .card-number { right: 17px; top: 26px; }
    .sector-band { grid-template-columns: .7fr 1fr; } .sector-copy { padding: 35px 25px; }
    .sector-copy h2 { font-size: 32px; } .plant-one { left: 9%; } .plant-two { left: 42%; }
    .operation-section, .faq-section, .price-layout, .contact-layout { gap: 35px; }
    .price-card { padding: 26px; } .included-list { grid-template-columns: 1fr; gap: 10px; }
    .contact-action { padding-left: 25px; } .contact-prompt { font-size: 18px; }
    .button-light { font-size: 13px; padding-inline: 15px; gap: 10px; }
    .workflow { grid-template-columns: 1fr 1fr; gap: 30px 0; }
    .workflow li:nth-child(3) { padding-left: 0; border-left: 0; }
    .sector-price { padding: 30px; gap: 30px; } .sector-price > div:last-child { padding-left: 25px; }
    .footer-inner { flex-wrap: wrap; gap: 20px; }
  }
  @media (max-width: 580px) {
    .header-inner { display: grid; grid-template-columns: 1fr auto; gap: 19px 15px; padding-block: 21px 16px; }
    .brand { font-size: 28px; } .header-inner nav { grid-row: 2; grid-column: 1 / -1; justify-content: space-between; gap: 10px; }
    nav a { font-size: 13px; } .header-inner > .button { grid-column: 2; grid-row: 1; }
    .hero { padding-block: 39px 37px; } h1 { font-size: clamp(3.2rem, 12vw, 4.2rem); }
    .hero-copy .eyebrow { font-size: 8px; letter-spacing: .09em; gap: 8px; }
    .hero-lead { font-size: 16px; margin-top: 22px; } .hero-footnote { font-size: 10px; }
    .button-row { gap: 20px; } .hero-copy .button { padding-inline: 16px; font-size: 13px; }
    .hero-copy .text-link { font-size: 13px; } .commerce-board, .nursery-board { padding: 17px; border-radius: 18px; }
    .board-heading { margin-bottom: 20px; } .channel-grid { gap: 10px; }
    .channel-card { padding: 14px 10px 12px; } .channel-card h3 { font-size: 14px; }
    .channel-card .mini-label { font-size: 6px; letter-spacing: .035em; }
    .channel-card > p { font-size: 8px; } .mini-products { gap: 5px; }
    .product-shape { width: 32px; } .product-pot i { left: 9px; }
    .product-pot::before { left: 8px; } .product-pot::after { left: 16px; }
    .product-box i { left: 6px; right: 6px; } .product-bottle i { left: 10px; }
    .shared-platform { padding: 14px 10px; gap: 9px; } .shared-platform strong { font-size: 11px; }
    .shared-platform div > span { font-size: 9px; } .shared-arrow { font-size: 22px; }
    .board-bottom { gap: 10px; } .board-bottom > span { font-size: 8px; }
    figcaption { font-size: 9px; } .value-strip-inner { gap: 11px 22px; }
    .value-strip-inner > span { font-size: 11px; } .section { padding-block: 53px; }
    .eyebrow { font-size: 9px; margin-bottom: 15px; } h2 { font-size: 32px; }
    .section-heading { margin-bottom: 29px; } .section-heading > p { font-size: 15px; }
    .feature-grid, .operation-section, .faq-section, .price-layout, .contact-layout { grid-template-columns: 1fr; }
    .feature-grid { gap: 16px; } .feature-card { padding: 26px; }
    .feature-card h3 { font-size: 23px; } .feature-card p { font-size: 14px; }
    .feature-card h3 br { display: none; } .icon-box { margin-bottom: 21px; }
    .card-number { top: 32px; right: 27px; } .feature-tag { font-size: 9px; margin-top: 19px; }
    .sector-band { grid-template-columns: 1fr; } .sector-illustration { min-height: 260px; }
    .sector-copy { padding: 32px 26px; } .plant-one { left: 29%; bottom: 49px; transform: scale(.9); transform-origin: bottom; }
    .plant-two { left: 57%; bottom: 38px; } .plant-label { left: 22px; bottom: 20px; font-size: 8px; }
    .sector-copy h2 { font-size: 34px; } .sector-copy .text-link { font-size: 13px; }
    .operation-section, .faq-section, .price-layout { gap: 30px; }
    .operation-list article { gap: 17px; } .price-card { padding: 30px; }
    .included-list { grid-template-columns: 1fr; gap: 13px; }
    .contact-action { border-left: 0; border-top: 1px solid #55725d; padding: 25px 0 0; }
    .contact-layout { gap: 27px; } .contact-prompt { font-size: 20px; }
    .contact-prompt br { display: none; } .button-light { font-size: 14px; }
    .contact-section h2 { font-size: 35px; }
    .footer-inner { gap: 20px; } .footer-inner p { order: 3; width: 100%; }
    .footer-note { margin-top: 18px; } .site-footer { padding-top: 28px; }
    .nursery-product { padding: 18px 14px; gap: 15px; }
    .nursery-product strong { font-size: 16px; } .delivery-flow { gap: 5px; }
    .delivery-flow > div > span { font-size: 6px; } .delivery-flow strong { font-size: 9px; }
    .workflow { gap: 30px 0; margin-top: 35px; } .workflow li { padding-right: 18px; }
    .workflow li + li { padding-left: 18px; } .workflow li:nth-child(3) { padding-left: 0; }
    .workflow h3 { font-size: 16px; } .workflow p { font-size: 12px; }
    .sector-price { grid-template-columns: 1fr; gap: 26px; padding: 30px 26px; }
    .sector-price > div:last-child { border-left: 0; border-top: 1px solid #d2d9c6; padding: 19px 0 0; }
    .sector-price .review-note { max-width: none; } .sector-price .price { margin-top: 0; }
  }
  @media (max-width: 350px) {
    .container { width: calc(100% - 28px); } h1 { font-size: 3.15rem; }
    .brand { font-size: 25px; } .brand-mark { width: 22px; height: 22px; margin-right: 8px; }
    .header-inner > .button { font-size: 11px; padding-inline: 11px; }
    .hero-copy .eyebrow { font-size: 7px; } .hero-copy .button { width: 100%; }
    .commerce-board, .nursery-board { padding: 13px; } .channel-card h3 { font-size: 13px; }
    .board-bottom { gap: 7px; } .board-bottom > span { font-size: 7px; }
    .mini-products { gap: 3px; } .product-shape { width: 29px; }
  }
}

@layer components {
  .sector-page .sector-regulatory { margin-top: 18px; font-size: 14px; color: var(--ink); }
  .sector-page .sector-experience { display: grid; grid-template-columns: 1.25fr 1fr; gap: 80px; align-items: center; border-bottom: 1px solid var(--line); }
  .sector-page .sector-experience .section-lead { max-width: none; }
  .sector-page .sector-experience p + p { margin-top: 20px; }
  .sector-page .sector-experience-note { border-left: 1px solid var(--line); padding-left: 42px; }
  .sector-page .sector-years { font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1.1; letter-spacing: -.055em; color: var(--ink); }
  .sector-page .sector-experience-areas { font-size: 12px; }
  .sector-page .feature-card p + p, .sector-page .operation-list p + p { margin-top: 14px; }
  .sector-page .sector-billing { background: var(--cream); }
  .sector-page .sector-price { margin-top: 70px; align-items: start; }
  .sector-page .sector-price p + p, .sector-page .sector-price h3 + p { margin-top: 18px; }
  .sector-page .sector-price .text-link { margin-top: 24px; }
  .sector-page .contact-layout > div:first-child > p:not(.eyebrow) { margin-top: 20px; max-width: 445px; font-size: 15px; }
}
@layer responsive {
  @media (max-width: 820px) {
    .sector-page .sector-experience { grid-template-columns: 1fr; gap: 32px; }
    .sector-page .sector-experience-note { padding: 24px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  }
  @media (max-width: 580px) {
    .sector-page .sector-price { margin-top: 53px; }
  }
}

@layer components {
  .includes-page .includes-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; padding-bottom: 48px; }
  .includes-page .includes-intro-copy, .includes-page .includes-diagram { min-width: 0; }
  .includes-page .includes-diagram { width: 100%; max-width: 540px; justify-self: center; }
  .includes-page .includes-diagram-core { border-radius: 12px; background: var(--ink); color: var(--paper); padding: 18px; text-align: center; }
  .includes-page .includes-diagram-core strong { font-size: 27px; letter-spacing: .035em; }
  .includes-page .includes-diagram-core p { color: #e2eadf; font-size: 12px; margin-top: 3px; }
  .includes-page .includes-diagram-flow { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 14px; }
  .includes-page .includes-diagram-flow li { position: relative; display: flex; align-items: center; gap: 14px; padding: 13px 16px; border: 1px solid #dbe1d1; border-radius: 11px; background: var(--paper); }
  .includes-page .includes-diagram-flow li::before { content: ""; position: absolute; left: 34px; top: -15px; height: 14px; border-left: 1px solid #8ca187; }
  .includes-page .includes-diagram-flow strong { font-size: 16px; font-weight: 600; }
  .includes-page .includes-diagram-flow p { font-size: 11px; margin-top: 2px; }
  .includes-page .includes-diagram-icon { flex: 0 0 36px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 9px; background: var(--sage); }
  .includes-page .includes-diagram-icon svg { width: 21px; height: 21px; }
  .includes-page .includes-diagram-flow li:last-child .includes-diagram-icon { background: var(--peach); }
  .includes-page .includes-diagram-fiscal { text-align: center; font-size: 11px; padding-top: 14px; color: var(--ink); }
  .includes-page .includes-diagram-service-block { border-top: 1px solid #d2d9c6; padding-top: 18px; margin-top: 18px; }
  .includes-page .includes-diagram-service-block .mini-label { color: var(--ink); }
  .includes-page .includes-diagram-services { list-style: none; padding: 0; margin: 12px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 14px; }
  .includes-page .includes-diagram-services li { position: relative; padding-left: 15px; font-size: 11px; color: var(--ink-soft); }
  .includes-page .includes-diagram-services li::before { content: "✓"; position: absolute; left: 0; color: var(--ink); }
  .includes-page .includes-intro .hero-lead { max-width: 760px; }
  .includes-page .includes-sales { padding-top: 48px; }
  .includes-page .includes-sales .mini-label { margin-bottom: 14px; color: var(--ink-soft); }
  .includes-page .includes-quota-layout { align-items: start; gap: 40px 64px; }
  .includes-page .includes-quota-layout h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
  .includes-page .includes-quota-notes { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 24px; max-width: 900px; }
  .includes-page .includes-quota-notes p { font-size: 14px; }
  .includes-page .includes-quota-notes p + p { margin-top: 18px; }
  .includes-page #posada-en-marxa .section-lead:first-child { margin-top: 0; }
  .includes-page .contact-layout > div:first-child > p:not(.eyebrow) { margin-top: 20px; max-width: 445px; font-size: 15px; }
}
@layer responsive {
  @media (min-width: 821px) and (max-width: 1050px) {
    .includes-page .includes-intro { gap: 32px; }
  }
  @media (max-width: 820px) {
    .includes-page .includes-quota-layout { grid-template-columns: 1fr; gap: 30px; }
    .includes-page .includes-intro { grid-template-columns: 1fr; gap: 36px; padding-bottom: 32px; }
    .includes-page .includes-sales { padding-top: 32px; }
  }
}
