:root {
  --deep-blue: #061B4E;
  --royal-blue: #0B3B91;
  --bright-blue: #1677FF;
  --eco-green: #8BCB3F;
  --dark-navy: #020817;
  --soft-white: #F8FAFC;
  --light-blue-gray: #EAF1F8;
  --graphite: #1F2937;
  --muted: #64748B;
  --white: #FFFFFF;
  --line: rgba(148, 163, 184, .22);
  --shadow: 0 26px 80px rgba(2, 8, 23, .14);
  --shadow-soft: 0 16px 40px rgba(2, 8, 23, .08);
  --radius: 22px;
  --container: 1180px;
  --header-height: 78px;
}

*,
*::before,
*::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--graphite);
  background: var(--soft-white);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.menu-open,
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { outline-color: var(--bright-blue); outline-offset: 3px; }
img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
  min-width: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--dark-navy);
  color: var(--white);
}
.skip-link:focus { top: 16px; }

.progress-bar {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bright-blue), var(--eco-green));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(248, 250, 252, .72);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(148, 163, 184, .26);
  box-shadow: 0 12px 34px rgba(2, 8, 23, .08);
}
.nav {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--deep-blue);
  font-weight: 900;
  letter-spacing: 0;
  min-width: 0;
  flex-shrink: 1;
}
.brand-logo {
  display: block;
  width: clamp(166px, 17vw, 230px);
  height: auto;
  min-width: 0;
}
.footer-logo {
  width: min(260px, 100%);
}
.footer-brand {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--eco-green);
  background: linear-gradient(145deg, var(--deep-blue), var(--royal-blue));
  box-shadow: 0 14px 32px rgba(6, 27, 78, .24);
}
.brand-mark svg { width: 30px; height: 30px; }
.brand-text { font-size: 1.08rem; }
.footer-brand .brand-mark::before {
  content: "";
  width: 23px;
  height: 23px;
  border-radius: 6px 13px 6px 13px;
  background: var(--eco-green);
}
.nav-panel {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-panel a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}
.nav-panel a:hover {
  color: var(--royal-blue);
  background: rgba(22, 119, 255, .08);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--light-blue-gray);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--deep-blue);
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--bright-blue), var(--royal-blue));
  box-shadow: 0 18px 38px rgba(22, 119, 255, .3);
}
.btn-primary:hover { box-shadow: 0 22px 46px rgba(22, 119, 255, .38); }
.btn-secondary {
  color: var(--deep-blue);
  background: var(--white);
  border-color: rgba(11, 59, 145, .16);
  box-shadow: var(--shadow-soft);
}
.btn-secondary.light {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .28);
  box-shadow: none;
}
.btn-ghost {
  color: var(--royal-blue);
  background: rgba(22, 119, 255, .08);
}
.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}

