:root {
  --ink: #101828;
  --blue: #2563eb;
  --orange: #ff6b35;
  --paper: #f8fafc;
  --muted: #64748b;
  --line: #d8e0ec;
  --white: #ffffff;
  --green: #22c55e;
  --radius: 22px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100% - 32px));
  --shadow: 0 24px 60px rgba(16, 24, 40, 0.12);
  --soft-shadow: 0 14px 34px rgba(16, 24, 40, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(216, 224, 236, 0.75);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--container);
  min-height: 72px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-word {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 880;
  letter-spacing: 0;
  line-height: 1;
}

.brand-dot {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #34445a;
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #eef4ff;
  color: var(--blue);
  outline: none;
}

.nav-toggle {
  display: none;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 820;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn--primary,
.btn--nav {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.btn--primary:hover,
.btn--nav:hover,
.btn--primary:focus-visible,
.btn--nav:focus-visible {
  background: #1d4ed8;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.27);
}

.btn--ghost,
.btn--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
}

.btn--ghost:hover,
.btn--secondary:hover,
.btn--ghost:focus-visible,
.btn--secondary:focus-visible {
  border-color: rgba(37, 99, 235, 0.55);
  color: var(--blue);
  box-shadow: var(--soft-shadow);
}

.btn--secondary {
  width: 100%;
}

.btn--light {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 78px;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 107, 53, 0.11), transparent 26%),
    radial-gradient(circle at 85% 8%, rgba(37, 99, 235, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(100, 116, 139, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 116, 139, 0.11) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

.hero-editorial {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(216, 224, 236, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #47566b;
  font-size: 0.83rem;
  font-weight: 780;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.05);
}

.hero-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.hero h1 {
  max-width: 980px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(3.05rem, 8vw, 6.35rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 660px;
  margin: 24px 0 0;
  color: #3f4d63;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.slide-cta {
  position: relative;
  width: min(100%, 520px);
  max-width: 520px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 28px;
  padding: 7px 14px 7px 7px;
  border: 1px solid rgba(216, 224, 236, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.08);
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  --track-bg: rgba(255, 255, 255, 0.76);
  --slide-cover: 190px;
}

.slide-cta__text {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0;
  padding-left: 192px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 180ms ease;
}

.slide-cta__cover {
  position: absolute;
  inset: 7px auto 7px 7px;
  z-index: 2;
  width: var(--slide-cover);
  border-radius: 999px;
  background: var(--track-bg);
  pointer-events: none;
  transition: width 180ms ease;
}

.slide-cta__handle {
  position: absolute;
  left: 7px;
  top: 7px;
  bottom: 7px;
  z-index: 3;
  min-width: 176px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.24);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 860;
  cursor: grab;
  transform: translateX(var(--slide-x, 0px));
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.slide-cta__handle:hover,
.slide-cta__handle:focus-visible {
  background: #1d4ed8;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.27);
  outline: none;
}

.slide-cta.is-dragging .slide-cta__handle {
  cursor: grabbing;
  transition: none;
}

.slide-cta.is-dragging .slide-cta__cover {
  transition: none;
}

.slide-cta.is-complete .slide-cta__handle {
  background: var(--ink);
}

.slide-cta.is-complete .slide-cta__text {
  opacity: 0.08;
}

.onepage-map {
  width: 100%;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, minmax(112px, 1fr));
  grid-auto-rows: minmax(116px, auto);
  gap: 12px;
  margin-top: 54px;
}

.map-tile {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  min-height: 116px;
  padding: 20px;
  border: 1px solid rgba(216, 224, 236, 0.96);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.055);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.map-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--soft-shadow);
}

.map-tile img {
  width: 38px;
  height: 38px;
}

.map-tile span {
  color: #2e3d52;
  font-weight: 850;
}

.map-tile small {
  display: none;
  color: #65758b;
  font-size: 0.86rem;
  line-height: 1.35;
}

.map-tile--hero {
  grid-row: span 2;
  align-content: end;
  background: var(--ink);
  color: var(--white);
}

.map-tile--hero strong {
  max-width: 360px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.04;
}

.map-tile--hero p {
  max-width: 340px;
  margin: 0;
  color: #cbd5e1;
}

.tile-label {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.15);
  color: #ffb199 !important;
  font-size: 0.78rem;
}

.map-tile--action {
  border-color: rgba(34, 197, 94, 0.32);
  background: #f0fdf4;
}

.section {
  padding: 82px 0;
}

.section--soft {
  background: var(--paper);
}

.section--statement {
  padding: 68px 0;
  background: var(--ink);
  color: var(--white);
}

.section-stack {
  display: grid;
  gap: 32px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section--statement .section-kicker,
.final-cta .section-kicker,
.section--scope .section-kicker {
  color: #dbeafe;
}

.section-heading,
.statement {
  max-width: 780px;
}

.section-heading--wide {
  max-width: 880px;
}

.section-heading h2,
.statement h2,
.scope-grid h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.8vw, 4.25rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
}

