:root {
  --forest: #123c36;
  --green: #1f7669;
  --turquoise: #48b8b0;
  --sky: #8fd3e0;
  --mint: #eaf6f3;
  --blue: #edf7fa;
  --white: #fff;
  --text: #18302d;
  --muted: #58706c;
  --border: #d5e6e2;
  --gold: #c6a15b;
  --radius: 20px;
  --shadow: 0 20px 50px rgba(18, 60, 54, .12);
  --soft-shadow: 0 10px 30px rgba(18, 60, 54, .08);
  --container: 1180px;
  --header: 78px;
  --transition: 180ms ease;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(72,184,176,.55); outline-offset: 3px; }
.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 1000;
  transform: translateY(-140%); background: var(--forest); color: var(--white);
  padding: .8rem 1rem; border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header); display: flex; align-items: center;
  background: rgba(255,255,255,.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(213,230,226,.65);
  transition: box-shadow var(--transition), height var(--transition);
}
.site-header.scrolled { height: 68px; box-shadow: var(--soft-shadow); }
.header-inner { display: flex; align-items: center; justify-content: flex-start; gap: .85rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 800; color: var(--forest); min-width: max-content; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 14px;
  display: grid; place-items: center; color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--turquoise));
  font-family: Manrope, sans-serif; letter-spacing: 0;
}
.nav { display: flex; align-items: center; gap: .12rem; margin-left: auto; }
.nav a {
  min-height: 44px; display: inline-flex; align-items: center;
  padding: .5rem .66rem; border-radius: 999px;
  color: var(--muted); font-weight: 700; font-size: .92rem;
  white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--forest); background: rgba(234,246,243,.86); }
.mobile-language { display: none; }
.nav-item { position: relative; }
.services-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 190px;
  padding: .45rem; border: 1px solid var(--border); border-radius: 16px;
  background: var(--white); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: var(--transition); z-index: 20;
}
.nav-item:hover .services-dropdown, .nav-item:focus-within .services-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.services-dropdown a { width: 100%; border-radius: 12px; }
.header-actions { display: flex; align-items: center; gap: .55rem; }
.lang { position: relative; }
.lang-toggle {
  min-height: 42px; display: inline-flex; align-items: center; gap: .48rem;
  border: 1px solid var(--border); border-radius: 999px; background: var(--white);
  color: var(--forest); padding: .42rem .88rem; cursor: pointer; font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(18,60,54,.06);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.lang-toggle:hover, .lang.open .lang-toggle {
  background: var(--mint);
  border-color: rgba(31,118,105,.35);
  box-shadow: 0 12px 24px rgba(18,60,54,.1);
}
.language-flag {
  width: 24px; height: 18px; flex: 0 0 24px;
  border-radius: 4px; object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(18,60,54,.12);
}
.language-chevron {
  width: 16px; height: 16px; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 200ms ease;
}
.lang-toggle[aria-expanded="true"] .language-chevron { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 9px); right: 0; min-width: 190px; max-width: min(230px, calc(100vw - 28px));
  background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow);
  border-radius: 16px; padding: .45rem; transform-origin: top right;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: var(--transition);
  z-index: 150;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  width: 100%; min-height: 44px; border: 0; border-radius: 12px; background: transparent;
  display: flex; align-items: center; gap: .65rem; padding: .54rem .68rem; cursor: pointer;
  color: var(--text); font-weight: 700; text-align: left;
}
.lang-menu button:hover, .lang-menu button:focus-visible { background: var(--mint); }
.language-option.active { background: rgba(234,246,243,.9); color: var(--forest); font-weight: 800; }
.language-option span { flex: 1; }
.language-check {
  width: 16px; height: 16px; fill: none; stroke: var(--green);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 999px; background: var(--white); color: var(--forest); }
.menu-toggle span { display: block; width: 18px; height: 2px; background: currentColor; margin: 4px auto; }
.mobile-overlay, .mobile-menu-close { display: none; }
.btn {
  min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .68rem .92rem; border-radius: 999px; font-weight: 800; border: 1px solid transparent;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--forest); color: var(--white); box-shadow: 0 12px 24px rgba(18,60,54,.18); }
