:root {
  --green-950: #073b24;
  --green-900: #0a4a2b;
  --green-800: #0f5a34;
  --green-700: #176c3a;
  --green-500: #2f8f45;
  --lime: #b7ff4a;
  --red: #c41219;
  --red-dark: #941014;
  --brown: #5a2a0d;
  --brown-2: #7a3a12;
  --cream: #fff8ec;
  --cream-2: #f8ecd8;
  --paper: #fffdf8;
  --ink: #1a201b;
  --muted: #62675f;
  --line: rgba(16, 72, 43, .13);
  --shadow: 0 24px 60px rgba(43, 38, 20, .12);
  --shadow-soft: 0 12px 32px rgba(25, 52, 33, .08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 9999; padding: 10px 14px; background: #fff; color: #000; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 250, 240, .92);
  border-bottom: 1px solid rgba(255,255,255,.5);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(7,59,36,.12); background: rgba(255, 250, 240, .98); }
.nav-shell { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 228px; min-width: 200px; height: 70px; display: flex; align-items: center; }
.brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 22px; font-size: .92rem; font-weight: 700; color: #233128; }
.main-nav > a:not(.nav-cta) { position: relative; padding: 9px 0; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--green-700); transition: right .2s ease; }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 11px 16px; border-radius: 999px; color: white; background: linear-gradient(135deg, var(--green-800), var(--green-500)); box-shadow: 0 10px 28px rgba(13,92,52,.2); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--green-950); border-radius: 8px; }

