@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap");

:root {
  --sun-1: #fadc5c;
  --sun-2: #f9c535;
  --sun-3: #f0d582;
  --sun-4: #ebc759;
  --olive: #d4be48;
  --brand-blue: #14263a;
  --brand-blue-2: #20384f;
  --paper: #f5f5ea;
  --steel: #8494a4;
  --mist: #929ca4;
  --ink: #30475a;
  --stone: #8c8c8c;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(48, 71, 90, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1160px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(250, 220, 92, 0.2), transparent 26%),
    linear-gradient(180deg, #fbfbf5 0%, var(--paper) 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  backdrop-filter: blur(0);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  backdrop-filter: blur(14px);
  background: rgba(245, 245, 234, 0.82);
  border-bottom: 1px solid rgba(132, 148, 164, 0.15);
  box-shadow: 0 12px 30px rgba(48, 71, 90, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 220ms ease;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(249, 197, 53, 0.2);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  color: rgba(48, 71, 90, 0.8);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 220ms ease;
}

.site-nav-instagram {
  display: none;
}

.site-header:not(.is-scrolled) .brand,
.site-header:not(.is-scrolled) .site-nav {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 18px rgba(20, 30, 39, 0.28);
}

.site-nav a,
.footer-meta a {
  position: relative;
}

.site-nav a::after,
.footer-meta a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--sun-2), var(--olive));
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-meta a:hover::after,
.footer-meta a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 10px;
}

.social-badge svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

.social-badge-instagram {
  background:
    radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-badge-whatsapp {
  background: #25d366;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, var(--sun-2), var(--olive));
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(249, 197, 53, 0.28);
}

.header-cta-instagram {
  gap: 10px;
}

.nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 124px 0 48px;
  color: var(--white);
}

.hero[id],
.section[id] {
  scroll-margin-top: 108px;
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(105deg, rgba(20, 30, 39, 0.74) 16%, rgba(20, 30, 39, 0.34) 52%, rgba(20, 30, 39, 0.12) 100%),
    linear-gradient(180deg, rgba(20, 30, 39, 0.04), rgba(20, 30, 39, 0.22));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100vw - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 540px) minmax(300px, 410px);
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.hero-copy,
.hero-panel,
.story-card,
.brand-card,
.service-card,
.care-card,
.mesh-card,
.coverage-map,
.installations-card {
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 520px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sun-1);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.hero-panel h2,
.care-copy h2,
.coverage-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(2.45rem, 4.4vw, 4.7rem);
  max-width: 12.4ch;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-text {
  max-width: 470px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.hero-highlights li {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-panel {
  position: relative;
  align-self: center;
  justify-self: end;
  max-width: 390px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
}

.panel-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin-top: 16px;
  font-size: clamp(1.28rem, 2vw, 1.8rem);
}

.hero-panel p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.56;
}

.panel-mesh,
.mesh-swatch {
  border-radius: var(--radius-md);
  background-color: rgba(245, 245, 234, 0.9);
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(48, 71, 90, 0.22) 0,
      rgba(48, 71, 90, 0.22) var(--mesh-line, 1.4px),
      transparent var(--mesh-line, 1.4px),
      transparent 17px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(48, 71, 90, 0.22) 0,
      rgba(48, 71, 90, 0.22) var(--mesh-line, 1.4px),
      transparent var(--mesh-line, 1.4px),
      transparent 17px
    );
}

.panel-mesh {
  width: 100%;
  height: 138px;
  margin-top: 16px;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-grid {
  display: grid;
  gap: 36px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.who-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 28px;
}

.story-card,
.brand-card,
.service-card,
.care-card,
.mesh-card,
.coverage-map,
.installations-card {
  border: 1px solid rgba(132, 148, 164, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}

.story-card,
.brand-card {
  padding: 32px;
}

.story-card {
  display: grid;
  gap: 18px;
  font-size: 1.06rem;
  line-height: 1.85;
}

.story-card p,
.brand-card p,
.service-card p,
.care-copy p,
.care-card p,
.mesh-card p,
.coverage-copy p,
.map-caption,
.installations-copy,
.footer-text {
  margin: 0;
  color: rgba(48, 71, 90, 0.78);
  line-height: 1.75;
}

.brand-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 24px;
  align-items: center;
}

.brand-card img {
  width: 104px;
  height: 104px;
  border-radius: 28px;
  object-fit: cover;
}

.brand-card h3,
.service-card h3,
.care-card h3,
.mesh-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.services::before,
.mesh-types::before,
.installations::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(235, 199, 89, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.3));
  pointer-events: none;
}