.section-shell,
.section {
  position: relative;
  padding: clamp(72px, 8vw, 118px) 0;
}
.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.78), rgba(255,255,255,.78)),
    url("public/images/textures/gradiente-papel-eco-copia.webp"),
    radial-gradient(circle at 82% 20%, rgba(139, 203, 63, .2), transparent 25%),
    radial-gradient(circle at 13% 85%, rgba(22, 119, 255, .16), transparent 28%),
    linear-gradient(135deg, #fbfdff 0%, #eef6ff 50%, #f9fff2 100%);
  background-size: cover, cover, auto, auto, auto;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .62;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(6, 27, 78, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 78, .045) 1px, transparent 1px),
    radial-gradient(circle, rgba(6, 27, 78, .08) 1px, transparent 1px);
  background-size: 34px 34px, 34px 34px, 18px 18px;
  mask-image: linear-gradient(to bottom, transparent, #000 13%, #000 83%, transparent);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .42;
  animation: drift 8s ease-in-out infinite alternate;
}
.orb-one {
  width: 120px;
  height: 120px;
  right: 10%;
  top: 16%;
  background: rgba(139, 203, 63, .36);
}
.orb-two {
  width: 88px;
  height: 88px;
  left: 8%;
  bottom: 18%;
  background: rgba(22, 119, 255, .24);
  animation-delay: -3s;
}
@keyframes drift {
  to { transform: translate3d(16px, -18px, 0) scale(1.04); }
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: clamp(34px, 7vw, 82px);
  min-width: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--royal-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--eco-green);
  box-shadow: 0 0 0 6px rgba(139, 203, 63, .18);
}
h1, h2, h3 {
  margin: 0;
  color: var(--dark-navy);
  line-height: 1.05;
  letter-spacing: 0;
}
h1 {
  max-width: 830px;
  margin-top: 16px;
  font-size: clamp(2.4rem, 9vw, 5.45rem);
}
h2 { font-size: clamp(2rem, 6vw, 3.2rem); }
h3 { font-size: 1.15rem; }
p { margin: 0; }
.hero-lead {
  max-width: 690px;
  margin-top: 22px;
  color: #40516a;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}
.microcopy {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  min-width: 0;
}
.hero-actions.center { justify-content: center; }
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-chips span {
  padding: 9px 13px;
  border: 1px solid rgba(11, 59, 145, .12);
  border-radius: 999px;
  color: #344256;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 22px rgba(2, 8, 23, .04);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 38px;
  background:
    radial-gradient(circle at 80% 18%, rgba(139, 203, 63, .26), transparent 24%),
    linear-gradient(145deg, var(--dark-navy), var(--deep-blue) 54%, #0d4aa9);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
}
.hero-image-card {
  aspect-ratio: 16 / 9;
  min-height: 0;
}
.hero-image-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, .32), transparent 46%),
    linear-gradient(180deg, transparent, rgba(2, 8, 23, .16));
  pointer-events: none;
}
.hero-image-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 82% 20%, rgba(139, 203, 63, .18), transparent 24%);
  pointer-events: none;
}
.visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 28px 28px;
}
.paper-sheet {
  position: absolute;
  width: 160px;
  height: 210px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(6, 27, 78, .08) 1px, transparent 1px),
    linear-gradient(#fff, #e7eef7);
  background-size: 24px 24px, auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
}
.sheet-a {
  left: 7%;
  top: 10%;
  transform: rotate(-12deg);
}
.sheet-b {
  right: 8%;
  bottom: 12%;
  transform: rotate(10deg);
  opacity: .8;
}
.machine-card {
  position: absolute;
  left: 13%;
  right: 13%;
  top: 28%;
  height: 230px;
  border-radius: 28px;
  background: linear-gradient(160deg, #fbfdff, #cfe2f6);
  box-shadow: 0 30px 65px rgba(0,0,0,.34);
  z-index: 2;
}
.machine-top {
  position: absolute;
  left: 12%;
  right: 12%;
  top: -58px;
  height: 92px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #d9e7f4);
  transform: perspective(420px) rotateX(12deg);
}
.paper-stack span {
  position: absolute;
  left: 20%;
  right: 20%;
  height: 78px;
  top: -96px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 22px rgba(2, 8, 23, .14);
}
.paper-stack span:nth-child(2) { transform: translate(12px, 14px); opacity: .9; }
.paper-stack span:nth-child(3) { transform: translate(-12px, 28px); opacity: .76; }
.print-slot {
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 48px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--deep-blue), var(--bright-blue));
}
.status-light {
  position: absolute;
  right: 18%;
  top: 52px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--eco-green);
  box-shadow: 0 0 0 8px rgba(139, 203, 63, .16), 0 0 22px rgba(139, 203, 63, .7);
}
.service-float {
  position: absolute;
  z-index: 4;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  color: var(--white);
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
}
.service-float strong,
.service-float span { display: block; }
.service-float span {
  color: rgba(255,255,255,.76);
  font-size: 13px;
}
.float-one { left: 8%; bottom: 18%; }
.float-two { right: 8%; top: 13%; }
.float-three { right: 12%; bottom: 9%; }
.leaf-swoosh {
  position: absolute;
  right: -42px;
  bottom: -50px;
  z-index: 1;
  width: 250px;
  height: 250px;
  border-radius: 72% 28% 58% 42%;
  background: linear-gradient(135deg, var(--eco-green), #c6f46e);
  opacity: .96;
  transform: rotate(-18deg);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}
.section-heading h2 { margin-top: 10px; }
.section-heading p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
}
.soft-section {
  background:
    linear-gradient(rgba(248,250,252,.88), rgba(248,250,252,.88)),
    url("public/images/textures/papel-sutil.webp"),
    linear-gradient(90deg, rgba(6, 27, 78, .035) 1px, transparent 1px),
    linear-gradient(rgba(6, 27, 78, .035) 1px, transparent 1px),
    linear-gradient(180deg, #eef5fd, #f8fafc);
  background-size: cover, cover, 32px 32px, 32px 32px, auto;
  background-position: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(2, 8, 23, .05);
  overflow: hidden;
  transition: opacity .22s ease, transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: -22px -22px 18px;
  overflow: hidden;
  background: var(--light-blue-gray);
}
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(2, 8, 23, .2)),
    radial-gradient(circle at 80% 20%, rgba(139, 203, 63, .18), transparent 28%);
  pointer-events: none;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bright-blue), var(--eco-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 119, 255, .28);
  box-shadow: 0 22px 54px rgba(2, 8, 23, .1);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .service-media img { transform: scale(1.045); }