.hero { height: 806px; min-height: 726px; position: relative; overflow: hidden; background: var(--green-950); padding-top: 88px; }
.hero-image { position: absolute; inset: 88px 0 0; background: url("../img/hero-conilon-1920x800.jpg") center center / cover no-repeat; }
.hero-overlay { position: absolute; inset: 88px 0 0; background: linear-gradient(90deg, rgba(2,36,18,.87) 0%, rgba(5,46,25,.72) 29%, rgba(13,54,29,.25) 52%, rgba(0,0,0,0) 75%); }
.hero-content { height: 100%; display: flex; align-items: center; position: relative; z-index: 2; }
.hero-copy { max-width: 660px; color: #fff; padding-bottom: 28px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; font-weight: 900; color: var(--red); }
.eyebrow { color: #eaffbd; background: rgba(13,93,48,.35); border: 1px solid rgba(183,255,74,.35); padding: 8px 12px; border-radius: 999px; }
.hero h1 { margin: 18px 0 18px; font-size: clamp(2.75rem, 5vw, 5.15rem); line-height: .98; letter-spacing: -.045em; max-width: 760px; text-wrap: balance; }
.hero p { margin: 0; max-width: 640px; color: rgba(255,255,255,.84); font-size: 1.12rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 20px; border: 0; border-radius: 999px; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--red), #dc2429); box-shadow: 0 14px 36px rgba(196,18,25,.28); }
.btn-primary:hover { box-shadow: 0 18px 42px rgba(196,18,25,.4); }
.btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.5); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.btn-small { min-height: 38px; padding: 0 14px; background: var(--green-800); color: #fff; }
.btn-full { width: 100%; border-radius: 14px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.hero-pills span { font-size: .82rem; color: rgba(255,255,255,.85); padding: 7px 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(0,0,0,.1); }

.trust-strip { position: relative; z-index: 4; margin-top: -44px; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); background: rgba(255,253,248,.96); border: 1px solid rgba(255,255,255,.8); border-radius: 26px; box-shadow: var(--shadow); overflow: hidden; }
.trust-grid article { padding: 24px 22px; min-height: 132px; position: relative; }
.trust-grid article + article { border-left: 1px solid var(--line); }
.trust-grid strong { display: block; font-size: 1.04rem; color: var(--green-900); margin-bottom: 7px; }
.trust-grid span { display: block; font-size: .9rem; color: var(--muted); }

.split-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 64px; align-items: center; }
.section-kicker.light { color: #d5ff97; }
.section-copy h2, .section-heading h2, .quote-copy h2, .contact-card h2, .solution-panel h2, .image-info-card h2 { font-size: clamp(2.1rem, 3.5vw, 3.65rem); line-height: 1.05; letter-spacing: -.035em; margin: 12px 0 22px; text-wrap: balance; }
.section-copy p, .section-heading p, .image-info-card p { color: var(--muted); font-size: 1.02rem; }
.check-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.check-grid span { padding: 13px 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--cream); color: var(--green-900); font-weight: 750; }
.identity-card { position: relative; padding: 34px 34px 132px; min-height: 470px; border-radius: var(--radius-xl); background: linear-gradient(145deg, #fff7e9, #fffdfa); border: 1px solid rgba(98,52,18,.12); box-shadow: var(--shadow-soft); overflow: hidden; }
.identity-card::before { content:""; position:absolute; width:280px; height:280px; border-radius:50%; border:1px solid rgba(51,133,62,.16); right:-80px; top:-85px; box-shadow: 0 0 0 28px rgba(51,133,62,.04), 0 0 0 64px rgba(196,18,25,.035); }
.bean-mark { display: flex; gap: 10px; margin-bottom: 74px; align-items: center; }
.bean-mark i { width: 58px; height: 72px; border-radius: 55% 45% 55% 45%; background: var(--brown); transform: rotate(22deg); position: relative; }
.bean-mark i:nth-child(2){ background: var(--green-800); transform: translateY(-24px) rotate(22deg); }
.bean-mark i:nth-child(3){ background: var(--red); transform: translateY(14px) rotate(22deg); }
.bean-mark i::after { content:""; position:absolute; width:6px; height:58px; background:#fff; border-radius:99px; top:7px; left:27px; transform:rotate(-11deg); }
.mini-label { text-transform: uppercase; font-size: .72rem; font-weight: 900; letter-spacing: .14em; color: var(--green-700); }
.identity-card h3, .tech-card h3 { font-size: 2rem; line-height: 1.1; margin: 8px 0 14px; }
.identity-card p { color: var(--muted); margin-bottom: 0; max-width: 30ch; }
.color-ribbon { position: absolute; left: -20%; right: -15%; height: 110px; bottom: -52px; border-top: 20px solid var(--green-700); border-radius: 50% 50% 0 0; transform: rotate(-4deg); background: var(--brown); box-shadow: 0 -13px 0 var(--red), 0 -22px 0 #fff; }

.company, .products-section, .field-section, .contact-section { scroll-margin-top: 88px; }
.products-section { background: linear-gradient(180deg, #fbf4e8 0%, #fffdf8 100%); padding-top: 88px; }
.section-heading { display: flex; gap: 30px; align-items: flex-start; max-width: 980px; margin-bottom: 34px; }
.section-heading.compact { display: block; max-width: 820px; }
.section-heading h2 { margin-bottom: 12px; }
.badge { width: 116px; height: 116px; object-fit: cover; border-radius: 50%; box-shadow: 0 14px 34px rgba(98,52,18,.14); flex: none; margin-top: 2px; }
.product-tools { display: flex; align-items: end; justify-content: space-between; gap: 26px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 20px; margin-bottom: 24px; box-shadow: var(--shadow-soft); }
.search-box { display: grid; gap: 6px; min-width: 310px; font-size: .75rem; color: var(--muted); font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.search-box input { width: 100%; height: 46px; border: 1px solid rgba(11,79,47,.16); border-radius: 12px; padding: 0 14px; color: var(--ink); background: #fffcf7; outline: none; }
.search-box input:focus { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(47,143,69,.12); }
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.filter-chip { border: 1px solid rgba(11,79,47,.15); background: #fff; color: var(--green-900); border-radius: 999px; padding: 9px 12px; font-size: .82rem; font-weight: 800; }
.filter-chip.active { color: #fff; background: var(--green-800); border-color: var(--green-800); }
.product-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.product-card { padding: 28px; border-radius: var(--radius-lg); background: rgba(255,255,255,.94); border: 1px solid rgba(98,52,18,.11); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; min-height: 440px; position: relative; overflow: hidden; }
.product-card::after { content:""; position:absolute; width:190px; height:190px; border-radius:50%; right:-80px; top:-90px; border:1px solid rgba(47,143,69,.13); box-shadow: 0 0 0 28px rgba(47,143,69,.03); }
.product-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.product-code { color: var(--green-700); font-weight: 900; font-size: .77rem; text-transform: uppercase; letter-spacing: .08em; }
.product-dot { width: 11px; height: 11px; border-radius: 50%; box-shadow: 0 0 0 7px rgba(0,0,0,.025); }
.product-dot.green { background: var(--green-500); }
.product-dot.red { background: var(--red); }
.product-dot.brown { background: var(--brown-2); }
.product-card h3 { margin: 28px 0 8px; font-size: 2.35rem; letter-spacing: -.03em; color: var(--brown); }
.product-sub { margin: 0 0 18px; font-weight: 700; color: #4e5f54; }
.product-card ul { margin: 0; padding-left: 19px; color: var(--muted); }
.product-card li { margin: 7px 0; }
.product-footer { margin-top: auto; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 14px; border-top: 1px solid var(--line); }
.product-footer span { font-size: .82rem; color: var(--muted); }
.product-footer a { font-weight: 900; color: var(--red); }
.product-card-soon { background: linear-gradient(145deg,#fffaf2,#fff3e8); border-style: dashed; }
.soon-pill { font-size: .74rem; background: rgba(196,18,25,.09); color: var(--red-dark); padding: 6px 9px; border-radius: 999px; font-weight: 900; }
.product-note { color: var(--muted); max-width: 560px; }
.no-results { padding: 24px; text-align: center; color: var(--muted); }

.cultures { background: #fff; }
.culture-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-top: 34px; }
.culture-card { min-height: 270px; padding: 24px 20px; border-radius: 22px; background: linear-gradient(180deg,#fffaf1,#fbf0de); border: 1px solid rgba(98,52,18,.11); position: relative; overflow: hidden; }
.culture-card span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; font-weight: 900; color: var(--green-900); background: rgba(47,143,69,.1); }
.culture-card h3 { margin: 52px 0 10px; font-size: 1.55rem; color: var(--brown); }
.culture-card p { margin: 0; color: var(--muted); font-size: .91rem; }
.culture-card::after { content:""; position:absolute; width:110px; height:110px; right:-54px; bottom:-54px; border-radius:50%; border: 14px solid rgba(23,108,58,.07); }

.solutions { background: var(--green-950); color: #fff; overflow: hidden; }
.solutions::before { content:""; position:absolute; width:680px; height:680px; border-radius:50%; border:1px solid rgba(183,255,74,.1); right:-240px; top:-270px; box-shadow: 0 0 0 50px rgba(183,255,74,.025), 0 0 0 100px rgba(183,255,74,.02); }
.solution-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.solution-panel p { color: rgba(255,255,255,.72); max-width: 760px; }
.solution-list { display: grid; gap: 12px; margin-top: 34px; }
.solution-list > div { display: grid; grid-template-columns: 50px 1fr; gap: 14px; align-items: start; padding: 15px; border-radius: 16px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09); }
.solution-list b { display:grid; place-items:center; width:42px; height:42px; border-radius:50%; background:var(--red); font-size:.78rem; }
.solution-list span { color: rgba(255,255,255,.7); }
.solution-list strong { display:block; color:#fff; margin-bottom:3px; }
.tech-card { background: linear-gradient(155deg, rgba(255,255,255,.1), rgba(255,255,255,.045)); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-xl); padding: 34px; min-height: 430px; backdrop-filter: blur(12px); position: relative; overflow:hidden; }
.tech-card .mini-label { color: #d5ff97; margin-top: 120px; }
.tech-card p { color: rgba(255,255,255,.78); }
.tech-card a { display:block; margin:6px 0; color:#fff; font-weight:750; }
.tech-card small { display:block; margin-top:24px; color:rgba(255,255,255,.57); }
.tech-orbit { position:absolute; width:190px; height:190px; left:30px; top:24px; border-radius:50%; border:1px solid rgba(183,255,74,.27); }
.tech-orbit::before, .tech-orbit::after { content:""; position:absolute; inset:28px; border-radius:50%; border:1px solid rgba(255,255,255,.12); }
.tech-orbit::after { inset:58px; border-color:rgba(196,18,25,.55); }
.tech-orbit span { position:absolute; width:18px; height:18px; border-radius:50%; background:var(--lime); box-shadow:0 0 28px rgba(183,255,74,.6); }
.tech-orbit span:nth-child(1){ left:6px; top:84px; }
.tech-orbit span:nth-child(2){ right:34px; top:18px; background:var(--red); box-shadow:none; }
.tech-orbit span:nth-child(3){ right:2px; bottom:52px; background:#fff; box-shadow:none; }

.field-section { background: linear-gradient(180deg,#fffdf8,#fbf2e3); }
.field-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; align-items: stretch; }
.image-info-card { display: grid; grid-template-columns: 132px 1fr; gap: 26px; align-items:start; min-height: 360px; height: 100%; padding: 34px; border-radius: var(--radius-xl); background:#fff; border:1px solid rgba(98,52,18,.11); box-shadow:var(--shadow-soft); }
.image-info-card img { width:132px; height:132px; object-fit:cover; border-radius:50%; }
.image-info-card h2 { font-size:2rem; margin:8px 0 14px; }
.image-info-card p { margin:0; line-height: 1.68; }

.quote-section { background: linear-gradient(135deg, #5b290c 0%, #7a3710 48%, #522007 100%); color:#fff; overflow:hidden; }
.quote-section::before { content:""; position:absolute; left:-140px; bottom:-260px; width:900px; height:500px; border-radius:50%; border-top:38px solid var(--green-500); box-shadow:0 -26px 0 var(--red), 0 -34px 0 #fff; transform:rotate(6deg); opacity:.8; }
.quote-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:54px; position:relative; z-index:2; align-items:start; }
.quote-copy p { color:rgba(255,255,255,.74); font-size:1.05rem; }
.contact-mini { display:grid; gap:10px; margin-top:30px; }
.contact-mini a, .contact-mini span { color:#fff; font-weight:750; }
.quote-form { background:rgba(255,252,246,.98); color:var(--ink); padding:28px; border-radius:28px; box-shadow:0 28px 70px rgba(0,0,0,.25); }
.form-row { display:grid; gap:14px; }
.form-row.two { grid-template-columns:repeat(2,minmax(0,1fr)); }
.quote-form label { display:grid; gap:7px; font-size:.79rem; font-weight:900; color:#4c554d; margin-bottom:14px; }
.quote-form input, .quote-form select, .quote-form textarea { width:100%; border:1px solid rgba(11,79,47,.16); background:#fff; color:var(--ink); border-radius:12px; padding:12px 13px; outline:none; }
.quote-form input, .quote-form select { height:48px; }
.quote-form textarea { resize:vertical; min-height:110px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color:var(--green-500); box-shadow:0 0 0 3px rgba(47,143,69,.11); }
.consent { grid-template-columns:18px 1fr !important; align-items:start; gap:9px !important; font-weight:600 !important; line-height:1.4; }
.consent input { width:16px; height:16px; margin:2px 0 0; }
.consent a { text-decoration:underline; color:var(--green-800); }
.form-note { font-size:.76rem; color:var(--muted); text-align:center; margin:10px 0 0; }

.contact-section { background:#fff; }
.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:24px; }
.contact-card { padding:40px; border-radius:var(--radius-xl); background:var(--cream); border:1px solid rgba(98,52,18,.11); }
.contact-card address { font-style:normal; color:var(--muted); font-size:1.04rem; margin-bottom:24px; }
.contact-card p { margin:10px 0; color:#4e5a50; }
.contact-card a { color:var(--green-800); font-weight:800; }
.text-link { display:inline-block; margin-top:18px; }
.contact-map { min-height:460px; border-radius:var(--radius-xl); overflow:hidden; border:1px solid rgba(11,79,47,.12); box-shadow:var(--shadow-soft); background:var(--cream-2); }
.contact-map iframe { display:block; width:100%; height:100%; min-height:460px; border:0; }

.site-footer { background:#0b2719; color:#fff; padding:66px 0 24px; }
.footer-grid { display:grid; grid-template-columns:1.35fr repeat(3,1fr); gap:42px; }
.footer-grid > div { display:grid; align-content:start; gap:9px; }
.footer-logo { width:230px; height:auto; margin-bottom:14px; filter:brightness(0) invert(1); opacity:.9; }
.footer-grid p, .footer-grid a, .footer-grid span { color:rgba(255,255,255,.64); font-size:.9rem; }
.footer-grid a:hover { color:#fff; }
.footer-grid strong { margin-bottom:8px; }
.footer-bottom { margin-top:48px; padding-top:22px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; gap:18px; color:rgba(255,255,255,.48); font-size:.8rem; }

.whatsapp-float { position:fixed; z-index:900; right:20px; bottom:20px; display:flex; align-items:center; gap:8px; padding:11px 14px; border-radius:999px; background:#18794e; color:#fff; box-shadow:0 14px 36px rgba(0,0,0,.22); font-size:.87rem; }
.whatsapp-float span { display:grid; place-items:center; width:30px; height:30px; border-radius:50%; background:rgba(255,255,255,.16); font-size:1.1rem; }

.cookie-banner { position:fixed; z-index:1200; left:20px; right:20px; bottom:20px; max-width:780px; margin:auto; display:flex; align-items:center; justify-content:space-between; gap:18px; padding:14px 16px; border-radius:16px; background:#fff; border:1px solid var(--line); box-shadow:0 18px 50px rgba(0,0,0,.18); }
.cookie-banner p { margin:0; color:var(--muted); font-size:.84rem; }
.cookie-banner a { color:var(--green-800); text-decoration:underline; }
.cookie-banner.hidden { display:none; }

.reveal { opacity:1; transform:none; }
.reveal.will-reveal { opacity:0; transform:translateY(18px); transition:opacity .65s ease, transform .65s ease; }
.reveal.will-reveal.visible { opacity:1; transform:none; }
.product-card[hidden] { display:none; }

/* Legal pages */
.legal-page { background:linear-gradient(180deg,#fffaf1,#fff); min-height:100vh; }
.legal-header { position:sticky; top:0; z-index:10; background:rgba(255,250,241,.95); backdrop-filter:blur(14px); border-bottom:1px solid var(--line); }
.legal-header .container { height:78px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.legal-header img { width:210px; height:auto; }
.legal-header a.back { font-weight:850; color:var(--green-800); }
.legal-content { width:min(calc(100% - 40px),900px); margin:0 auto; padding:76px 0 100px; }
.legal-content h1 { font-size:clamp(2.4rem,5vw,4.5rem); letter-spacing:-.04em; line-height:1; margin:12px 0 18px; }
.legal-content h2 { margin-top:36px; color:var(--green-900); }
.legal-content p, .legal-content li { color:#4f5b52; }
.legal-content .notice { padding:18px; border-radius:16px; background:var(--cream); border:1px solid var(--line); }

@media (max-width: 1040px) {
  .main-nav { position:fixed; left:20px; right:20px; top:92px; display:none; flex-direction:column; align-items:stretch; gap:4px; padding:18px; background:#fffaf0; border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow); }
  .main-nav.open { display:flex; }
  .main-nav a { padding:11px !important; }
  .menu-toggle { display:block; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .trust-grid article:nth-child(3) { border-left:0; border-top:1px solid var(--line); }
  .trust-grid article:nth-child(4) { border-top:1px solid var(--line); }
  .split-grid, .solution-grid, .quote-grid, .contact-grid { grid-template-columns:1fr; }
  .culture-grid { grid-template-columns:repeat(3,1fr); }
  .field-grid { grid-template-columns:1fr; }
}

@media (max-width: 760px) {
  .container { width:min(calc(100% - 28px),var(--container)); }
  .section { padding:76px 0; }
  .brand { width:190px; }
  .brand img { width:190px; }
  .hero { height:760px; min-height:760px; }
  .hero-image { background-position:18% center; }
  .hero-overlay { background:linear-gradient(90deg,rgba(3,39,20,.92),rgba(5,43,24,.76) 56%,rgba(0,0,0,.16)); }
  .hero h1 { font-size:clamp(2.5rem,12vw,4.2rem); }
  .hero p { font-size:1rem; }
  .trust-strip { margin-top:-28px; }
  .trust-grid { grid-template-columns:1fr; }
  .trust-grid article + article { border-left:0; border-top:1px solid var(--line); }
  .split-grid { gap:34px; }
  .check-grid { grid-template-columns:1fr; }
  .identity-card { min-height:410px; padding-bottom:120px; }
  .section-heading { display:block; }
  .section-heading .badge, .badge { width:104px; height:104px; margin-bottom:18px; }
  .product-tools { align-items:stretch; flex-direction:column; }
  .search-box { min-width:0; }
  .filter-row { justify-content:flex-start; }
  .product-grid { grid-template-columns:1fr; }
  .product-card { min-height:0; }
  .culture-grid { grid-template-columns:1fr 1fr; }
  .image-info-card { grid-template-columns:100px 1fr; gap:18px; padding:22px; }
  .image-info-card img { width:100px; height:100px; }
  .image-info-card h2 { font-size:1.55rem; }
  .form-row.two { grid-template-columns:1fr; }
  .quote-form { padding:20px; border-radius:22px; }
  .contact-card { padding:28px; }
  .contact-map, .contact-map iframe { min-height:360px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > div:first-child { grid-column:1/-1; }
  .footer-bottom { flex-direction:column; }
  .whatsapp-float b { display:none; }
  .cookie-banner { left:12px; right:12px; bottom:12px; flex-direction:column; align-items:stretch; }
}

@media (max-width: 480px) {
  .nav-shell { height:74px; }
  .hero { padding-top:74px; }
  .hero-image, .hero-overlay { inset:74px 0 0; }
  .brand { width:184px; height:58px; min-width:0; }
  .brand img { width:100%; }
  .hero-actions .btn { width:100%; }
  .hero-pills span { font-size:.76rem; }
  .culture-grid { grid-template-columns:1fr; }
  .image-info-card { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-grid > div:first-child { grid-column:auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  .reveal { opacity:1; transform:none; transition:none; }
  * { animation:none !important; transition:none !important; }
}