.mesh-types {
  background:
    radial-gradient(circle at top right, rgba(250, 220, 92, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 234, 0.88));
}

.service-grid,
.mesh-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.service-card {
  padding: 28px;
}

.service-index {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(250, 220, 92, 0.25), rgba(212, 190, 72, 0.3));
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.care-focus {
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(250, 220, 92, 0.18), transparent 20%),
    linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2));
}

.care-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.care-copy {
  position: relative;
  padding: 36px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  color: var(--white);
}

.care-copy h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.coverage-copy h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.2rem);
  max-width: 11ch;
}

.care-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.care-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.care-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.care-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(20, 38, 58, 0.18), rgba(20, 38, 58, 0.04));
}

.care-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 38, 58, 0.12), rgba(20, 38, 58, 0.38)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.2) 0,
      rgba(255, 255, 255, 0.2) 1px,
      transparent 1px,
      transparent 18px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.18) 0,
      rgba(255, 255, 255, 0.18) 1px,
      transparent 1px,
      transparent 18px
    );
  mix-blend-mode: screen;
  pointer-events: none;
}

.care-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center 18%;
}

.care-side > .care-visual:nth-of-type(2) img {
  object-position: center center;
}

.care-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  margin: 0;
  padding: 11px 14px;
  border-radius: 16px;
  background: rgba(20, 38, 58, 0.56);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  backdrop-filter: blur(14px);
}

.care-cards {
  grid-column: 1 / -1;
}

.care-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
}

.mesh-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.mesh-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mesh-card-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 245, 234, 0.9));
}

.mesh-card-strong {
  background:
    linear-gradient(180deg, rgba(48, 71, 90, 0.98), rgba(48, 71, 90, 0.9));
  color: var(--white);
}

.mesh-card-strong p,
.mesh-card-strong .mesh-points li {
  color: rgba(255, 255, 255, 0.78);
}

.mesh-swatch {
  height: 192px;
}

.mesh-swatch-08 {
  --mesh-line: 1.2px;
}

.mesh-swatch-09 {
  --mesh-line: 1.8px;
  background-color: rgba(245, 245, 234, 0.1);
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(250, 220, 92, 0.4) 0,
      rgba(250, 220, 92, 0.4) var(--mesh-line, 1.8px),
      transparent var(--mesh-line, 1.8px),
      transparent 17px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(250, 220, 92, 0.4) 0,
      rgba(250, 220, 92, 0.4) var(--mesh-line, 1.8px),
      transparent var(--mesh-line, 1.8px),
      transparent 17px
    );
}

.mesh-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(249, 197, 53, 0.16);
  color: inherit;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.mesh-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mesh-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(48, 71, 90, 0.82);
  line-height: 1.65;
}

.mesh-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun-2), var(--olive));
  transform: translateY(-50%);
}

.mesh-note {
  margin: 0;
  max-width: none;
  color: rgba(48, 71, 90, 0.72);
  font-size: 0.95rem;
  line-height: 1.68;
}

.mesh-explorer {
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(132, 148, 164, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 54px rgba(48, 71, 90, 0.1);
  backdrop-filter: blur(10px);
}

.mesh-sidebar {
  display: grid;
  gap: 16px;
  align-content: start;
}

.mesh-heading {
  max-width: none;
  gap: 10px;
}

.mesh-heading h2 {
  max-width: none;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
}

.mesh-selector {
  display: grid;
  gap: 12px;
}

.mesh-option {
  appearance: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: start;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(132, 148, 164, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(48, 71, 90, 0.08);
  color: var(--ink);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.mesh-option:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 197, 53, 0.34);
}

.mesh-option:focus-visible {
  outline: 3px solid rgba(249, 197, 53, 0.34);
  outline-offset: 3px;
}

.mesh-option.is-active {
  border-color: rgba(249, 197, 53, 0.4);
  background: linear-gradient(135deg, rgba(48, 71, 90, 0.98), rgba(48, 71, 90, 0.9));
  color: var(--white);
  box-shadow: 0 18px 38px rgba(48, 71, 90, 0.16);
}

.mesh-option-index {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(249, 197, 53, 0.14);
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}

.mesh-option.is-active .mesh-option-index {
  background: rgba(249, 197, 53, 0.18);
  color: var(--sun-1);
}

.mesh-option-copy {
  display: grid;
  gap: 6px;
}

.mesh-option-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.mesh-option-copy span:last-child {
  color: rgba(48, 71, 90, 0.72);
  font-size: 0.88rem;
  line-height: 1.4;
}

.mesh-option.is-active .mesh-option-copy span:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.mesh-option-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(249, 197, 53, 0.14);
  font-size: 0.76rem;
  font-weight: 800;
}