.service-icon,
.audience-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--royal-blue), var(--bright-blue));
  box-shadow: 0 12px 26px rgba(22, 119, 255, .2);
  font-weight: 950;
  font-size: 14px;
}
.service-card .service-icon {
  margin-top: -43px;
  position: relative;
  z-index: 2;
  border: 3px solid var(--white);
}
.service-card h3 { margin-top: 18px; }
.service-card p {
  flex: 1;
  margin-top: 10px;
  color: var(--muted);
}
.service-card a {
  margin-top: 18px;
  color: var(--royal-blue);
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 47px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(22, 119, 255, .32), transparent);
}
.step-card {
  position: relative;
  z-index: 1;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.step-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--deep-blue);
  background: var(--eco-green);
  box-shadow: 0 12px 28px rgba(139, 203, 63, .28);
  font-weight: 950;
}
.step-card p {
  margin-top: 10px;
  color: var(--muted);
}

.quote-section {
  color: rgba(255,255,255,.78);
  background:
    radial-gradient(circle at 88% 20%, rgba(139, 203, 63, .18), transparent 26%),
    linear-gradient(135deg, var(--dark-navy), var(--deep-blue));
}
.quote-section h2 { color: var(--white); }
.quote-section .eyebrow { color: #bde7ff; }
.quote-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 28px;
  align-items: start;
}
.quote-copy p { margin-top: 14px; }
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.09);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
  min-width: 0;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 14px;
  color: var(--white);
  background: rgba(2, 8, 23, .44);
}
.quote-form textarea { resize: vertical; }
.quote-form option { color: var(--dark-navy); }
.full { grid-column: 1 / -1; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.audience-card {
  padding: 30px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(22, 119, 255, .06), transparent 36%),
    var(--white);
  box-shadow: var(--shadow-soft);
  min-width: 0;
}
.audience-card h2 {
  margin-top: 18px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}
.audience-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.audience-card li {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--deep-blue);
  background: var(--light-blue-gray);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  min-height: 214px;
  border: 0;
  border-radius: 24px;
  padding: 18px;
  color: var(--white);
  text-align: left;
  background: var(--deep-blue);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
  width: 100%;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(2, 8, 23, .14);
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 17px;
  z-index: 2;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .35;
  z-index: 1;
}
.gallery-item .gallery-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 16px;
  color: var(--deep-blue);
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(234,241,248,.84));
  box-shadow: 0 16px 32px rgba(2, 8, 23, .2);
  text-shadow: none;
  font-size: 13px;
  font-weight: 950;
  backdrop-filter: blur(10px);
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item::before,
.gallery-item span {
  pointer-events: none;
}
.gallery-item > span:last-child {
  position: relative;
  z-index: 3;
  display: inline-flex;
  margin-top: 130px;
  font-weight: 950;
  text-shadow: 0 2px 18px rgba(2, 8, 23, .62);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 26px;
  color: var(--deep-blue);
  background:
    radial-gradient(circle at 88% 12%, rgba(139, 203, 63, .14), transparent 28%),
    linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-width: 0;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  right: 24px;
  top: 8px;
  color: rgba(22, 119, 255, .1);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}
.review-card .stars {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 2px;
  color: #F5B301;
  font-size: 1.05rem;
  letter-spacing: .04em;
}
.review-card p {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: #334155;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.65;
}
.review-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 22px;
  color: var(--dark-navy);
  font-size: 1.05rem;
  font-weight: 900;
}

.location-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: center;
  min-width: 0;
}
.location-grid p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.1rem;
}
.map-card {
  position: relative;
  min-height: 390px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--deep-blue), var(--bright-blue));
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
}
.map-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  display: block;
}