.btn.secondary { background: var(--white); color: var(--forest); border-color: var(--border); }
.hero { padding: 76px 0 56px; background: radial-gradient(circle at 80% 20%, rgba(143,211,224,.5), transparent 32%), linear-gradient(135deg, var(--mint), var(--white) 58%, var(--blue)); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .8fr); gap: 54px; align-items: center; }
.eyebrow { color: var(--green); font-weight: 800; text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; }
h1, h2, h3 { font-family: Manrope, Inter, sans-serif; line-height: 1.08; margin: 0 0 1rem; color: var(--forest); letter-spacing: 0; }
h1 { font-size: clamp(2.35rem, 6vw, 4.8rem); max-width: 920px; }
h2 { font-size: clamp(1.75rem, 3.4vw, 3rem); }
h3 { font-size: 1.15rem; }
h1, h2, h3, p, a, strong, span { overflow-wrap: anywhere; }
p { margin: 0 0 1rem; color: var(--muted); }
.hero p, .internal-hero p { font-size: 1.12rem; max-width: 680px; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.trust-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.trust-row span, .chip {
  padding: .5rem .72rem; border: 1px solid var(--border); border-radius: 999px;
  background: rgba(255,255,255,.72); color: var(--forest); font-weight: 700; font-size: .88rem;
}
.hero-visual { position: relative; min-height: 430px; }
.visual-card {
  min-height: 380px; border-radius: 28px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.8);
  background:
    linear-gradient(135deg, rgba(18,60,54,.72), rgba(31,118,105,.28)),
    url("../images/hero/strategy-collaboration-placeholder.svg"),
    linear-gradient(135deg, #dff6f1, #eaf8fb);
  background-size: cover; background-position: center;
}
.visual-about { background-image: linear-gradient(135deg, rgba(18,60,54,.7), rgba(72,184,176,.25)), url("../images/about/integral-approach-placeholder.svg"); }
.metric-card {
  position: absolute; right: -14px; bottom: 24px; width: min(220px, 70%);
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  padding: 1rem; box-shadow: var(--shadow);
}
.metric-card strong { display: block; color: var(--green); font-size: 2rem; line-height: 1; }
.section { padding: 82px 0; }
.section.soft { background: var(--mint); }
.editorial-band { background: linear-gradient(180deg, var(--white), var(--blue)); }
.section-heading { max-width: 790px; margin-bottom: 2rem; }
.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(280px, 1fr); gap: 44px; align-items: center; }
.pillar-grid, .card-grid, .product-grid, .directory-grid, .three-grid, .process-grid, .product-area-grid, .editorial-grid, .service-area-grid {
  display: grid; gap: 1rem;
}
.pillar-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.three-grid, .process-grid, .product-area-grid, .editorial-grid, .service-area-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.editorial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card, .service-card, .product-card, .pillar-card, .process-card, .editorial-card, .service-area-card {
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--white);
  padding: 1.25rem; box-shadow: var(--soft-shadow); transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover, .service-card:hover, .product-card:hover, .pillar-card:hover, .editorial-card:hover, .service-area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-area-card { min-height: 250px; display: flex; flex-direction: column; justify-content: space-between; }