.statement h2,
.section--scope h2,
.final-cta h2 {
  color: var(--white);
}

.section-heading p,
.statement p,
.scope-grid p {
  margin: 16px 0 0;
  color: #4b5b72;
  font-size: 1.04rem;
}

.statement p,
.scope-grid p {
  color: #cbd5e1;
}

.whatsapp-system {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.phone-panel {
  overflow: hidden;
  border: 1px solid rgba(216, 224, 236, 0.96);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid #e7edf5;
  color: #34445a;
  font-weight: 840;
}

.phone-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.chat-line,
.share-card {
  margin: 18px;
  border-radius: 18px;
  padding: 14px 16px;
}

.chat-line {
  width: max-content;
  max-width: calc(100% - 36px);
  background: #f1f5f9;
  color: #34445a;
  font-weight: 720;
}

.chat-line--answer {
  margin-left: auto;
  background: #eef4ff;
  color: #1e3a8a;
}

.share-card {
  display: grid;
  gap: 8px;
  border: 1px solid #dbe4f0;
  background: #fff;
}

.share-card span {
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 820;
}

.share-card strong {
  font-size: 1.15rem;
}

.whatsapp-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  font-weight: 760;
}

.mini-list img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.whatsapp-copy p {
  margin: 0;
  color: #cbd5e1;
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.plan-card,
.scope-card {
  border: 1px solid rgba(216, 224, 236, 0.96);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.045);
}

.feature-card {
  min-height: 178px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: var(--soft-shadow);
}

.feature-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
}

.feature-card h3,
.plan-card h3,
.process-step h3,
.scope-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.feature-card p,
.plan-card p,
.process-step p {
  margin: 0;
  color: #53637a;
}

.section--plans {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 26px;
}

.plan-body {
  display: grid;
  gap: 16px;
}

.plan-card .btn {
  margin-top: auto;
}

.plan-card--featured {
  border-color: rgba(37, 99, 235, 0.7);
  box-shadow: 0 22px 58px rgba(37, 99, 235, 0.14);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.12);
  color: #c2410c;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-head {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e7edf5;
}

.plan-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 860;
}

.plan-head strong {
  color: var(--ink);
  font-size: clamp(2.45rem, 6vw, 4rem);
  line-height: 1;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: #34445a;
  font-weight: 690;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.36em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    linear-gradient(var(--blue), var(--blue)) center / 7px 2px no-repeat,
    #eef4ff;
}

.plan-note {
  padding: 12px;
  border-radius: 16px;
  background: #f8fafc;
  color: #4b5b72 !important;
  font-size: 0.92rem;
  font-weight: 720;
}

.plans-keynote {
  max-width: 720px;
  margin: -4px 0 0;
  padding: 13px 16px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 16px;
  background: #eef4ff;
  color: #1e3a8a;
  font-size: 0.96rem;
  font-weight: 820;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

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

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(216, 224, 236, 0.96);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.04);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.section--scope {
  background: var(--ink);
  color: var(--white);
}

.scope-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

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

.scope-card {
  padding: 24px;
}

.scope-card--muted {
  background: #f8fafc;
}

.scope-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: #45566d;
}

.section--faq {
  padding: 64px 0;
  background: #ffffff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.section--faq .section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.85rem);
}

.section--faq .section-heading p:not(.section-kicker) {
  max-width: 320px;
  font-size: 0.98rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  color: var(--ink);
  font-size: clamp(0.98rem, 1.45vw, 1.15rem);
  font-weight: 840;
  line-height: 1.25;
}

.faq-item summary b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(216, 224, 236, 0.95);
  border-radius: 50%;
  color: var(--blue);
  font-size: 0.95rem;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-item[open] summary b {
  transform: rotate(90deg);
  background: var(--blue);
  color: #fff;
}

.faq-item p {
  max-width: 690px;
  margin: -2px 44px 16px 0;
  color: #4b5b72;
  font-size: 0.94rem;
  line-height: 1.56;
  text-align: left;
}

.final-cta {
  padding: 72px 0;
  background: var(--blue);
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.final-cta h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid #e3eaf4;
  background: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

@media (min-width: 761px) {
  .footer-inner {
    padding-right: 74px;
  }
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-copy {
  display: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: #34445a;
  font-size: 0.92rem;
  font-weight: 760;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue);
  outline: none;
}

.quick-help {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
}

.quick-help-toggle {
  position: relative;
  width: 156px;
  height: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0 16px 0 46px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #14532d;
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.13);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
  overflow: hidden;
  line-height: 1;
  transition:
    width 240ms ease,
    padding 240ms ease,
    transform 240ms ease,
    border-radius 240ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.quick-help-toggle:hover,
.quick-help-toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 18px 38px rgba(16, 24, 40, 0.16);
  outline: none;
}