.mesh-option.is-active .mesh-option-badge {
  background: rgba(249, 197, 53, 0.18);
  color: var(--sun-1);
}

.mesh-stage {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(132, 148, 164, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.mesh-stage-light {
  background:
    radial-gradient(circle at top right, rgba(250, 220, 92, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 234, 0.9));
}

.mesh-stage-clear {
  background:
    radial-gradient(circle at top right, rgba(132, 148, 164, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 248, 0.94));
}

.mesh-stage-strong {
  background:
    radial-gradient(circle at top right, rgba(249, 197, 53, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(48, 71, 90, 0.98), rgba(48, 71, 90, 0.92));
  border-color: rgba(249, 197, 53, 0.2);
  color: var(--white);
}

.mesh-stage-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.mesh-stage-kicker {
  margin: 0 0 6px;
  color: rgba(48, 71, 90, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mesh-stage h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  letter-spacing: -0.04em;
}

.mesh-stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mesh-stage-option {
  color: rgba(48, 71, 90, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mesh-stage-body {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.mesh-stage-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.mesh-stage-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(48, 71, 90, 0.08);
  color: inherit;
  font-size: 0.88rem;
  font-weight: 700;
}

.mesh-stage-window {
  padding: 8px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mesh-preview {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at top left, rgba(250, 220, 92, 0.2), transparent 26%),
    linear-gradient(180deg, #f9fbfd, #e8eef4);
}

.mesh-preview-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.86;
  filter: contrast(1.05) saturate(0.82);
  transform: scale(1.02);
}

.mesh-preview-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(20, 38, 58, 0.78);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  backdrop-filter: blur(10px);
}

.mesh-stage-content {
  display: grid;
  gap: 10px;
  align-content: start;
}

.mesh-stage-summary {
  margin: 0;
  max-width: none;
  color: rgba(48, 71, 90, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.mesh-points {
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 2px 0 0;
}

.mesh-stage-strong .mesh-stage-kicker,
.mesh-stage-strong .mesh-stage-summary,
.mesh-stage-strong .mesh-points li,
.mesh-stage-strong .mesh-stage-option {
  color: rgba(255, 255, 255, 0.74);
}

.mesh-stage-strong .mesh-stage-window {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.mesh-stage-strong .mesh-preview-label {
  background: rgba(249, 197, 53, 0.2);
  color: var(--white);
}

.mesh-stage-strong .mesh-preview {
  background:
    radial-gradient(circle at top left, rgba(249, 197, 53, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(244, 247, 250, 0.98), rgba(230, 238, 245, 0.94));
}

.mesh-stage-strong .mesh-preview-image {
  opacity: 0.92;
  filter: contrast(1.08) saturate(0.78);
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.coverage-tag {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(249, 197, 53, 0.14);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.coverage-map {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.map-shell {
  position: relative;
  min-height: 448px;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(250, 220, 92, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08));
}

.santiago-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.03);
  z-index: 0;
}

.map-points {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.map-point {
  position: absolute;
  top: var(--top);
  left: var(--left);
  transform: translate(-50%, -50%);
}

.map-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(20, 24, 28, 0.96);
  border: 3px solid rgba(20, 24, 28, 0.96);
  box-shadow:
    0 0 0 6px rgba(20, 24, 28, 0.12),
    0 8px 18px rgba(20, 24, 28, 0.14);
}

.map-label {
  position: absolute;
  top: 50%;
  left: calc(100% + 16px);
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(48, 71, 90, 0.12);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(48, 71, 90, 0.1);
}

.map-label::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 1px;
  background: rgba(48, 71, 90, 0.22);
  transform: translateY(-50%);
  left: -10px;
}

.map-point-left .map-label {
  left: auto;
  right: calc(100% + 16px);
}

.map-point-left .map-label::before {
  left: auto;
  right: -10px;
}

.map-point-top .map-label {
  top: auto;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
}

.map-point-top .map-label::before {
  top: auto;
  bottom: -10px;
  left: 50%;
  width: 1px;
  height: 10px;
  transform: translateX(-50%);
}

.map-point-bottom .map-label {
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
}

.map-point-bottom .map-label::before {
  top: -10px;
  left: 50%;
  width: 1px;
  height: 10px;
  transform: translateX(-50%);
}

.map-caption {
  margin-top: 18px;
  color: rgba(48, 71, 90, 0.62);
}

.installations {
  padding-top: 48px;
}

.installations-layout {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.installations-card {
  padding: 30px 34px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 234, 0.9));
}

.installations-value {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 10px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.installations-value span {
  font-size: clamp(3.8rem, 8vw, 6rem);
  color: var(--ink);
}

.installations-value small {
  margin-top: 12px;
  color: var(--sun-2);
  font-size: clamp(2rem, 3vw, 2.4rem);
}

.guarantee-card {
  display: grid;
  gap: 18px;
  padding: 28px 30px;
  border: 1px solid rgba(132, 148, 164, 0.16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(250, 220, 92, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 234, 0.88));
  box-shadow: var(--shadow);
}

.guarantee-seal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.guarantee-seal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(250, 220, 92, 0.3), rgba(212, 190, 72, 0.34));
  color: var(--brand-blue);
  box-shadow: 0 12px 24px rgba(249, 197, 53, 0.14);
}

.guarantee-seal-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.guarantee-kicker {
  margin: 0 0 8px;
  color: rgba(48, 71, 90, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guarantee-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.22rem, 1.7vw, 1.56rem);
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.guarantee-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.guarantee-points li {
  position: relative;
  padding-left: 20px;
  color: rgba(48, 71, 90, 0.82);
  line-height: 1.58;
}

.guarantee-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun-2), var(--olive));
  transform: translateY(-50%);
}

.faq {
  padding-top: 36px;
}

.faq-layout {
  display: grid;
  gap: 28px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(132, 148, 164, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  overflow: clip;
}

.faq-item summary {
  position: relative;
  padding: 22px 60px 22px 24px;
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: rgba(48, 71, 90, 0.62);
  transform: translateY(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(48, 71, 90, 0.78);
  line-height: 1.75;
}

.site-footer {
  margin-top: 24px;
  padding: 28px 0 38px;
  background: linear-gradient(180deg, rgba(48, 71, 90, 0.96), rgba(36, 54, 68, 0.98));
  color: rgba(255, 255, 255, 0.86);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto auto;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  margin: 0 0 8px;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.footer-meta {
  display: flex;
  gap: 18px;
  font-weight: 600;
}

.footer-contact {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.footer-social:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 197, 53, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 14px;
}

.footer-social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-social-copy {
  display: grid;
  gap: 2px;
}

.footer-social-copy span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-social-copy strong {
  font-size: 0.96rem;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #10361e;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(37, 211, 102, 0.34);
}

.whatsapp-float-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-year {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-content,
  .mesh-explorer,
  .who-layout,
  .care-layout,
  .coverage-layout,
  .installations-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    width: var(--container);
    justify-content: initial;
    gap: 28px;
  }

  .hero-copy,
  .hero-text,
  .hero-panel {
    max-width: none;
  }

  .mesh-heading h2,
  .mesh-note {
    max-width: none;
  }

  .footer-contact {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: fixed;
    backdrop-filter: none;
    background: linear-gradient(180deg, rgba(20, 30, 39, 0.58) 0%, rgba(20, 30, 39, 0.2) 72%, transparent 100%);
    border-bottom: 0;
    box-shadow: none;
  }

  .site-header:not(.is-scrolled) .brand,
  .site-header:not(.is-scrolled) .site-nav {
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 1px 14px rgba(20, 30, 39, 0.24);
  }

  .site-header.is-scrolled {
    backdrop-filter: blur(14px);
    background: rgba(245, 245, 234, 0.88);
    border-bottom: 1px solid rgba(132, 148, 164, 0.15);
  }

  .site-header.is-menu-open:not(.is-scrolled) {
    backdrop-filter: blur(14px);
    background: rgba(20, 30, 39, 0.34);
  }

  .site-header.is-scrolled .brand,
  .site-header.is-scrolled .site-nav {
    color: var(--ink);
    text-shadow: none;
  }

  .site-nav {
    display: none;
    width: min(220px, calc(100vw - 32px));
    order: 3;
    grid-column: 1 / -1;
    justify-self: end;
    margin-top: 6px;
    padding: 12px;
    border-radius: 24px;
    background:
      radial-gradient(circle at top right, rgba(250, 220, 92, 0.18), transparent 30%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 234, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.54);
    box-shadow: 0 20px 42px rgba(20, 30, 39, 0.16);
    backdrop-filter: blur(18px);
  }

  .site-nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 246, 248, 0.92));
    color: var(--ink);
    font-family: "Sora", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-shadow: none;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.6),
      0 8px 18px rgba(48, 71, 90, 0.08);
  }

  .site-nav a::after {
    content: "›";
    position: static;
    width: auto;
    height: auto;
    transform: none;
    background: none;
    color: rgba(48, 71, 90, 0.42);
    font-size: 1rem;
    font-weight: 800;
  }

  .site-nav a::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sun-2), var(--olive));
    box-shadow: 0 0 0 5px rgba(249, 197, 53, 0.12);
  }

  .site-nav-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .site-nav-instagram .social-badge {
    width: 22px;
    height: 22px;
    border-radius: 8px;
  }

  .site-nav-instagram .social-badge svg {
    width: 12px;
    height: 12px;
  }

  .site-nav-instagram::before {
    display: none;
  }

  .site-header.is-scrolled .site-nav a {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 246, 248, 0.92));
  }

  .site-header.is-scrolled .site-nav {
    background:
      radial-gradient(circle at top right, rgba(250, 220, 92, 0.18), transparent 30%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 234, 0.92));
    border-color: rgba(132, 148, 164, 0.16);
  }

  .site-header.is-menu-open .site-nav {
    display: grid;
    gap: 6px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: auto;
    padding: 16px 0 14px;
    gap: 10px 12px;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: none;
    font-size: 0.82rem;
    line-height: 1.1;
  }

  .brand img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand span {
    max-width: 110px;
    opacity: 0.96;
  }

  .header-tools {
    gap: 10px;
  }

  .header-cta-instagram {
    width: auto;
    min-width: auto;
    min-height: 38px;
    padding: 0;
    gap: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .header-cta-instagram .social-badge {
    width: 24px;
    height: 24px;
    border-radius: 8px;
  }

  .header-cta-instagram .social-badge svg {
    width: 13px;
    height: 13px;
  }

  .header-cta-instagram > span:last-child {
    display: none;
  }

  .header-cta-instagram {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
  }

  .site-header.is-scrolled .nav-toggle {
    background: rgba(48, 71, 90, 0.08);
    color: var(--ink);
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .hero {
    min-height: 100svh;
    padding: 108px 0 34px;
    align-items: end;
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(20, 30, 39, 0.12) 0%, rgba(20, 30, 39, 0.08) 20%, rgba(20, 30, 39, 0.38) 62%, rgba(20, 30, 39, 0.8) 100%),
      linear-gradient(180deg, rgba(20, 30, 39, 0.04), rgba(20, 30, 39, 0.18));
  }

  .hero-content {
    gap: 14px;
  }

  .hero-copy {
    max-width: 320px;
  }

  .hero .eyebrow {
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(20, 30, 39, 0.26);
    color: #f6dc6e;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    box-shadow: 0 10px 22px rgba(20, 30, 39, 0.12);
    text-shadow: 0 2px 16px rgba(20, 30, 39, 0.18);
    backdrop-filter: blur(12px);
  }

  .hero h1 {
    max-width: 6.7ch;
    font-size: clamp(2.2rem, 12vw, 3.35rem);
  }

  .hero-line {
    white-space: normal;
  }

  .hero-text {
    max-width: 19rem;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-actions .button-primary {
    min-height: 48px;
    padding: 0 18px;
    background: linear-gradient(135deg, #f4cf50, #ebb92d);
    box-shadow: 0 14px 24px rgba(249, 197, 53, 0.22);
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(100%, 316px);
    margin-top: 18px;
  }

  .hero-highlights li {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 16px;
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(20, 38, 58, 0.44), rgba(20, 38, 58, 0.26));
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.76rem;
    line-height: 1.34;
    box-shadow: 0 12px 24px rgba(20, 30, 39, 0.16);
    backdrop-filter: blur(14px);
  }

  .hero-highlights li:last-child {
    grid-column: 1 / -1;
  }

  .hero-panel {
    display: none;
  }

  .hero-panel,
  .story-card,
  .brand-card,
  .service-card,
  .care-copy,
  .care-card,
  .mesh-card,
  .coverage-map,
  .guarantee-card,
  .installations-card {
    padding: 24px;
  }

  .brand-card {
    grid-template-columns: 1fr;
  }

  .brand-card img {
    width: 88px;
    height: 88px;
  }

  .service-grid,
  .mesh-grid,
  .care-cards {
    grid-template-columns: 1fr;
  }

  .care-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .care-visual,
  .care-visual img {
    min-height: 160px;
  }

  .care-visual {
    border-radius: 22px;
  }

  .care-visual figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 0.74rem;
    line-height: 1.3;
  }

  .mesh-explorer {
    gap: 14px;
    padding: 16px;
    border-radius: 26px;
  }

  .guarantee-seal {
    grid-template-columns: 56px 1fr;
    gap: 14px;
  }

  .guarantee-seal-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .guarantee-seal-icon svg {
    width: 28px;
    height: 28px;
  }

  .faq-item summary {
    padding: 18px 52px 18px 18px;
    font-size: 0.94rem;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .mesh-sidebar {
    gap: 10px;
  }

  .mesh-heading h2 {
    font-size: 1.68rem;
  }

  .mesh-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mesh-option {
    gap: 4px;
    padding: 12px;
    border-radius: 16px;
    min-height: 92px;
  }

  .mesh-option-index {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.64rem;
  }

  .mesh-option-copy {
    gap: 4px;
  }

  .mesh-option-copy strong {
    font-size: 1rem;
  }

  .mesh-option-copy span:last-child {
    font-size: 0.76rem;
    line-height: 1.32;
  }

  .mesh-note {
    display: none;
  }

  .mesh-stage {
    gap: 12px;
    padding: 16px;
    border-radius: 24px;
    box-shadow: 0 18px 34px rgba(48, 71, 90, 0.08);
  }

  .mesh-stage-top {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
  }

  .mesh-stage-option {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .mesh-badge {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .mesh-stage-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    justify-items: center;
  }

  .mesh-stage-window {
    padding: 0;
    border-radius: 0;
    max-width: 190px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .mesh-preview {
    aspect-ratio: 0.9 / 1;
    border-radius: 14px;
  }

  .mesh-preview-label {
    left: 8px;
    bottom: 8px;
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .mesh-stage-content {
    gap: 10px;
  }

  .mesh-stage h3 {
    font-size: 1rem;
  }

  .mesh-stage-summary {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .mesh-points {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mesh-points li {
    padding-left: 16px;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .mesh-points li::before {
    top: 0.68em;
    width: 7px;
    height: 7px;
  }

  .section {
    padding: 72px 0;
  }

  .map-shell {
    min-height: 392px;
  }

  .map-label {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.68rem;
  }

  .footer-meta {
    flex-wrap: wrap;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    min-width: 52px;
    min-height: 52px;
    padding: 0;
    justify-content: center;
    gap: 0;
    border-radius: 999px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    padding: 14px 0 12px;
    gap: 8px 10px;
  }

  .brand {
    max-width: none;
    font-size: 0.76rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .site-nav {
    width: min(208px, calc(100vw - 28px));
    padding: 9px;
  }

  .hero {
    padding: 102px 0 30px;
  }

  .care-side {
    gap: 10px;
  }

  .care-visual,
  .care-visual img {
    min-height: 138px;
  }

  .care-visual figcaption {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 7px 8px;
    font-size: 0.68rem;
  }

  .hero h1 {
    max-width: 6.4ch;
    font-size: clamp(2.05rem, 13.5vw, 3.05rem);
  }

  .hero-highlights {
    width: min(100%, 300px);
  }

  .hero-highlights li {
    min-height: 42px;
    font-size: 0.74rem;
  }

  .mesh-heading h2 {
    font-size: 1.52rem;
  }

  .mesh-explorer {
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
  }

  .mesh-option {
    min-height: auto;
  }

  .mesh-option-copy span:last-child,
  .mesh-stage-summary {
    display: none;
  }

  .mesh-stage-body {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mesh-stage-window {
    max-width: 170px;
  }

  .mesh-preview {
    aspect-ratio: 0.86 / 1;
  }

  .mesh-points li {
    font-size: 0.75rem;
  }
}