.service-section { scroll-margin-top: 96px; }
.service-section + .service-section { border-top: 1px solid var(--border); }
.service-intro { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1rem; align-items: start; margin-bottom: 1.4rem; }
.service-intro .icon-pill { margin-bottom: 0; }
.pillar-card { min-height: 230px; display: flex; flex-direction: column; justify-content: space-between; }
.icon-pill {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px;
  background: var(--mint); color: var(--green); font-weight: 900; margin-bottom: 1rem;
}
.label { color: var(--green); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.price { color: var(--forest); font-weight: 900; margin-top: auto; }
.service-card { display: flex; flex-direction: column; gap: .45rem; min-height: 260px; }
.service-card .btn, .product-card .btn { margin-top: auto; align-self: flex-start; }
.value-list { display: grid; gap: .8rem; }
.value-item { display: flex; gap: .8rem; align-items: flex-start; padding: 1rem; background: var(--white); border: 1px solid var(--border); border-radius: 16px; }
.value-item::before { content: ""; width: 10px; height: 10px; border-radius: 99px; background: var(--gold); margin-top: .45rem; flex: 0 0 auto; }
.internal-hero { padding: 70px 0 54px; background: linear-gradient(135deg, var(--mint), var(--white) 62%, var(--blue)); border-bottom: 1px solid var(--border); }
.filters { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.6rem; }
.filter-btn {
  min-height: 44px; border: 1px solid var(--border); background: var(--white); border-radius: 999px;
  padding: .55rem .85rem; cursor: pointer; color: var(--forest); font-weight: 800;
}
.filter-btn.active { background: var(--forest); color: var(--white); border-color: var(--forest); }
.media {
  height: 150px; border-radius: 16px; margin: -0.35rem -0.35rem 1rem;
  background: linear-gradient(135deg, rgba(18,60,54,.84), rgba(72,184,176,.28)), var(--bg, url("../images/products/commercial-products-placeholder.svg"));
  background-size: cover; background-position: center;
}
.product-card { display: flex; flex-direction: column; min-height: 380px; }
.product-area-grid .product-card { min-height: 300px; }
.note { margin-top: 1.3rem; padding: 1rem; border: 1px solid var(--border); border-radius: 16px; background: var(--mint); color: var(--forest); font-weight: 700; }
.cta-section { padding-top: 20px; }
.cta-panel {
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 2rem; border-radius: 24px; background: linear-gradient(135deg, var(--forest), var(--green));
  color: var(--white); box-shadow: var(--shadow);
}
.cta-panel h2, .cta-panel p { color: var(--white); }
.cta-panel .btn.secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.contact-grid { display: grid; grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr); gap: 1.2rem; align-items: start; }
.contact-aside, .contact-form { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); padding: 1.4rem; box-shadow: var(--soft-shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
label { display: grid; gap: .4rem; color: var(--forest); font-weight: 800; }
input, select, textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 14px; min-height: 48px;
  padding: .75rem .85rem; color: var(--text); background: var(--white);
}
textarea { resize: vertical; }
.check { display: flex; grid-template-columns: none; align-items: flex-start; gap: .6rem; margin: 1rem 0; font-weight: 600; color: var(--muted); }
.check input { width: 20px; min-height: 20px; margin-top: .15rem; }
.hp { position: absolute; left: -9999px; }
.form-status { min-height: 28px; color: #a03824; font-weight: 800; }
.form-status.success { color: var(--green); }
.site-footer {
  background: #0f332e;
  color: rgba(255,255,255,.68);
  padding: 34px 0 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.18fr) .74fr .82fr minmax(240px, 1fr);
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
  align-items: start;
}
.site-footer h3 {
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  margin-bottom: .68rem;
  text-transform: uppercase;
}
.site-footer .brand {
  color: var(--white);
  margin-bottom: .75rem;
}
.site-footer .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}
.footer-company p {
  max-width: 330px;
  margin-bottom: 0;
  color: rgba(255,255,255,.66);
  font-size: .92rem;
  line-height: 1.52;
}
.site-footer a {
  display: block;
  color: rgba(255,255,255,.68);
  margin: .22rem 0;
  font-size: .92rem;
  line-height: 1.38;
}
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 1.25rem;
  padding-top: .7rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,.58);
  font-size: .84rem;
  line-height: 1.35;
}
.contact-details { display: grid; gap: .85rem; }
.contact-details p { margin: 0; }
.contact-details strong { display: block; color: var(--forest); margin-bottom: .15rem; }
.contact-details a { color: var(--green); font-weight: 800; overflow-wrap: anywhere; }
.contact-details-card p { color: var(--green); font-weight: 800; overflow-wrap: anywhere; }
.contact-details span { color: var(--muted); }
.site-footer .contact-details { gap: .46rem; }
.site-footer .contact-details p { line-height: 1.36; }
.site-footer .contact-details strong {
  color: rgba(255,255,255,.94);
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: .05rem;
}
.site-footer .contact-details a {
  color: rgba(255,255,255,.68);
  font-size: .9rem;
  font-weight: 650;
}
.site-footer .contact-details a:hover { color: var(--white); }
.site-footer .contact-details span { color: rgba(255,255,255,.62); }
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9990;
}
.whatsapp-float a {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float a:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.26); }
.whatsapp-float svg { width: 32px; height: 32px; fill: currentColor; }
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.42);
  animation: whatsapp-pulse 2.4s infinite;
}
@keyframes whatsapp-pulse {
  to { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
}
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1120px) {
  .site-header { z-index: 10002; }
  .header-inner { justify-content: space-between; align-items: center; min-width: 0; }
  .brand { min-width: 0; flex: 1 1 auto; }
  .header-actions { margin-left: auto; flex: 0 0 auto; }
  .menu-toggle { display: inline-grid; place-items: center; flex: 0 0 44px; }
  .mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: block;
    background: rgba(18,60,54,.48);
  }
  .mobile-overlay[hidden] { display: none; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: auto; left: auto;
    width: min(88vw, 420px); height: 100dvh; max-height: none;
    z-index: 10001;
    display: grid; grid-template-columns: 1fr; align-content: start;
    background: var(--white); border-left: 1px solid var(--border);
    margin-left: 0; padding: max(1rem, env(safe-area-inset-top)) 20px 1.25rem; overflow-y: auto; overflow-x: hidden; box-shadow: var(--shadow);
    transform: translateX(100%); visibility: hidden; pointer-events: none;
    transition: transform 220ms ease, visibility 220ms ease;
    overscroll-behavior: contain;
  }
  .nav:not(.open) { display: none; }
  .nav.open { transform: translateX(0); visibility: visible; pointer-events: auto; }
  .nav a { width: 100%; border-radius: 14px; }
  .mobile-menu-close {
    display: grid;
    place-items: center;
    justify-self: end;
    width: 44px;
    height: 44px;
    margin-bottom: .35rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    color: var(--forest);
    cursor: pointer;
    font-size: 1.45rem;
    line-height: 1;
  }
  .nav-item { width: 100%; }
  .services-dropdown {
    position: static; min-width: 0; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--border);
    border-radius: 0; margin: .15rem 0 .4rem .8rem; padding: .15rem 0 .15rem .5rem;
  }
  .services-dropdown a { min-height: 40px; color: var(--muted); }
  .header-actions > .lang { display: none; }
  .header-actions .btn { display: none; }
  .mobile-language { display: block; padding-top: .35rem; }
  .mobile-language .lang { width: 100%; }
  .mobile-language .lang-toggle { width: 100%; justify-content: flex-start; min-height: 44px; }
  .mobile-language .lang-menu { position: static; width: 100%; max-width: none; margin-top: .5rem; }
  .lang-toggle { padding-inline: .72rem; }
  .hero { padding: 58px 0 46px; }
  .internal-hero { padding: 58px 0 44px; }
  .section { padding: 66px 0; }
  .section-heading { margin-bottom: 1.35rem; }
  .hero-grid { gap: 26px; align-items: start; }
  .hero p, .internal-hero p { font-size: clamp(1rem, 2vw, 1.08rem); }
  .hero-visual {
    width: 100%;
    min-height: 0;
    height: clamp(220px, 28vw, 280px);
    max-height: 280px;
  }
  .visual-card {
    min-height: 0;
    height: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
  }
  .metric-card {
    right: 12px;
    bottom: 12px;
    width: min(170px, 56%);
    padding: .78rem;
    border-radius: 14px;
  }
  .metric-card strong { font-size: 1.55rem; }
  .split {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }
  .split .visual-card {
    height: clamp(210px, 34vw, 300px);
    max-height: 300px;
  }
  .pillar-grid, .card-grid, .card-grid.compact, .product-grid, .footer-grid, .process-grid, .product-area-grid, .editorial-grid, .service-area-grid, .three-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { padding-top: 30px; }
  .footer-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 1.35rem 1.7rem;
  }
  .footer-bottom { margin-top: 1.1rem; }
  .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .pillar-grid, .card-grid, .product-grid, .directory-grid, .three-grid, .process-grid, .product-area-grid, .editorial-grid, .service-area-grid { gap: 16px; }
  .pillar-grid, .card-grid, .product-grid, .directory-grid, .three-grid, .process-grid, .product-area-grid, .editorial-grid, .service-area-grid { align-items: start; }
  .info-card, .service-card, .product-card, .pillar-card, .process-card, .editorial-card, .service-area-card {
    padding: 1.1rem;
    border-radius: 18px;
  }
  .pillar-card, .service-card, .product-card, .product-area-grid .product-card, .service-area-card {
    min-height: 0;
  }
  .service-card .btn, .product-card .btn { margin-top: .45rem; }
  .media {
    height: auto;
    aspect-ratio: 16 / 10;
    max-height: 180px;
    border-radius: 14px;
  }
  .service-intro {
    gap: .85rem;
    margin-bottom: 1rem;
  }
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 20px;
  }
  .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  main { padding-bottom: 28px; }
  .hero { padding: 42px 0 36px; }
  .internal-hero { padding: 46px 0 36px; }
  .section { padding: 54px 0; }
  .section.soft { padding-block: 52px; }
  .section-heading { margin-bottom: 1.15rem; }
  .hero-grid { gap: 18px; }
  h1 { font-size: clamp(2rem, 11vw, 2.85rem); }
  h2 { font-size: clamp(1.55rem, 8vw, 2.2rem); }
  h3 { font-size: clamp(1.05rem, 5vw, 1.22rem); }
  p { line-height: 1.55; }
  .hero p, .internal-hero p, .contact-aside p, .contact-form p { max-width: 100%; }
  .hero p, .internal-hero p { font-size: 1rem; }
  .actions { gap: .65rem; }
  .actions .btn { width: 100%; }
  .trust-row { gap: .45rem; margin-top: 1rem; }
  .trust-row span, .chip {
    padding: .42rem .6rem;
    font-size: .82rem;
  }
  .hero-visual {
    height: clamp(210px, 60vw, 260px);
    max-height: 260px;
  }
  .visual-card {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }
  .metric-card {
    width: min(150px, 62%);
    padding: .68rem;
  }
  .metric-card strong { font-size: 1.35rem; }
  .split { gap: 16px; }
  .split .visual-card {
    height: clamp(180px, 52vw, 235px);
    max-height: 235px;
  }
  .pillar-grid, .card-grid, .card-grid.compact, .product-grid, .three-grid, .process-grid, .product-area-grid, .editorial-grid, .service-area-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 28px 0 12px; }
  .footer-grid { gap: 1.05rem; }
  .site-footer .brand { margin-bottom: .55rem; }
  .site-footer h3 { margin-bottom: .42rem; }
  .site-footer a { margin: .16rem 0; }
  .footer-company p { max-width: none; }
  .footer-bottom {
    margin-top: 1rem;
    padding-top: .62rem;
  }
  .directory-grid { grid-template-columns: 1fr; }
  .pillar-grid, .card-grid, .product-grid, .directory-grid, .three-grid, .process-grid, .product-area-grid, .editorial-grid, .service-area-grid { gap: 14px; }
  .info-card, .service-card, .product-card, .pillar-card, .process-card, .editorial-card, .service-area-card, .contact-aside, .contact-form {
    padding: 1rem;
    border-radius: 16px;
  }
  .service-card { gap: .35rem; }
  .service-card p, .product-card p { margin-bottom: .55rem; }
  .service-card .btn, .product-card .btn { align-self: stretch; }
  .media {
    aspect-ratio: 16 / 10;
    max-height: 150px;
    margin: -.15rem -.15rem .8rem;
    border-radius: 12px;
  }
  .icon-pill {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-bottom: .75rem;
  }
  .service-intro {
    grid-template-columns: 1fr;
    gap: .7rem;
  }
  .service-intro .icon-pill { margin-bottom: 0; }
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: .45rem;
    padding-bottom: .2rem;
  }
  .filter-btn {
    flex: 0 0 auto;
    padding: .5rem .72rem;
  }
  .note {
    padding: .85rem;
    border-radius: 14px;
  }
  .cta-panel { align-items: stretch; flex-direction: column; padding: 1.15rem; border-radius: 16px; }
  .contact-form { margin-bottom: 58px; }
  .contact-form .btn[type="submit"] { width: 100%; }
  .footer-grid { gap: 1.05rem; }
  .brand span:last-child { max-width: 128px; line-height: 1.1; }
  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
  }
  .whatsapp-float a {
    width: 56px;
    height: 56px;
  }
  .whatsapp-float svg { width: 30px; height: 30px; }
}
@media (max-width: 390px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 48px 0; }
  .hero { padding-top: 36px; }
  .hero-visual { height: clamp(190px, 58vw, 230px); }
  .brand span:last-child { max-width: 112px; }
  .whatsapp-float a { width: 54px; height: 54px; }
  .info-card, .service-card, .product-card, .pillar-card, .process-card, .editorial-card, .service-area-card, .contact-aside, .contact-form {
    padding: .92rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .whatsapp-pulse { animation: none !important; box-shadow: none; }
}