.quick-help-toggle img {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin: 0;
  transform: translateY(-50%);
  transition:
    left 240ms ease,
    width 180ms ease,
    height 180ms ease,
    transform 240ms ease;
}

.quick-help-toggle span {
  display: inline-block;
  max-width: 96px;
  overflow: hidden;
  white-space: nowrap;
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 160ms ease,
    max-width 220ms ease,
    transform 220ms ease;
}

.quick-help.is-near-footer .quick-help-toggle {
  width: 52px;
  height: 52px;
  min-height: 52px;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-radius: 999px;
}

.quick-help.is-near-footer .quick-help-toggle img {
  left: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
}

.quick-help.is-near-footer .quick-help-toggle span {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(6px);
}

.quick-help-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: min(340px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(216, 224, 236, 0.96);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-help-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid #e4ebf5;
  background: #f8fafc;
}

.quick-help-head strong {
  display: block;
  margin-bottom: 4px;
}

.quick-help-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.quick-help-close {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #e6edf7;
  color: var(--ink);
  font-size: 1.15rem;
  cursor: pointer;
}

.quick-help-options {
  display: grid;
  padding: 9px;
}

.quick-help-options a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  border-radius: 14px;
  color: #2b3b51;
  font-weight: 780;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.quick-help-options a:hover,
.quick-help-options a:focus-visible {
  transform: translateX(2px);
  background: #eef4ff;
  color: var(--blue);
  outline: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 980px) {
  .onepage-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .map-tile--hero {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 220px;
  }

  .whatsapp-system,
  .process-layout,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .process-list,
  .scope-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 24px, 1160px);
  }

  .nav-shell {
    min-height: 64px;
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    justify-self: end;
    display: grid;
    place-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
  }

  .nav-toggle__line {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
  }

  .nav-links {
    position: fixed;
    inset: 64px 12px auto;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-links {
    display: grid;
    justify-content: stretch;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .btn--nav {
    display: none;
  }

  .hero {
    padding: 52px 0 58px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.8rem);
  }

  .slide-cta {
    width: min(100%, 390px);
    max-width: calc(100vw - 32px);
    min-height: 56px;
    padding: 7px 14px 7px 7px;
    --slide-cover: 170px;
  }

  .slide-cta__handle {
    min-width: 160px;
    font-size: 0.84rem;
  }

  .slide-cta__text {
    padding-left: 170px;
    white-space: nowrap;
    line-height: 1.2;
  }

  .slide-cta__text::before {
    content: "Desde S/300 · Lista para compartir";
    display: block;
  }

  .slide-cta__text {
    font-size: 0;
  }

  .slide-cta__text::before {
    color: var(--muted);
    font-size: 0.72rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .feature-grid,
  .plans-grid,
  .process-list,
  .scope-columns,
  .mini-list {
    grid-template-columns: 1fr;
  }

  .onepage-map {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 9px;
    margin-top: 36px;
  }

  .map-tile {
    min-height: 0;
    grid-template-columns: auto 1fr;
    align-content: center;
    justify-items: start;
    gap: 2px 11px;
    padding: 12px 14px;
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.04);
  }

  .map-tile img {
    grid-row: 1 / span 2;
    width: 31px;
    height: 31px;
  }

  .map-tile span {
    font-size: 0.96rem;
  }

  .map-tile small {
    display: block;
    font-size: 0.8rem;
  }

  .map-tile--hero {
    min-height: 178px;
    display: grid;
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .section {
    padding: 60px 0;
  }

  .section--statement {
    padding: 56px 0;
  }

  .whatsapp-copy,
  .plan-card,
  .scope-card,
  .feature-card,
  .process-step {
    padding: 20px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-item summary {
    gap: 12px;
    padding: 14px 0;
  }

  .faq-item summary span {
    font-size: 0.98rem;
  }

  .faq-item summary b {
    width: 30px;
    height: 30px;
  }

  .faq-item p {
    margin: -1px 40px 15px 0;
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .final-cta__inner,
  .footer-inner {
    display: grid;
    justify-items: start;
    grid-template-columns: 1fr;
  }

  .footer-links {
    display: grid;
    justify-content: start;
  }

  .footer-slogan {
    display: none;
  }

  .footer-copy {
    display: block;
  }

  .quick-help {
    right: 12px;
    bottom: 12px;
  }

  .quick-help-toggle {
    width: 52px;
    height: 52px;
    min-height: 52px;
    justify-content: center;
    gap: 0;
    padding: 0;
    border-radius: 999px;
  }

  .quick-help-toggle img {
    left: 50%;
    width: 22px;
    height: 22px;
    transform: translate(-50%, -50%);
  }

  .quick-help-toggle span {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateX(6px);
  }

  .quick-help-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 66px;
    width: auto;
    max-height: min(68vh, 460px);
    overflow: auto;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