.faq-wrap { max-width: 900px; }
.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(2,8,23,.04);
  overflow: hidden;
}
summary {
  position: relative;
  cursor: pointer;
  padding: 18px 54px 18px 20px;
  color: var(--deep-blue);
  font-weight: 900;
  list-style: none;
  overflow-wrap: anywhere;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--bright-blue);
}
details[open] summary::after { content: "\2212"; }
details p {
  padding: 0 20px 20px;
  color: var(--muted);
  animation: faqDrop .24s ease;
  overflow-wrap: anywhere;
}
@keyframes faqDrop {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.final-cta {
  padding: clamp(70px, 8vw, 110px) 0;
  text-align: center;
  color: rgba(255,255,255,.78);
  background:
    radial-gradient(circle at 20% 20%, rgba(139, 203, 63, .22), transparent 26%),
    linear-gradient(135deg, var(--deep-blue), var(--royal-blue));
}
.final-cta h2 { color: var(--white); }
.final-cta p {
  margin-top: 14px;
  font-size: 1.12rem;
}

.site-footer {
  padding: 48px 0 24px;
  color: rgba(255,255,255,.72);
  background: var(--dark-navy);
}
.site-footer .brand,
.site-footer h3 { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 28px;
}
.footer-grid a {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.72);
}
.footer-grid a:hover { color: var(--white); }
.footer-grid p { margin-top: 10px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(2, 8, 23, .78);
}
.lightbox.is-open { display: grid; }
.lightbox-content {
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100dvh - 40px);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.lightbox-visual {
  min-height: 360px;
  background: var(--deep-blue);
}
.lightbox-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}
.lightbox h3 { padding: 22px; }
.lightbox-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.16);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.floating-whatsapp,
.back-top {
  position: fixed;
  right: 18px;
  z-index: 850;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  color: var(--dark-navy);
  background: var(--eco-green);
  box-shadow: 0 18px 42px rgba(2,8,23,.22);
  font-weight: 950;
}
.floating-whatsapp { bottom: 22px; }
.back-top {
  bottom: 90px;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}
.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.back-top:hover { transform: translateY(-2px); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(139, 203, 63, .2), transparent 25%),
    linear-gradient(135deg, #fbfdff, #eef6ff 52%, #f9fff2);
}
.error-card {
  max-width: 720px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
  text-align: center;
}
.error-code {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--royal-blue);
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 950;
  line-height: 1;
}
.error-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .brand-logo { width: clamp(148px, 30vw, 200px); }
  .nav-panel {
    position: fixed;
    inset: calc(var(--header-height) + 8px) 16px auto;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .hero-grid,
  .quote-grid,
  .location-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 0; }
  .hero-image-card { min-height: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid,
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

@media (max-width: 680px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section-shell,
  .section { padding: 58px 0; }
  .nav { gap: 10px; }
  .brand-logo { width: clamp(130px, 45vw, 158px); }
  .brand-mark { width: 40px; height: 40px; }
  .hero {
    min-height: auto;
    padding-top: 34px;
  }
  h1 {
    font-size: clamp(2.35rem, 11vw, 4.1rem);
    line-height: 1.02;
  }
  h2 {
    font-size: clamp(2rem, 8vw, 2.85rem);
    line-height: 1.08;
  }
  .hero-lead { font-size: clamp(1rem, 4.4vw, 1.14rem); }
  .btn {
    min-height: 52px;
    padding-inline: 18px;
  }
  .hero-actions .btn,
  .quote-form .btn { width: 100%; }
  .trust-chips span { width: 100%; }
  .hero-visual {
    border-radius: 28px;
  }
  .hero-image-card { min-height: 0; }
  .service-float {
    padding: 10px 12px;
    border-radius: 14px;
  }
  .service-float strong { font-size: .9rem; }
  .service-float span { font-size: .76rem; }
  .machine-card {
    left: 8%;
    right: 8%;
    top: 32%;
    height: 176px;
  }
  .machine-top { height: 76px; top: -48px; }
  .paper-stack span { height: 62px; top: -76px; }
  .float-two {
    top: 8%;
    right: 5%;
  }
  .float-one {
    left: 5%;
    bottom: 11%;
  }
  .float-three { display: none; }
  .service-card,
  .audience-card,
  .review-card {
    border-radius: 22px;
  }
  .service-card { min-height: 0; }
  .quote-form {
    padding: 18px;
    border-radius: 22px;
  }
  .services-grid,
  .quote-form,
  .audience-grid,
  .gallery-grid,
  .reviews-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .gallery-item { min-height: 184px; }
  .gallery-item > span:last-child { margin-top: 108px; }
  .review-card {
    min-height: 0;
    padding: 24px;
  }
  .map-card,
  .map-card img {
    min-height: 260px;
  }
  .lightbox {
    padding: 12px;
  }
  .lightbox-content {
    width: calc(100vw - 24px);
    border-radius: 22px;
  }
  .lightbox-visual,
  .lightbox-visual img {
    min-height: 220px;
    max-height: 56dvh;
  }
  .floating-whatsapp,
  .back-top {
    right: 14px;
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp { bottom: 16px; }
  .back-top { bottom: 76px; }
}

@media (max-width: 420px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .section-shell,
  .section { padding: 52px 0; }
  .nav-panel { inset-inline: 10px; }
  .hero-grid { gap: 28px; }
  .hero-actions { gap: 10px; }
  .trust-chips { gap: 8px; }
  .gallery-item { min-height: 176px; }
  .gallery-item > span:last-child { margin-top: 100px; }
  .footer-brand { max-width: 100%; }
}

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