:root {
  --smoke: #f3f4f4;
  --berry: #853953;
  --berry-dark: #6f2f46;
  --purple: #612d53;
  --ink: #2c2c2c;
  --ink-soft: #5f5b5d;
  --white: #ffffff;
  --line: rgba(44, 44, 44, 0.12);
  --line-light: rgba(255, 255, 255, 0.13);
  --shadow: 0 30px 80px rgba(36, 18, 28, 0.18);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1200px;
  --header-height: 82px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--smoke);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

button, input, textarea, select { font: inherit; }

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

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

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

:focus-visible { outline: 3px solid rgba(133, 57, 83, .45); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

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

.section { padding: 132px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, height .35s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  height: 70px;
  color: var(--ink);
  background: rgba(243, 244, 244, .9);
  border-color: rgba(44, 44, 44, .1);
  box-shadow: 0 12px 30px rgba(30, 18, 24, .07);
  backdrop-filter: blur(18px);
}

.header-inner { height: 100%; display: flex; align-items: center; gap: 36px; }

.brand { width: 148px; flex: 0 0 auto; }

.site-header:not(.is-scrolled):not(.menu-active) .brand img { filter: brightness(0) invert(1); }

.site-nav { display: flex; align-items: center; justify-content: center; gap: 30px; margin-left: auto; }

.site-nav > a,
.site-nav__dropdown-toggle { position: relative; font-size: .88rem; font-weight: 650; letter-spacing: .015em; }

.site-nav > a::after,
.site-nav__dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  transition: right .25s var(--ease);
}

.site-nav > a:hover::after,
.site-nav__dropdown-toggle:hover::after,
.site-nav__dropdown-toggle[aria-current="page"]::after { right: 0; }

.site-nav__dropdown { position: relative; }

.site-nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.site-nav__dropdown-toggle > span { display: inline-block; font-size: .95rem; line-height: 1; transform: translateY(-1px); transition: transform .25s var(--ease); }
.site-nav__dropdown.is-open .site-nav__dropdown-toggle > span { transform: rotate(180deg) translateY(1px); }

.site-nav__panel {
  position: absolute;
  z-index: 10;
  top: calc(100% + 24px);
  left: 50%;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 26px;
  width: min(780px, calc(100vw - 48px));
  min-width: 0;
  padding: 24px;
  color: var(--ink);
  background: rgba(248, 248, 249, .98);
  border: 1px solid rgba(44, 44, 44, .12);
  border-radius: 18px;
  box-shadow: 0 24px 65px rgba(30, 18, 24, .18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px);
  visibility: hidden;
  isolation: isolate;
  overflow: hidden;
  transition: opacity .22s ease, transform .3s var(--ease), visibility .22s ease;
}

.site-nav__dropdown.is-open .site-nav__panel { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); visibility: visible; }

.site-nav__intro { padding: 10px 10px 8px 4px; }
.site-nav__intro .eyebrow { margin-bottom: 18px; font-size: .6rem; }
.site-nav__intro h2 { margin: 0; font-size: 1.55rem; line-height: 1.08; letter-spacing: -.045em; }
.site-nav__intro p { margin: 14px 0 22px; color: var(--ink-soft); font-size: .84rem; line-height: 1.5; }
.site-nav__all-link { display: inline-flex; align-items: center; gap: 8px; color: var(--berry); font-size: .78rem; font-weight: 800; }
.site-nav__all-link span { transition: transform .25s var(--ease); }
.site-nav__all-link:hover span { transform: translate(3px, -3px); }

.site-nav__items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.site-nav__item { display: grid; grid-template-columns: 25px minmax(0, 1fr) 16px; gap: 9px; align-items: start; min-width: 0; min-height: 108px; padding: 16px 13px; color: var(--ink); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .2s ease, background .2s ease; }
.site-nav__item:hover { color: var(--white); background: var(--berry); }
.site-nav__item-number { color: var(--berry); font-size: .7rem; font-weight: 800; }
.site-nav__item:hover .site-nav__item-number { color: rgba(255,255,255,.68); }
.site-nav__item-copy { display: flex; flex-direction: column; gap: 6px; }
.site-nav__item-copy strong { font-size: .84rem; line-height: 1.2; }
.site-nav__item-copy small { color: var(--ink-soft); font-size: .74rem; line-height: 1.4; }
.site-nav__item:hover .site-nav__item-copy small { color: rgba(255,255,255,.7); }
.site-nav__item-arrow { color: var(--berry); font-size: .85rem; transition: transform .25s var(--ease); }
.site-nav__item:hover .site-nav__item-arrow { color: var(--white); transform: translate(2px, -2px); }

.header-cta { margin-left: 10px; }
.header-mobile-cta { display: none; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 11px;
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  gap: 14px;
  color: var(--white);
  background: var(--berry);
  border: 1px solid var(--berry);
  border-radius: 999px;
  font-size: .91rem;
  font-weight: 750;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, box-shadow .25s ease;
}

.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .25s var(--ease); }
.button:hover { transform: translateY(-2px); background: var(--berry-dark); box-shadow: 0 14px 28px rgba(94, 35, 60, .2); }
.button:hover svg { transform: translateX(3px); }
.button--small { min-height: 42px; padding: 0 18px; font-size: .8rem; }
.button--small svg { width: 16px; }
.button--light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button--light:hover { color: var(--white); background: var(--berry); border-color: var(--berry); }
.button--outline-light { color: var(--white); background: rgba(255,255,255,.03); border-color: rgba(201,134,159,.8); }
.button--outline-light:hover { color: var(--white); background: var(--berry); border-color: var(--berry); }
.button--intro-cta { min-height: 48px; padding: 0 20px; color: var(--white); background: var(--berry); border-color: var(--berry); font-size: .82rem; }
.button--intro-cta:hover { color: var(--white); background: var(--berry-dark); border-color: var(--berry-dark); }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--berry); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow--light { color: rgba(255, 255, 255, .72); }

.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--berry); font-size: .92rem; font-weight: 750; }
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: var(--white); }

.hero {
  position: relative;
  min-height: 790px;
  padding: 120px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 15%, rgba(133, 57, 83, .26), transparent 30%),
    linear-gradient(135deg, #211c20 0%, #2c2529 46%, #1d191c 100%);
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -20%;
  bottom: -40%;
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(97, 45, 83, .38), transparent 67%);
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent, black 30%, black 78%, transparent);
}

.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-glow--one { width: 380px; height: 380px; right: 12%; top: 20%; background: rgba(133, 57, 83, .14); box-shadow: 0 0 120px rgba(133, 57, 83, .22); }
.hero-glow--two { width: 180px; height: 180px; right: 37%; bottom: 5%; background: rgba(97, 45, 83, .18); box-shadow: 0 0 90px rgba(97, 45, 83, .25); }

.hero-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 60px; align-items: center; }

.hero-copy { position: relative; z-index: 2; padding-bottom: 22px; }
.hero-copy h1 { max-width: 680px; margin: 0; font-size: clamp(3.5rem, 5.4vw, 6.2rem); line-height: .96; letter-spacing: -.065em; font-weight: 650; }
.hero-copy h1 span { color: #c9869f; }
.hero-lead { max-width: 620px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: 1.15rem; line-height: 1.68; }
.hero-actions { display: flex; align-items: center; gap: 16px; margin-top: 38px; }

.product-stage { position: relative; min-width: 0; padding: 55px 0 48px; perspective: 1200px; }
.product-window { position: relative; z-index: 2; overflow: hidden; background: #f9f9fa; border: 1px solid rgba(255,255,255,.2); border-radius: 17px; box-shadow: 0 45px 120px rgba(0,0,0,.42); transform: rotateY(-4deg) rotateX(1.5deg); transform-origin: center; transition: transform .5s var(--ease); }
.product-stage:hover .product-window { transform: rotateY(-1deg) rotateX(0deg) translateY(-4px); }
.window-bar { height: 42px; display: flex; align-items: center; padding: 0 15px; color: #777077; background: #ecebed; border-bottom: 1px solid #ddd9dd; font-size: .57rem; }
.window-dots { display: flex; gap: 5px; }
.window-dots span { width: 6px; height: 6px; background: #c4bec3; border-radius: 50%; }
.window-title { margin: auto; }
.window-live { display: flex; align-items: center; gap: 5px; }
.window-live span { width: 6px; height: 6px; background: #6cac85; border-radius: 50%; }
.window-body { display: grid; grid-template-columns: 48px 1fr; min-height: 435px; }
.mock-sidebar { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 12px 0; background: var(--ink); }
.mock-mark { display: grid; place-items: center; width: 26px; height: 26px; margin-bottom: 7px; color: var(--white); background: var(--berry); border-radius: 7px; font-size: .8rem; font-weight: 800; }
.mock-sidebar > span { width: 15px; height: 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 4px; }
.mock-sidebar > span.is-active { background: rgba(196,122,149,.28); border-color: #c47a95; box-shadow: 0 0 0 5px rgba(196,122,149,.08); }
.mock-content { padding: 22px; color: var(--ink); }
.mock-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mock-heading div:first-child { display: flex; flex-direction: column; }
.mock-heading small { color: #918a8f; font-size: .55rem; }
.mock-heading strong { font-size: .9rem; }
.mock-avatar { display: grid; place-items: center; width: 27px; height: 27px; color: var(--white); background: var(--purple); border-radius: 50%; font-size: .5rem; }
.metric-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.metric-row article { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 13px; background: var(--white); border: 1px solid #e8e5e7; border-radius: 8px; }
.metric-row small { color: #938d91; font-size: .48rem; white-space: nowrap; }
.metric-row strong { margin-top: 3px; font-size: 1.15rem; line-height: 1.2; }
.metric-row em { position: absolute; top: 14px; right: 10px; color: #6b9e7d; font-size: .42rem; font-style: normal; }
.dashboard-grid { display: grid; grid-template-columns: 1.5fr .8fr; gap: 9px; margin-top: 9px; }
.chart-card, .status-card, .mock-table { padding: 13px; background: var(--white); border: 1px solid #e8e5e7; border-radius: 8px; }
.card-heading { display: flex; justify-content: space-between; color: #4f494d; font-size: .51rem; font-weight: 700; }
.card-heading small { color: #aaa3a8; font-size: .43rem; font-weight: 500; }
.bar-chart { height: 93px; display: flex; align-items: end; gap: 7%; padding: 14px 5px 0; border-bottom: 1px solid #eee9ec; background: repeating-linear-gradient(to bottom, transparent 0 30px, #f2eff1 31px); }
.bar-chart i { flex: 1; height: var(--h); min-width: 5px; background: linear-gradient(to top, var(--purple), #a9617c); border-radius: 3px 3px 0 0; }
.chart-labels { display: flex; justify-content: space-around; padding-top: 5px; color: #aaa4a8; font-size: .38rem; }
.status-card { display: flex; flex-direction: column; }
.status-ring { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 79px; height: 79px; margin: 12px auto 8px; border: 8px solid #eee8ec; border-top-color: var(--berry); border-right-color: var(--berry); border-radius: 50%; }
.status-ring b { font-size: .95rem; line-height: 1; }
.status-ring small { color: #999096; font-size: .4rem; }
.status-legend { display: flex; flex-direction: column; gap: 4px; color: #8e878c; font-size: .39rem; }
.status-legend span { display: flex; align-items: center; gap: 4px; }
.status-legend i { width: 5px; height: 5px; background: var(--berry); border-radius: 50%; }
.status-legend span:last-child i { background: #ddd4d9; }
.mock-table { margin-top: 9px; }
.table-row { display: grid; grid-template-columns: 1.4fr 1fr .8fr; align-items: center; min-height: 25px; color: #716b6f; border-top: 1px solid #f0edf0; font-size: .44rem; }
.table-row--head { min-height: 20px; margin-top: 8px; color: #aca5a9; }
.tag { width: fit-content; padding: 2px 5px; color: #896d42; background: #f8f1df; border-radius: 99px; }
.tag--done { color: #598368; background: #e7f2eb; }

.orbit { position: absolute; z-index: 0; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.orbit--two::after { content: ""; position: absolute; width: 7px; height: 7px; background: #ba758f; border-radius: 50%; box-shadow: 0 0 18px #ba758f; }
.orbit--one { inset: 7% -10% 0 5%; transform: rotate(-8deg); }
.orbit--two { inset: 14% -2% 10% 12%; transform: rotate(10deg); }
.orbit--two::after { right: 8%; top: 27%; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; padding: 11px 13px; color: var(--ink); background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.62); border-radius: 10px; box-shadow: 0 18px 45px rgba(0,0,0,.22); backdrop-filter: blur(10px); }
.floating-card--left { left: -32px; bottom: 68px; }
.floating-card--right { right: -26px; top: 105px; }
.floating-card div { display: flex; flex-direction: column; }
.floating-card small { color: #91888d; font-size: .42rem; }
.floating-card strong { font-size: .58rem; }
.floating-icon { display: grid; place-items: center; width: 26px; height: 26px; color: var(--white); background: var(--berry); border-radius: 7px; font-size: .75rem; }
.two-column { display: grid; grid-template-columns: .86fr 1.14fr; gap: 110px; align-items: start; }
.section-intro { position: sticky; top: 130px; }
.section-intro h2, .section-heading h2, .showcase-heading h2, .difference h2, .faq h2 { margin: 0; font-size: clamp(2.5rem, 4vw, 4.5rem); line-height: 1.05; letter-spacing: -.05em; font-weight: 630; }
.section-intro > p { max-width: 520px; margin: 26px 0; color: var(--ink-soft); font-size: 1.04rem; }
.problem-list { border-top: 1px solid var(--line); }
.problem-list article { display: grid; grid-template-columns: 55px 1fr; gap: 22px; padding: 31px 0; border-bottom: 1px solid var(--line); transition: padding-left .3s var(--ease); }
.problem-list article:hover { padding-left: 12px; }
.problem-list article > span { padding-top: 4px; color: var(--berry); font-size: .7rem; font-weight: 800; }
.problem-list h3 { margin: 0 0 8px; font-size: 1.16rem; }
.problem-list p { margin: 0; color: var(--ink-soft); font-size: .92rem; }

.services { background: var(--white); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; margin-bottom: 62px; }
.section-heading h2 { max-width: 790px; }
.section-heading > p { max-width: 440px; margin: 0 0 8px; color: var(--ink-soft); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 350px; display: flex; flex-direction: column; padding: 35px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transition: color .35s ease, background .35s ease, transform .35s var(--ease); }
.service-card::before { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: var(--berry); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.service-card:hover { z-index: 2; background: var(--smoke); transform: translateY(-4px); box-shadow: 0 22px 50px rgba(40,30,35,.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-card--featured { color: var(--white); background: var(--berry); }
.service-card--featured:hover { background: var(--purple); }
.service-card--featured::before { background: #d6a0b4; transform: scaleX(1); }
.service-icon { width: 49px; height: 49px; display: grid; place-items: center; color: var(--berry); background: rgba(133,57,83,.07); border-radius: 13px; }
.service-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.service-card--featured .service-icon { color: var(--white); background: rgba(255,255,255,.12); }
.service-number { position: absolute; top: 38px; right: 35px; color: #a59fa2; font-size: .65rem; font-weight: 800; }
.service-card--featured .service-number { color: rgba(255,255,255,.55); }
.service-card h3 { margin: 49px 0 14px; font-size: 1.45rem; letter-spacing: -.02em; }
.service-card p { margin: 0; color: var(--ink-soft); font-size: .91rem; }
.service-card--featured p { color: rgba(255,255,255,.7); }
.card-link { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 24px; color: var(--berry); font-size: .78rem; font-weight: 800; }
.service-card--featured .card-link { color: var(--white); }
.card-link span { transition: transform .25s var(--ease); }
.card-link:hover span { transform: translate(3px,-3px); }

.solution-showcase { position: relative; color: var(--white); background: #252124; overflow: hidden; }
.solution-showcase::before { content: ""; position: absolute; width: 700px; height: 700px; top: 20%; right: -350px; background: radial-gradient(circle, rgba(133,57,83,.24), transparent 66%); pointer-events: none; }
.showcase-heading { display: grid; grid-template-columns: 1.2fr .65fr; gap: 90px; align-items: end; }
.showcase-heading h2 { max-width: 760px; }
.showcase-heading > p { margin: 0 0 8px; color: rgba(255,255,255,.55); font-size: .89rem; }
.solution-tabs { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 60px; border-bottom: 1px solid var(--line-light); }
.solution-tabs button { position: relative; padding: 22px 4px; color: rgba(255,255,255,.46); background: none; border: 0; text-align: left; font-size: .88rem; cursor: pointer; transition: color .25s ease; }
.solution-tabs button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -1px; height: 2px; background: #d295ac; transition: right .35s var(--ease); }
.solution-tabs button[aria-selected="true"] { color: var(--white); }
.solution-tabs button[aria-selected="true"]::after { right: 18px; }
.solution-tabs button span { margin-right: 12px; color: #c37c96; font-size: .64rem; }
.solution-panels { margin-top: 52px; }
.solution-panel { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: center; min-height: 520px; animation: panelIn .45s var(--ease) both; }
.solution-panel[hidden] { display: none; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.concept-pill { display: inline-flex; padding: 6px 11px; color: #e7b8ca; border: 1px solid rgba(231,184,202,.3); border-radius: 99px; font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; }
.solution-copy h3 { max-width: 480px; margin: 23px 0 18px; font-size: 2rem; line-height: 1.12; letter-spacing: -.035em; }
.solution-copy > p { color: rgba(255,255,255,.6); font-size: .94rem; }
.solution-copy ul { margin: 28px 0 32px; padding: 0; list-style: none; }
.solution-copy li { display: flex; gap: 14px; padding: 13px 0; color: rgba(255,255,255,.72); border-top: 1px solid rgba(255,255,255,.09); font-size: .82rem; }
.solution-copy li:last-child { border-bottom: 1px solid rgba(255,255,255,.09); }
.solution-copy li span { color: #c7809a; font-size: .59rem; font-weight: 800; }
.solution-ui { overflow: hidden; color: var(--ink); background: #f8f8f9; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; box-shadow: 0 32px 90px rgba(0,0,0,.3); }
.ui-top { height: 42px; display: flex; align-items: center; gap: 18px; padding: 0 18px; color: #80797e; background: #eae8ea; border-bottom: 1px solid #dad7d9; font-size: .55rem; }
.ui-top b { color: var(--ink); font-size: .64rem; }
.ui-top i { display: grid; place-items: center; width: 23px; height: 23px; margin-left: auto; color: var(--white); background: var(--purple); border-radius: 50%; font-size: .43rem; font-style: normal; }
.ui-shell { display: grid; grid-template-columns: 45px 1fr; min-height: 400px; }
.ui-menu { display: flex; flex-direction: column; align-items: center; gap: 21px; padding-top: 24px; background: #332d31; }
.ui-menu span { width: 14px; height: 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 3px; }
.ui-menu span.active { background: var(--berry); border-color: var(--berry); box-shadow: 0 0 0 5px rgba(133,57,83,.16); }
.ui-main { padding: 25px; }
.ui-main--wide { min-height: 400px; }
.ui-title { display: flex; justify-content: space-between; align-items: center; }
.ui-title div { display: flex; flex-direction: column; }
.ui-title small { color: #979095; font-size: .49rem; }
.ui-title strong { font-size: .87rem; }
.ui-title .ui-button { padding: 7px 10px; color: var(--white); background: var(--berry); border-radius: 5px; font-size: .48rem; }
.ui-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 22px; }
.ui-stats span { display: flex; flex-direction: column; padding: 14px; background: var(--white); border: 1px solid #e6e2e4; border-radius: 7px; }
.ui-stats small { color: #969095; font-size: .46rem; }
.ui-stats b { margin-top: 4px; font-size: 1rem; }
.ui-table { margin-top: 15px; padding: 0 14px; background: var(--white); border: 1px solid #e6e2e4; border-radius: 7px; }
.ui-table > div { display: grid; grid-template-columns: 1.5fr 1fr .8fr .7fr; align-items: center; min-height: 44px; color: #6f686c; border-bottom: 1px solid #eee9ec; font-size: .48rem; }
.ui-table > div:first-child { min-height: 34px; color: #a39ca0; font-size: .42rem; }
.ui-table > div:last-child { border: 0; }
.ui-table em { width: fit-content; padding: 3px 7px; color: #4d845f; background: #e8f4ec; border-radius: 99px; font-style: normal; }
.ui-table em.warning { color: #996f32; background: #f8f0dd; }
.kanban { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 20px; }
.kanban > div { min-height: 280px; padding: 10px; background: #efedef; border-radius: 8px; }
.kanban header { display: flex; justify-content: space-between; margin-bottom: 12px; color: #6e676b; font-size: .47rem; font-weight: 700; }
.kanban header b { display: grid; place-items: center; width: 16px; height: 16px; color: var(--berry); background: #e1d2d8; border-radius: 4px; font-size: .4rem; }
.kanban article { display: flex; flex-direction: column; min-height: 82px; margin-bottom: 8px; padding: 11px; background: var(--white); border: 1px solid #e0dce0; border-radius: 6px; box-shadow: 0 5px 12px rgba(30,20,26,.04); }
.kanban article strong { font-size: .54rem; }
.kanban article small { margin: 3px 0 auto; color: #938c90; font-size: .43rem; }
.kanban article em { padding-top: 9px; color: var(--berry); font-size: .4rem; font-style: normal; }
.data-layout { display: grid; grid-template-columns: 1.5fr .65fr; gap: 12px; margin-top: 20px; }
.data-chart, .data-side article { background: var(--white); border: 1px solid #e5e1e3; border-radius: 8px; }
.data-chart { padding: 16px; }
.data-chart header { display: flex; justify-content: space-between; font-size: .52rem; font-weight: 700; }
.data-chart header small { color: #aaa2a7; font-size: .42rem; font-weight: 400; }
.line-chart { height: 200px; margin-top: 18px; background: repeating-linear-gradient(to bottom, #f1eef0 0 1px, transparent 1px 50px); }
.line-chart svg { width: 100%; height: 100%; overflow: visible; }
.line-chart .area { fill: url(#chartFill); }
.line-chart .line { fill: none; stroke: var(--berry); stroke-width: 3; vector-effect: non-scaling-stroke; }
.data-chart footer { display: flex; justify-content: space-between; color: #aaa3a7; font-size: .4rem; }
.data-side { display: grid; gap: 12px; }
.data-side article { display: flex; flex-direction: column; padding: 17px; }
.data-side small { color: #918a8f; font-size: .45rem; }
.data-side strong { margin: 10px 0; font-size: 1.55rem; }
.data-side span { height: 5px; background: #e9e3e6; border-radius: 99px; }
.data-side span i { display: block; height: 100%; background: var(--berry); border-radius: inherit; }
.data-side em { color: #9c6d3a; font-size: .42rem; font-style: normal; }

.process { background: var(--smoke); }
.section-heading--process { grid-template-columns: 1fr .45fr; }
.process-list { position: relative; display: grid; grid-template-columns: repeat(5,1fr); margin: 0; padding: 25px 0 0; list-style: none; }
.process-list::before { content: ""; position: absolute; top: 66px; left: 10%; right: 10%; height: 1px; background: var(--line); }
.process-list li { position: relative; padding: 0 22px; text-align: center; }
.process-list li > span { display: block; margin-bottom: 16px; color: var(--berry); font-size: .62rem; font-weight: 800; }
.process-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 48px; height: 48px; margin: 0 auto 24px; color: var(--berry); background: var(--smoke); border: 1px solid rgba(133,57,83,.3); border-radius: 50%; font-size: 1rem; transition: color .3s ease, background .3s ease, transform .3s var(--ease); }
.process-list li:hover .process-icon { color: var(--white); background: var(--berry); transform: translateY(-5px); }
.process-list h3 { margin: 0 0 10px; font-size: 1rem; }
.process-list p { margin: 0; color: var(--ink-soft); font-size: .78rem; }

.difference { position: relative; color: var(--white); background: linear-gradient(140deg, var(--purple), #3b2535 58%, #2b2028); overflow: hidden; }
.difference::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, transparent, black); }
.difference-orb { position: absolute; width: 650px; height: 650px; left: -330px; bottom: -390px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.difference-layout { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; gap: 100px; align-items: center; }
.difference-copy > p { max-width: 560px; margin: 28px 0 36px; color: rgba(255,255,255,.64); }
.difference-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.difference-grid article { min-height: 230px; padding: 30px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); transition: background .3s ease; }
.difference-grid article:hover { background: rgba(255,255,255,.05); }
.difference-grid span { color: #d598af; font-size: .62rem; font-weight: 800; }
.difference-grid h3 { margin: 39px 0 11px; font-size: 1.12rem; }
.difference-grid p { margin: 0; color: rgba(255,255,255,.56); font-size: .81rem; }

.manifesto { background: var(--white); }
.manifesto-layout { display: grid; grid-template-columns: .35fr 1.65fr; gap: 70px; }
.manifesto-mark { color: var(--berry); font-family: Georgia, serif; font-size: clamp(9rem, 18vw, 18rem); line-height: .7; opacity: .16; }
.manifesto-copy blockquote { max-width: 960px; margin: 0; font-size: clamp(2.2rem, 3.6vw, 4.1rem); line-height: 1.12; letter-spacing: -.045em; font-weight: 540; }
.manifesto-copy > p { max-width: 710px; margin: 35px 0 0 auto; color: var(--ink-soft); font-size: 1rem; }

.faq { background: var(--smoke); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro p { max-width: 430px; margin: 25px 0; color: var(--ink-soft); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 1fr 28px; gap: 20px; align-items: center; padding: 26px 0; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 24px; height: 24px; border: 1px solid rgba(133,57,83,.3); border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 1px; background: var(--berry); transform: translate(-50%,-50%); transition: transform .25s ease; }
.faq-list summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
.faq-list details p { max-width: 680px; margin: -8px 45px 26px 0; color: var(--ink-soft); font-size: .91rem; }

.contact-section { position: relative; padding: 94px 0; color: var(--white); background: var(--berry); overflow: hidden; isolation: isolate; }
.contact-section::after { content: ""; position: absolute; z-index: -1; width: 500px; height: 500px; right: -160px; top: -260px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255,255,255,.025), 0 0 0 130px rgba(255,255,255,.02); }
.contact-inner { display: flex; justify-content: space-between; align-items: center; gap: 70px; }
.contact-inner h2 { margin: 0; font-size: clamp(2.7rem, 4.7vw, 5.1rem); line-height: 1; letter-spacing: -.055em; }
.contact-inner p { margin: 20px 0 0; color: rgba(255,255,255,.7); }
.contact-actions { min-width: 290px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.contact-email { display: flex; flex-direction: column; color: rgba(255,255,255,.64); font-size: .7rem; }
.contact-email strong { display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-size: .86rem; }
.contact-section--home { padding: 78px 0 82px; }
.contact-section--home .contact-inner { align-items: flex-start; }
.contact-section--home .contact-actions { min-width: 360px; padding-top: 67px; }
.contact-section--home .contact-actions .button { width: 360px; min-height: 68px; padding-inline: 30px; font-size: 1rem; }
.contact-section .button--light:hover { color: var(--ink); background: #f2dfe7; border-color: #f2dfe7; }

.site-footer { padding: 74px 0 24px; background: #f8f8f8; }
.footer-main { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; padding-bottom: 65px; }
.footer-brand img { width: 160px; }
.footer-brand p { max-width: 380px; margin: 24px 0 18px; color: var(--ink-soft); font-size: .87rem; }
.footer-brand > span { color: var(--berry); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { margin-bottom: 10px; font-size: .84rem; }
.footer-links a { width: fit-content; color: var(--ink-soft); font-size: .86rem; }
.footer-links a:hover { color: var(--berry); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; color: #6f696c; border-top: 1px solid var(--line); font-size: .75rem; }
.footer-status { display: flex; align-items: center; gap: 8px; }
.footer-status i { width: 6px; height: 6px; background: #6eac82; border-radius: 50%; }

.contact-dialog { width: min(calc(100% - 32px), 430px); padding: 36px; color: var(--ink); background: var(--white); border: 0; border-radius: 22px; box-shadow: 0 35px 110px rgba(30,15,24,.35); }
.contact-dialog::backdrop { background: rgba(28,22,26,.7); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; color: #7f777c; background: transparent; border: 0; font-size: 1.6rem; cursor: pointer; }
.dialog-icon { display: grid; place-items: center; width: 46px; height: 46px; color: var(--white); background: var(--berry); border-radius: 13px; }
.contact-dialog h2 { margin: 24px 0 8px; font-size: 1.7rem; letter-spacing: -.03em; }
.contact-dialog p { margin: 0 0 25px; color: var(--ink-soft); }

.reveal { opacity: 1; transform: none; }
.reveal-ready .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal--delay { transition-delay: .12s; }
.reveal-ready .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .site-nav { gap: 20px; }
  .site-nav > a, .site-nav__dropdown-toggle { font-size: .78rem; }
  .hero-layout { grid-template-columns: .9fr 1.1fr; gap: 35px; }
  .hero-copy h1 { font-size: clamp(3.25rem, 5.4vw, 5rem); }
  .floating-card--left { left: -15px; }
  .floating-card--right { right: -12px; }
  .two-column, .faq-layout { gap: 70px; }
  .difference-layout { gap: 65px; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 100px 0; }
  .site-header { height: 72px; }
  .header-inner { gap: 12px; }
  .site-header:not(.is-scrolled):not(.menu-active) .brand img { filter: none; }
  .site-header:not(.is-scrolled):not(.menu-active) { color: var(--ink); background: rgba(243,244,244,.94); border-color: rgba(44,44,44,.08); backdrop-filter: blur(18px); }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .header-mobile-cta { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 38px; margin-left: auto; padding: 0 14px; color: var(--white); background: var(--berry); border-radius: 999px; font-size: .76rem; font-weight: 800; }
  .menu-toggle { margin-left: 0; }
  .site-nav { position: fixed; inset: 70px 0 auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; max-height: calc(100vh - 70px); margin: 0; padding: 18px; overflow-y: auto; color: var(--ink); background: var(--smoke); border-bottom: 1px solid var(--line); box-shadow: 0 25px 40px rgba(30,20,25,.12); transform: translateY(-130%); visibility: hidden; opacity: 0; transition: transform .3s var(--ease), opacity .25s ease, visibility .3s; }
  .site-nav.is-open { transform: none; visibility: visible; opacity: 1; }
  .site-nav > a, .site-nav__dropdown-toggle { width: 100%; padding: 15px 10px; border-bottom: 1px solid var(--line); font-size: .92rem; text-align: left; }
  .site-nav > a::after, .site-nav__dropdown-toggle::after { display: none; }
  .site-nav__dropdown { width: 100%; }
  .site-nav__dropdown-toggle { justify-content: space-between; }
  .site-nav__dropdown-toggle > span { margin-right: 5px; }
  .site-nav__panel { position: static; display: none; grid-template-columns: 1fr; width: 100%; padding: 12px 10px 16px; background: transparent; border: 0; border-radius: 0; box-shadow: none; opacity: 1; transform: none; visibility: visible; }
  .site-nav__dropdown.is-open .site-nav__panel { display: grid; }
  .site-nav__intro { padding: 8px 0 16px; }
  .site-nav__intro .eyebrow { margin-bottom: 10px; }
  .site-nav__intro h2 { max-width: 560px; font-size: 1.35rem; }
  .site-nav__intro p { max-width: 560px; margin: 10px 0 15px; }
  .site-nav__items { grid-template-columns: 1fr; }
  .site-nav__item { min-height: 0; padding: 14px 12px; }
  .hero { min-height: auto; padding: 140px 0 86px; }
  .hero-layout { grid-template-columns: 1fr; gap: 35px; }
  .hero-copy { max-width: 720px; }
  .hero-copy h1 { font-size: clamp(3.5rem, 10vw, 5.5rem); }
  .product-stage { width: min(100%, 720px); margin-inline: auto; }
  .floating-card--left { left: 1%; }
  .floating-card--right { right: 1%; }
  .two-column, .faq-layout, .difference-layout, .manifesto-layout { grid-template-columns: 1fr; gap: 55px; }
  .section-intro, .faq-intro { position: static; }
  .section-heading, .showcase-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .solution-panel { grid-template-columns: 1fr; gap: 42px; }
  .solution-copy { max-width: 650px; }
  .process-list { grid-template-columns: repeat(2,1fr); gap: 42px 20px; }
  .process-list::before { display: none; }
  .process-list li:last-child { grid-column: 1 / -1; max-width: 300px; margin-inline: auto; }
  .difference-copy { max-width: 700px; }
  .manifesto-copy > p { margin-left: 0; }
  .manifesto-mark { display: none; }
  .contact-inner { align-items: flex-start; flex-direction: column; }
  .contact-section--home { padding: 76px 0 78px; }
  .contact-section--home .contact-actions { padding-top: 0; }
  .contact-section--home .contact-actions .button { width: 100%; min-height: 62px; }
  .footer-main { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .brand { width: 132px; }
  .hero { padding: 112px 0 58px; }
  .hero-copy h1 { max-width: 100%; font-size: clamp(2.9rem, 13vw, 4.2rem); line-height: .95; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .hero-secondary-action { width: auto; min-height: 42px; padding: 0 4px; background: transparent; border-color: transparent; border-radius: 0; }
  .hero-actions .hero-secondary-action:hover { background: transparent; border-color: transparent; box-shadow: none; }
  .product-stage { margin: 12px -4px 0; padding: 24px 0 10px; }
  .product-window { border-radius: 12px; transform: none; }
  .window-body { grid-template-columns: 32px 1fr; min-height: 268px; }
  .mock-sidebar { gap: 15px; }
  .mock-mark { width: 20px; height: 20px; }
  .mock-sidebar > span { width: 11px; height: 11px; }
  .mock-content { padding: 12px; }
  .metric-row { gap: 5px; }
  .metric-row article { padding: 9px 7px; }
  .metric-row strong { font-size: .85rem; }
  .metric-row em { display: none; }
  .dashboard-grid { grid-template-columns: 1fr .7fr; gap: 5px; }
  .chart-card, .status-card, .mock-table { padding: 8px; }
  .bar-chart { height: 72px; }
  .status-ring { width: 58px; height: 58px; border-width: 6px; }
  .product-window .mock-table { display: none; }
  .floating-card { display: none; }
  .section-intro h2, .section-heading h2, .showcase-heading h2, .difference h2, .faq h2 { font-size: clamp(2.25rem, 10.5vw, 3.3rem); }
  .problem-list article { grid-template-columns: 38px 1fr; gap: 10px; }
  .service-grid { grid-template-columns: 1fr; border-left: 0; }
  .service-card { min-height: 320px; padding: 30px; border-left: 1px solid var(--line); }
  .solution-tabs { display: flex; overflow-x: auto; gap: 20px; scrollbar-width: none; }
  .solution-tabs::-webkit-scrollbar { display: none; }
  .solution-tabs button { min-width: 170px; }
  .solution-panel { min-height: auto; }
  .solution-ui { margin-inline: -4px; }
  .ui-shell { grid-template-columns: 30px 1fr; min-height: 330px; }
  .ui-menu { gap: 15px; }
  .ui-menu span { width: 10px; height: 10px; }
  .ui-main { padding: 13px; }
  .ui-stats { gap: 5px; }
  .ui-stats span { padding: 9px 7px; }
  .ui-table { padding: 0 7px; }
  .ui-table > div { grid-template-columns: 1.35fr .9fr .55fr .75fr; font-size: .4rem; }
  .ui-table > div span:nth-child(2), .ui-table > div b:nth-child(2) { display: none; }
  .ui-table > div { grid-template-columns: 1.35fr .55fr .75fr; }
  .kanban { gap: 5px; }
  .kanban > div { padding: 6px; }
  .kanban article { min-height: 72px; padding: 7px; }
  .data-layout { grid-template-columns: 1fr; }
  .data-side { grid-template-columns: repeat(2,1fr); }
  .line-chart { height: 150px; }
  .process-list { grid-template-columns: 1fr; gap: 42px; }
  .process-list li:last-child { grid-column: auto; }
  .difference-grid { grid-template-columns: 1fr; }
  .difference-grid article { min-height: 200px; }
  .manifesto-copy blockquote { font-size: clamp(2rem, 9vw, 3rem); }
  .faq-list summary { font-size: .91rem; }
  .contact-section { padding: 76px 0; }
  .contact-actions, .contact-actions .button { width: 100%; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .contact-dialog { padding: 30px 24px; }
}

@media (max-width: 420px) {
  .header-mobile-cta { min-height: 36px; padding-inline: 11px; font-size: .72rem; }
  .brand { width: 124px; }
  .intro-chip--sheets, .intro-approval { display: none; }
  .home-intro__visual { min-height: 335px; }
  .intro-performance { right: 5px; bottom: 18px; }
}

/* Hero de conversión para Página Web Profesional. */
.web-service-hero {
  min-height: 720px;
  padding: 138px 0 92px;
  background: linear-gradient(135deg, #211c20, #30232c 55%, #211b20);
}

.web-service-hero__glow {
  position: absolute;
  z-index: -1;
  width: 620px;
  height: 620px;
  right: -150px;
  top: 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(133,57,83,.33), rgba(97,45,83,.08) 48%, transparent 72%);
  filter: blur(4px);
  pointer-events: none;
}

.web-service-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .8fr);
  gap: clamp(58px, 7vw, 112px);
  align-items: center;
}

.web-service-hero__copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.6rem, 6vw, 6.5rem);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 620;
}

.web-service-hero__copy h1 span { color: #ce8da5; }

.web-service-hero__copy > p {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 1.08rem;
  line-height: 1.65;
}

.web-service-hero__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 38px;
}

.web-service-hero__actions .text-link { font-size: .78rem; }

.hero-contact-form {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  padding: 36px 38px 32px;
  color: var(--ink);
  background: rgba(255,255,255,.97);
  border-top: 4px solid var(--berry);
  border-radius: 18px;
  box-shadow: 0 32px 80px rgba(0,0,0,.32);
}

.hero-contact-form__intro { margin-bottom: 24px; }

.hero-contact-form__label {
  display: block;
  margin-bottom: 12px;
  color: var(--berry);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-contact-form h2 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.hero-contact-form__intro p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: .82rem;
  line-height: 1.5;
}

.hero-contact-form__fields {
  display: grid;
  gap: 15px;
}

.hero-contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: .72rem;
  font-weight: 750;
}

.hero-contact-form input,
.hero-contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(44,44,44,.15);
  border-radius: 8px;
  outline: none;
  font-size: .84rem;
  font-weight: 400;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.hero-contact-form textarea { min-height: 84px; resize: vertical; }

.hero-contact-form input:focus,
.hero-contact-form textarea:focus {
  border-color: var(--berry);
  box-shadow: 0 0 0 3px rgba(133,57,83,.1);
}

.hero-contact-form__consent {
  display: grid !important;
  grid-template-columns: 17px 1fr;
  align-items: start;
  gap: 9px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: .66rem !important;
  font-weight: 400 !important;
  line-height: 1.35;
}

.hero-contact-form__consent input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--berry); }

.hero-contact-form > .button { width: 100%; margin-top: 20px; }

.hero-contact-form .form-status { margin: 12px 0 0; color: var(--berry); font-size: .7rem; line-height: 1.4; }

@media (max-width: 900px) {
  .web-service-hero { min-height: auto; padding: 118px 0 78px; }
  .web-service-hero__layout { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .web-service-hero__copy { max-width: 720px; }
  .hero-contact-form { max-width: 720px; margin-left: 0; }
}

@media (max-width: 620px) {
  .web-service-hero { padding: 106px 0 64px; }
  .web-service-hero__copy h1 { font-size: clamp(2.85rem, 13vw, 4.2rem); }
  .web-service-hero__copy > p { font-size: .96rem; }
  .web-service-hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .web-service-hero__actions .button { width: 100%; }
  .hero-contact-form { padding: 29px 21px 24px; border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ================================================================
   Sitio multipágina
   ================================================================ */

.site-nav > a[aria-current="page"]::after,
.site-nav__dropdown-toggle[aria-current="page"]::after { right: 0; }

.page-hero {
  position: relative;
  min-height: 590px;
  padding: 128px 0 88px;
  color: var(--white);
  background: linear-gradient(135deg, #211c20, #30252c 52%, #211b20);
  isolation: isolate;
  overflow: hidden;
}

.page-hero__grid,
.not-found__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, #000 18%, #000 82%, transparent);
}

.page-hero__orb {
  position: absolute;
  z-index: -1;
  width: 720px;
  height: 720px;
  right: -250px;
  bottom: -480px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(133,57,83,.07), 0 0 0 170px rgba(133,57,83,.04);
}

.page-hero__layout { display: grid; grid-template-columns: 1.28fr .5fr; gap: 100px; align-items: end; }
.page-hero__layout > * { min-width: 0; }
.page-hero__copy h1 { max-width: 920px; margin: 0; font-size: clamp(3.8rem, 6vw, 6.8rem); line-height: .96; letter-spacing: -.065em; font-weight: 620; }
.page-hero__copy h1 span { color: #ce8da5; }
.page-hero__copy > p { max-width: 730px; margin: 28px 0 0; color: rgba(255,255,255,.65); font-size: 1.08rem; }
.page-hero__aside { padding: 25px 0 4px 28px; border-left: 1px solid rgba(255,255,255,.18); }
.page-hero__aside > p { margin: 12px 0 20px; color: rgba(255,255,255,.58); font-size: .83rem; }
.page-hero__aside > a { color: #dfa8bc; font-size: .75rem; font-weight: 750; }
.hero-aside__number { display: block; color: var(--white); font-size: 2.3rem; line-height: 1; letter-spacing: -.04em; font-weight: 700; }
.hero-quote { color: rgba(255,255,255,.84); font-size: 1.3rem; line-height: 1.35; letter-spacing: -.02em; }

.home-intro { padding: 66px 0; overflow: hidden; background: var(--smoke); }
.home-intro__layout { display: grid; grid-template-columns: 1.08fr .72fr; gap: 90px; align-items: center; }
.home-intro__copy { padding: 18px 0; }
.home-intro h2 { max-width: 590px; margin: 0; font-size: clamp(2.5rem,3.6vw,4rem); line-height: 1.05; letter-spacing: -.052em; font-weight: 610; }
.home-intro__copy p { max-width: 500px; margin: 30px 0 28px; color: var(--ink-soft); font-size: 1rem; }
.home-intro__visual { position: relative; min-height: 500px; }
.intro-visual__halo { position: absolute; inset: 12% 4% 5% 5%; border: 1px solid rgba(133,57,83,.1); border-radius: 48% 52% 45% 55%; transform: rotate(-7deg); box-shadow: 0 0 0 30px rgba(133,57,83,.025), 0 0 0 60px rgba(133,57,83,.018); }
.intro-board { position: absolute; z-index: 2; top: 40px; left: 50%; width: min(100%, 570px); overflow: hidden; background: var(--white); border: 1px solid rgba(44,44,44,.1); border-radius: 18px; box-shadow: 0 30px 70px rgba(53,28,39,.16); transform: translateX(-50%) rotate(-1.5deg); }
.intro-board__top { display: flex; align-items: center; gap: 12px; padding: 12px 14px; color: rgba(255,255,255,.76); background: #303238; font-size: .58rem; }
.intro-board__top span { margin: auto; }
.intro-board__top b { color: rgba(255,255,255,.62); font-size: .9rem; letter-spacing: .1em; }
.intro-board__dots { display: flex; gap: 4px; }
.intro-board__dots i { width: 6px; height: 6px; background: #aeb1b7; border-radius: 50%; }
.intro-board__body { display: grid; grid-template-columns: 42px 1fr; }
.intro-board__sidebar { display: flex; flex-direction: column; align-items: center; gap: 17px; padding: 12px 0; color: rgba(255,255,255,.7); background: #292a2f; }
.intro-board__sidebar b { display: grid; place-items: center; width: 23px; height: 23px; margin-bottom: 4px; color: var(--white); background: var(--berry); border-radius: 6px; font-size: .66rem; }
.intro-board__sidebar i { display: grid; place-items: center; width: 15px; height: 15px; color: rgba(255,255,255,.62); font-size: .7rem; font-style: normal; }
.intro-board__main { min-width: 0; padding: 12px; background: #f5f4f5; }
.intro-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.intro-metrics > div, .intro-chart, .intro-alerts { padding: 12px; background: #fbfafb; border: 1px solid #ece8eb; border-radius: 9px; }
.intro-metrics > div { position: relative; display: flex; flex-direction: column; min-height: 82px; padding: 0; overflow: hidden; background: var(--white); }
.intro-metrics small { display: block; padding: 8px 10px; color: var(--white); background: #3b3c42; font-size: .43rem; }
.intro-metrics strong { margin: 9px 10px 0; color: var(--ink); font-size: .95rem; letter-spacing: -.03em; }
.intro-metrics em { margin: auto 10px 9px; color: #a85c78; font-size: .43rem; font-style: normal; font-weight: 700; }
.intro-board__content { display: grid; grid-template-columns: 1.35fr .8fr; gap: 8px; margin-top: 8px; }
.intro-card-heading { display: flex; justify-content: space-between; align-items: center; margin: -12px -12px 0; padding: 9px 12px; color: var(--white); background: #3b3c42; border-radius: 8px 8px 0 0; font-size: .5rem; }
.intro-card-heading small { color: rgba(255,255,255,.66); font-size: .42rem; font-weight: 500; }
.intro-line-chart { position: relative; height: 125px; margin-top: 13px; background: repeating-linear-gradient(to bottom, transparent 0 30px, #eee9ec 31px); border-bottom: 1px solid #e8e3e6; }
.intro-line-chart::before { content: ""; position: absolute; inset: 15% 4% 12% 4%; background: #292a2f; clip-path: polygon(0 75%, 18% 48%, 36% 62%, 54% 31%, 72% 45%, 100% 12%, 100% 19%, 72% 52%, 54% 38%, 36% 69%, 18% 55%, 0 82%); }
.intro-line-chart i { position: absolute; z-index: 1; left: var(--x); bottom: var(--y); width: 7px; height: 7px; background: var(--berry); border: 2px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 1px var(--berry); transform: translate(-50%,50%); }
.intro-chart-labels { display: flex; justify-content: space-between; padding-top: 7px; color: #aaa2a7; font-size: .4rem; }
.intro-alerts p { display: flex; align-items: center; gap: 6px; margin: 13px 0 0; color: #625b5f; font-size: .45rem; }
.intro-alerts p i { width: 6px; height: 6px; flex: 0 0 auto; background: #b15e78; border-radius: 50%; }
.intro-alerts p small { display: block; margin-left: auto; color: #a59ca1; font-size: .39rem; }
.intro-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 7px; padding: 9px 12px; color: var(--ink); background: rgba(255,255,255,.95); border: 1px solid rgba(133,57,83,.16); border-radius: 9px; box-shadow: 0 14px 30px rgba(53,28,39,.13); font-size: .58rem; }
.intro-chip span { display: grid; place-items: center; width: 22px; height: 22px; color: var(--white); background: var(--berry); border-radius: 6px; font-size: .72rem; }
.intro-chip--erp { top: 89px; left: -8px; }
.intro-chip--crm { bottom: 118px; left: 4px; }
.intro-chip--sheets { top: 176px; right: -8px; }
.intro-approval { position: absolute; z-index: 5; bottom: 15px; left: 14px; width: 290px; overflow: hidden; padding: 13px 15px; color: var(--ink); background: rgba(255,255,255,.97); border: 1px solid rgba(44,44,44,.08); border-radius: 11px; box-shadow: 0 20px 45px rgba(53,28,39,.15); }
.intro-approval > small, .intro-performance > small { display: block; margin: -13px -15px 12px; padding: 9px 15px; color: var(--white); background: #3b3c42; border-radius: 11px 11px 0 0; font-size: .47rem; font-weight: 700; }
.intro-approval > div { display: flex; align-items: center; margin-top: 8px; }
.intro-approval i { display: grid; place-items: center; width: 18px; height: 18px; flex: 0 0 auto; color: #8d858a; border: 1px solid #d6d0d4; border-radius: 50%; font-size: .48rem; font-style: normal; }
.intro-approval i.is-done, .intro-approval i.is-current { color: var(--white); background: var(--berry); border-color: var(--berry); }
.intro-approval i.is-current { box-shadow: 0 0 0 4px rgba(133,57,83,.1); }
.intro-approval div span { height: 1px; flex: 1; background: #d9d2d6; }
.intro-approval p { display: flex; justify-content: space-between; margin: 6px 0 0; color: #9a9297; font-size: .36rem; }
.intro-performance { position: absolute; z-index: 4; right: -4px; bottom: 8px; width: 148px; overflow: hidden; padding: 13px; background: rgba(255,255,255,.97); border: 1px solid rgba(44,44,44,.08); border-radius: 11px; box-shadow: 0 20px 45px rgba(53,28,39,.15); }
.intro-performance > div { display: flex; align-items: end; gap: 5px; height: 55px; margin-top: 10px; padding: 0 3px; border-bottom: 1px solid #e9e4e7; }
.intro-performance > div i { flex: 1; height: var(--h); background: linear-gradient(to top, var(--berry), #c58aa0); border-radius: 3px 3px 0 0; }
.intro-performance > b { display: block; margin-top: 8px; color: #639075; font-size: .6rem; }
.intro-performance > b small { color: #9a9297; font-size: .4rem; font-weight: 500; }

.home-services { padding: 66px 0; background: var(--white); }
.capability-card-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability-card { position: relative; min-height: 385px; display: flex; flex-direction: column; padding: 30px; color: var(--ink); background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease, transform .3s var(--ease), box-shadow .3s ease; }
.capability-card--featured { color: var(--white); background: var(--berry); border-color: rgba(255,255,255,.16); }
.capability-card:hover { z-index: 2; background: #f8f3f5; transform: translateY(-5px); box-shadow: 0 25px 55px rgba(40,25,33,.12); }
.capability-card--featured:hover { background: var(--purple); }
.capability-card__icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 52px; color: var(--berry); background: rgba(133,57,83,.08); border-radius: 12px; }
.capability-card--featured .capability-card__icon { color: var(--white); background: rgba(255,255,255,.12); }
.capability-card__icon svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.capability-card > small { color: var(--berry); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.capability-card--featured > small { color: rgba(255,255,255,.76); }
.capability-card h3 { margin: 13px 0; font-size: 1.33rem; }
.capability-card p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.capability-card--featured p { color: rgba(255,255,255,.78); }
.capability-card strong { display: flex; justify-content: space-between; margin-top: auto; color: var(--berry); font-size: .8rem; }
.capability-card--featured strong { color: var(--white); }
.capability-card strong i { font-style: normal; transition: transform .25s var(--ease); }
.capability-card:hover strong i { transform: translate(3px,-3px); }
.solution-preview { position: relative; color: var(--white); background: linear-gradient(135deg, #252124, #30232c 62%, #3b2535); overflow: hidden; }
.solution-preview::before { content: ""; position: absolute; width: 650px; height: 650px; right: -300px; top: 10%; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); pointer-events: none; }
.solution-preview .container { position: relative; z-index: 1; }
.solution-preview__intro { display: block; margin-bottom: 60px; }
.solution-preview__intro h2 { max-width: 790px; margin: 0; font-size: clamp(2.8rem, 4.5vw, 5rem); line-height: 1.02; letter-spacing: -.055em; font-weight: 610; }
.solution-selector { display: grid; grid-template-columns: .65fr 1.35fr; gap: 54px; align-items: stretch; }
.solution-tabs--vertical { display: flex; flex-direction: column; align-items: stretch; margin: 0; border-top: 1px solid var(--line-light); border-bottom: 0; }
.solution-tab { display: grid; grid-template-columns: 42px 1fr 22px; gap: 16px; align-items: center; min-height: 108px; padding: 20px 18px 20px 0; color: rgba(255,255,255,.48); background: transparent; border: 0; border-bottom: 1px solid var(--line-light); text-align: left; cursor: pointer; transition: color .25s ease, background .25s ease, padding .25s var(--ease); }
.solution-tab:hover { padding-left: 12px; color: rgba(255,255,255,.82); }
.solution-tab > span { color: #d295ac; font-size: .7rem; font-weight: 800; }
.solution-tab strong { display: flex; flex-direction: column; gap: 6px; color: inherit; font-size: 1.08rem; line-height: 1.25; }
.solution-tab small { color: #d295ac; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.solution-tab i { color: #d295ac; font-size: 1.2rem; font-style: normal; opacity: .5; transition: transform .25s var(--ease), opacity .25s ease; }
.solution-tab[aria-selected="true"] { padding-left: 18px; color: var(--white); background: rgba(133,57,83,.64); box-shadow: inset 3px 0 0 #d295ac; }
.solution-tab[aria-selected="true"] i { opacity: 1; transform: translate(3px,-3px); }
.home-solution-panels { min-width: 0; }
.home-solution-panel { display: grid; grid-template-columns: .75fr 1.25fr; gap: 34px; min-height: 405px; padding: 36px; color: var(--ink); background: #f8f8f9; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-md); box-shadow: 0 25px 65px rgba(0,0,0,.2); animation: panelIn .45s var(--ease) both; }
.home-solution-panel[hidden] { display: none; }
.home-solution-copy { display: flex; flex-direction: column; align-items: flex-start; }
.home-solution-copy .concept-pill { color: var(--berry); border-color: rgba(133,57,83,.28); }
.home-solution-copy h3 { margin: 23px 0 16px; font-size: clamp(1.75rem, 2.4vw, 2.45rem); line-height: 1.08; letter-spacing: -.04em; }
.home-solution-copy p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.home-solution-copy .button { margin-top: 32px; font-size: .82rem; }
.home-solution-visual { display: flex; flex-direction: column; min-width: 0; padding: 22px; color: var(--ink); background: #eeedef; border-radius: 14px; }
.home-solution-visual__bar { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; color: #625a5f; border-bottom: 1px solid #d9d4d8; font-size: .68rem; font-weight: 800; }
.home-solution-visual__bar small { color: #a0989d; font-size: .54rem; font-weight: 500; }
.home-solution-visual__caption { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 18px; color: #847b81; font-size: .6rem; }
.home-solution-visual__caption i { width: 6px; height: 6px; background: var(--berry); border-radius: 50%; box-shadow: 0 0 0 5px rgba(133,57,83,.1); }
.home-solution-orbit { position: relative; flex: 1; min-height: 245px; margin: 14px 0; border: 1px solid #d5cfd3; border-radius: 50%; }
.home-solution-orbit::before, .home-solution-orbit::after { content: ""; position: absolute; inset: 14% 20%; border: 1px dashed #cfc7cc; border-radius: 50%; transform: rotate(-24deg); }
.home-solution-orbit::after { inset: 25% 7%; transform: rotate(28deg); }
.home-solution-node { position: absolute; z-index: 1; display: grid; place-items: center; min-width: 74px; min-height: 42px; padding: 8px 10px; color: #6f5360; background: #fff; border: 1px solid #d8c5cd; border-radius: 8px; box-shadow: 0 8px 18px rgba(50,35,43,.08); font-size: .56rem; font-weight: 800; text-align: center; }
.home-solution-node--center { top: 50%; left: 50%; min-width: 88px; min-height: 58px; color: var(--white); background: var(--berry); border-color: var(--berry); transform: translate(-50%,-50%); }
.home-solution-node--one { top: 8%; left: 12%; }
.home-solution-node--two { top: 12%; right: 9%; }
.home-solution-node--three { right: 7%; bottom: 9%; }
.home-solution-pipeline { display: grid; grid-template-columns: 1fr 20px 1fr 20px 1fr; align-items: center; flex: 1; gap: 8px; padding: 22px 0; }
.home-solution-pipeline > div { min-height: 130px; display: flex; flex-direction: column; justify-content: center; padding: 18px 14px; background: #fff; border: 1px solid #ddd7db; border-radius: 9px; box-shadow: 0 8px 18px rgba(50,35,43,.05); }
.home-solution-pipeline span { color: var(--berry); font-size: .58rem; font-weight: 800; }
.home-solution-pipeline strong { margin-top: 11px; font-size: .75rem; }
.home-solution-pipeline small { margin-top: 6px; color: #958d92; font-size: .55rem; line-height: 1.35; }
.home-solution-pipeline > i { color: var(--berry); font-size: 1.2rem; font-style: normal; text-align: center; }
.home-solution-dashboard { display: grid; grid-template-columns: 1fr 132px; gap: 14px; flex: 1; min-height: 210px; padding: 18px 0; }
.home-solution-dashboard__main { display: flex; flex-direction: column; min-width: 0; }
.home-solution-kpis { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; margin-bottom: 12px; }
.home-solution-kpis > div { padding: 10px 12px; background: #fff; border: 1px solid #ddd7db; border-radius: 8px; }
.home-solution-kpis small, .home-solution-dashboard__side small { display: block; color: #91898f; font-size: .48rem; }
.home-solution-kpis strong { display: block; margin-top: 4px; color: var(--ink); font-size: 1rem; }
.home-solution-chart { display: flex; align-items: end; gap: 7%; flex: 1; min-height: 112px; padding: 18px 8px 0; border-bottom: 1px solid #d6d0d4; background: repeating-linear-gradient(to bottom, transparent 0 34px, #ddd7db 35px); }
.home-solution-chart i { flex: 1; height: var(--h); min-width: 7px; background: linear-gradient(to top, var(--berry), #b46c86); border-radius: 4px 4px 0 0; }
.home-solution-chart__values, .home-solution-chart__labels { display: flex; justify-content: space-around; color: #8e858b; font-size: .45rem; }
.home-solution-chart__values { padding: 7px 2px 0; color: var(--berry); font-weight: 800; }
.home-solution-chart__labels { padding-top: 4px; color: #aaa2a7; }
.home-solution-dashboard__side { display: flex; flex-direction: column; gap: 10px; }
.home-solution-dashboard__side > div { display: flex; flex: 1; flex-direction: column; justify-content: center; padding: 13px; background: #fff; border: 1px solid #ddd7db; border-radius: 9px; }
.home-solution-dashboard__side strong { margin: 7px 0 10px; color: var(--ink); font-size: 1.35rem; }
.home-solution-dashboard__side span { display: block; width: 82%; height: 6px; background: var(--berry); border-radius: 99px; }
.home-solution-dashboard__side > div:nth-child(2) span { width: 64%; background: #cfc8cd; }

.process-preview { background: var(--smoke); }
.process-preview__intro { margin-bottom: 70px; }
.process-preview h2 { max-width: 760px; margin: 0; font-size: clamp(2.6rem,4vw,4.4rem); line-height: 1.05; letter-spacing: -.05em; font-weight: 610; }
.process-timeline { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin: 0; padding: 0; list-style: none; }
.process-timeline::before { content: ""; position: absolute; z-index: 0; top: 32px; left: 10%; right: 10%; height: 1px; background: rgba(133,57,83,.28); }
.process-timeline li { position: relative; z-index: 1; padding: 0 22px; }
.process-timeline__node { display: grid; place-items: center; width: 64px; height: 64px; margin-bottom: 28px; color: var(--berry); background: var(--smoke); border: 1px solid rgba(133,57,83,.38); border-radius: 50%; transition: color .3s ease, background .3s ease, transform .3s var(--ease), box-shadow .3s ease; }
.process-timeline li:first-child .process-timeline__node { color: var(--white); background: var(--berry); border-color: var(--berry); box-shadow: 0 0 0 8px rgba(133,57,83,.08); }
.process-timeline li:hover .process-timeline__node { color: var(--white); background: var(--berry); border-color: var(--berry); transform: translateY(-4px); box-shadow: 0 10px 22px rgba(133,57,83,.18); }
.process-timeline__node span { font-size: .7rem; font-weight: 800; }
.process-timeline__content { max-width: 210px; }
.process-timeline__content h3 { margin: 0 0 10px; font-size: 1.22rem; }
.process-timeline__content p { margin: 0; color: var(--ink-soft); font-size: .9rem; line-height: 1.55; }
.process-evidence { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 64px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-evidence article { display: grid; grid-template-columns: 34px 1fr; gap: 15px; min-height: 132px; padding: 24px; background: rgba(255,255,255,.55); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-evidence article > span { padding-top: 2px; color: var(--berry); font-size: .72rem; font-weight: 800; }
.process-evidence article > div { display: flex; flex-direction: column; gap: 8px; }
.process-evidence small { color: var(--ink-soft); font-size: .76rem; }
.process-evidence strong { max-width: 260px; font-size: .94rem; line-height: 1.35; }
.process-preview__cta { display: flex; justify-content: center; margin-top: 58px; }

.home-belief { padding: 88px 0 94px; color: var(--white); background: linear-gradient(135deg,var(--purple),#382431); }
.home-belief__layout { display: block; }
.home-belief__eyebrow { margin-bottom: 28px; }
.home-belief__content { max-width: 1040px; }
.home-belief blockquote { max-width: 1040px; margin: 0; font-size: clamp(2.45rem,4.2vw,4.4rem); line-height: 1.08; letter-spacing: -.05em; }
.home-belief blockquote span { color: #efbed0; }
.home-belief__button { margin-top: 36px; }

.directory-section { background: var(--white); }
.service-directory { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-directory--catalog { grid-template-columns: repeat(6,1fr); }
.service-directory--catalog .directory-card { grid-column: span 2; }
.directory-card { position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transition: background .3s ease, transform .3s var(--ease), box-shadow .3s ease; }
.directory-card:hover { z-index: 2; background: var(--smoke); transform: translateY(-4px); box-shadow: 0 22px 55px rgba(30,20,25,.08); }
.directory-card > span { display: grid; place-items: center; width: 58px; height: 58px; color: var(--berry); background: rgba(133,57,83,.08); border-radius: 14px; }
.directory-card > span svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.directory-card > small { position: absolute; top: 44px; right: 40px; color: var(--berry); font-size: .66rem; font-weight: 800; }
.directory-card h3 { margin: 55px 0 14px; font-size: 1.8rem; letter-spacing: -.03em; }
.directory-card p { max-width: 520px; margin: 0; color: var(--ink-soft); }
.directory-card b { margin-top: auto; color: var(--berry); font-size: .76rem; }

.service-principles { background: var(--smoke); }
.split-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
.split-heading h2 { margin: 0; font-size: clamp(2.6rem,4.2vw,4.6rem); line-height: 1.05; letter-spacing: -.052em; font-weight: 610; }
.principle-stack { border-top: 1px solid var(--line); }
.principle-stack article { display: grid; grid-template-columns: 48px .75fr 1.25fr; gap: 18px; align-items: start; padding: 26px 0; border-bottom: 1px solid var(--line); }
.principle-stack span { color: var(--berry); font-size: .62rem; font-weight: 800; }
.principle-stack h3 { margin: 0; font-size: .98rem; }
.principle-stack p { margin: 0; color: var(--ink-soft); font-size: .8rem; }

.choose-path { background: var(--white); }
.choice-grid { display: grid; grid-template-columns: repeat(6,1fr); margin-top: 45px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.choice-grid article { min-height: 260px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.choice-grid article { grid-column: span 2; }
.choice-grid small { color: var(--ink-soft); font-size: .7rem; }
.choice-grid h3 { margin: 45px 0 15px; font-size: 1.2rem; }
.choice-grid a { margin-top: auto; color: var(--berry); font-size: .7rem; font-weight: 800; }

.detail-intro { background: var(--smoke); }
.detail-intro__layout { display: grid; grid-template-columns: 1.1fr .65fr; gap: 120px; align-items: end; }
.detail-intro h2 { max-width: 760px; margin: 0; font-size: clamp(2.8rem,4.5vw,5rem); line-height: 1.04; letter-spacing: -.055em; font-weight: 610; }
.detail-intro__copy p { margin: 0 0 28px; color: var(--ink-soft); font-size: 1rem; }

.web-presence-intro { background: var(--smoke); }
.web-presence-intro__layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: clamp(55px, 8vw, 120px); align-items: center; }
.web-presence-intro__visual { overflow: hidden; aspect-ratio: 1.45; background: #d9d0c9; }
.web-presence-intro__visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.web-presence-intro__copy h2 { max-width: 650px; margin: 0; font-size: clamp(2.8rem, 4.35vw, 4.7rem); line-height: 1.04; letter-spacing: -.055em; font-weight: 610; }
.web-presence-intro__copy p { max-width: 500px; margin: 26px 0 28px; color: var(--ink-soft); font-size: 1rem; }

.web-anatomy { background: var(--white); }
.web-anatomy__heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: 100px; align-items: end; margin-bottom: 58px; }
.web-anatomy__heading h2 { max-width: 780px; margin: 0; font-size: clamp(2.8rem, 4.5vw, 4.8rem); line-height: 1.04; letter-spacing: -.055em; font-weight: 610; }
.web-anatomy__heading > p { max-width: 430px; margin: 0; color: var(--ink-soft); }
.web-anatomy__layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: clamp(55px, 8vw, 115px); align-items: center; }
.web-anatomy__visual { padding: clamp(22px, 3vw, 38px); background: #272225; border-radius: 14px; box-shadow: 0 24px 55px rgba(41,31,35,.13); }
.web-anatomy__browser { overflow: hidden; background: #f6f3f0; border-radius: 8px; box-shadow: 0 18px 34px rgba(0,0,0,.2); }
.web-anatomy__browser-bar { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 14px 17px; color: var(--ink-soft); background: var(--white); border-bottom: 1px solid rgba(44,44,44,.1); }
.web-anatomy__browser-bar > span { display: flex; gap: 5px; }
.web-anatomy__browser-bar i { display: block; width: 7px; height: 7px; border-radius: 50%; background: #d1c7c4; }
.web-anatomy__browser-bar small { font-size: .58rem; letter-spacing: .04em; }
.web-anatomy__browser-bar em { color: var(--berry); font-size: .58rem; font-style: normal; font-weight: 800; }
.web-anatomy__browser-hero { min-height: 275px; display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 5vw, 62px); color: var(--white); background: linear-gradient(112deg, #3d2731, #7d3d55 72%, #b16a7f); }
.web-anatomy__browser-hero small { color: #efc7d3; font-size: .58rem; font-weight: 800; letter-spacing: .13em; }
.web-anatomy__browser-hero strong { max-width: 440px; margin: 20px 0 14px; font-size: clamp(1.8rem, 4vw, 3.6rem); line-height: .98; letter-spacing: -.055em; }
.web-anatomy__browser-hero p { max-width: 330px; margin: 0; color: rgba(255,255,255,.72); font-size: .72rem; line-height: 1.5; }
.web-anatomy__browser-hero > span { margin-top: 28px; color: #fff; font-size: .64rem; font-weight: 800; }
.web-anatomy__browser-hero > span b { margin-left: 7px; color: #efc7d3; }
.web-anatomy__browser-sections { display: grid; grid-template-columns: 1.4fr .6fr; min-height: 106px; background: var(--white); }
.web-anatomy__browser-sections > div { padding: 20px 24px; border-right: 1px solid var(--line); }
.web-anatomy__browser-sections > div:last-child { border-right: 0; }
.web-anatomy__browser-sections small { display: block; color: var(--berry); font-size: .56rem; font-weight: 800; letter-spacing: .1em; }
.web-anatomy__browser-sections > div:first-child { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.web-anatomy__browser-sections > div:first-child small { grid-column: 1 / -1; }
.web-anatomy__browser-sections > div:first-child span { height: 32px; background: #e6dcda; }
.web-anatomy__browser-sections > div:first-child span:nth-child(3) { background: #d4b4bd; }
.web-anatomy__browser-sections > div:first-child span:nth-child(4) { background: #b87b8d; }
.web-anatomy__browser-sections > div:last-child { display: flex; justify-content: space-between; }
.web-anatomy__browser-sections b { color: var(--berry); font-size: 1.1rem; }
.web-anatomy__notes { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.web-anatomy__notes li { display: grid; grid-template-columns: 45px 1fr; gap: 17px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.web-anatomy__notes li > span { color: var(--berry); font-size: .64rem; font-weight: 800; }
.web-anatomy__notes small { display: block; margin-bottom: 8px; color: var(--ink); font-size: .83rem; font-weight: 800; }
.web-anatomy__notes p { max-width: 330px; margin: 0; color: var(--ink-soft); font-size: .78rem; line-height: 1.55; }

.hotel-site { background: #f5efe8; }
.hotel-site__nav { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 16px 20px; color: #352a2b; background: #f8f5f1; border-bottom: 1px solid rgba(53,42,43,.12); }
.hotel-site__brand { display: flex; flex-direction: column; line-height: .9; }
.hotel-site__brand small { color: #8c4a5b; font-size: .43rem; font-weight: 800; letter-spacing: .16em; }
.hotel-site__brand strong { margin-top: 4px; font-family: Georgia, serif; font-size: .84rem; font-weight: 500; letter-spacing: .08em; }
.hotel-site__nav nav { display: flex; justify-content: center; gap: clamp(8px, 1.8vw, 20px); }
.hotel-site__nav nav span { color: #786c69; font-size: .48rem; }
.hotel-site__nav > b { padding: 8px 11px; color: #fff; background: #8c4a5b; border-radius: 2px; font-size: .49rem; font-weight: 700; white-space: nowrap; }
.hotel-site__nav > b i { margin-left: 4px; font-style: normal; }
.hotel-site__hero { position: relative; min-height: 282px; overflow: hidden; }
.hotel-site__hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(34,25,27,.75), rgba(34,25,27,.12) 72%), linear-gradient(0deg, rgba(20,14,16,.45), transparent 55%); content: ""; }
.hotel-site__hero img { display: block; width: 100%; height: 100%; min-height: 282px; object-fit: cover; }
.hotel-site__hero-copy { position: absolute; z-index: 1; bottom: 34px; left: 30px; max-width: 340px; color: #fff; }
.hotel-site__hero-copy small { color: #f0c9d2; font-size: .48rem; font-weight: 800; letter-spacing: .14em; }
.hotel-site__hero-copy h3 { margin: 14px 0 18px; font-family: Georgia, serif; font-size: clamp(1.7rem, 3.5vw, 3rem); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
.hotel-site__hero-copy a { color: #fff; font-size: .56rem; font-weight: 800; text-decoration: none; }
.hotel-site__hero-copy a span { margin-left: 6px; color: #f0c9d2; }
.hotel-site__booking { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 0; margin: -1px 20px 0; padding: 13px 15px; background: #fff; box-shadow: 0 10px 24px rgba(54,35,38,.1); }
.hotel-site__booking > div { display: flex; flex-direction: column; gap: 5px; padding: 0 15px; border-right: 1px solid rgba(53,42,43,.12); }
.hotel-site__booking small { color: #8c4a5b; font-size: .46rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hotel-site__booking strong { color: #352a2b; font-size: .61rem; font-weight: 600; }
.hotel-site__booking button { margin-left: 15px; padding: 0 15px; color: #8c4a5b; background: transparent; border: 0; font-size: .51rem; font-weight: 800; white-space: nowrap; }
.hotel-site__booking button span { margin-left: 4px; }
.hotel-site__intro { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: end; padding: 29px 20px 25px; }
.hotel-site__intro small { color: #8c4a5b; font-size: .45rem; font-weight: 800; letter-spacing: .12em; }
.hotel-site__intro h4 { margin: 9px 0 0; color: #352a2b; font-family: Georgia, serif; font-size: 1.16rem; font-weight: 400; }
.hotel-site__intro > span { color: #8c4a5b; font-size: .52rem; font-weight: 800; white-space: nowrap; }

@media (max-width: 800px) {
  .web-presence-intro__layout { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .web-presence-intro__visual { width: min(100%, 720px); }
  .web-presence-intro__copy { max-width: 720px; }
  .web-anatomy__heading { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .web-anatomy__layout { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .web-anatomy__notes { max-width: 720px; }
}

@media (max-width: 620px) {
  .web-presence-intro__layout { gap: 36px; }
  .web-presence-intro__copy h2 { font-size: clamp(2.3rem, 10.5vw, 3.35rem); }
  .web-presence-intro__copy p { margin-top: 21px; font-size: .95rem; }
  .web-anatomy__heading { margin-bottom: 40px; }
  .web-anatomy__heading h2 { font-size: clamp(2.3rem, 10.5vw, 3.35rem); }
  .web-anatomy__visual { padding: 14px; border-radius: 10px; }
  .web-anatomy__browser-bar { grid-template-columns: auto 1fr; gap: 10px; }
  .web-anatomy__browser-bar em { grid-column: 2; }
  .web-anatomy__browser-hero { min-height: 240px; padding: 27px; }
  .web-anatomy__browser-sections { grid-template-columns: 1fr; }
  .web-anatomy__browser-sections > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .web-anatomy__browser-sections > div:last-child { border-bottom: 0; }
  .hotel-site__nav { grid-template-columns: 1fr auto; padding: 13px 15px; }
  .hotel-site__nav nav { display: none; }
  .hotel-site__hero, .hotel-site__hero img { min-height: 250px; }
  .hotel-site__hero-copy { bottom: 25px; left: 22px; max-width: 250px; }
  .hotel-site__hero-copy h3 { margin: 11px 0 14px; font-size: 2rem; }
  .hotel-site__booking { grid-template-columns: repeat(2, 1fr); margin-inline: 12px; padding: 12px 4px; }
  .hotel-site__booking > div { padding: 0 10px; }
  .hotel-site__booking > div:nth-child(2) { border-right: 0; }
  .hotel-site__booking button { grid-column: 1 / -1; margin: 13px 0 0; padding: 8px 0 2px; border-top: 1px solid rgba(53,42,43,.12); }
  .hotel-site__intro { grid-template-columns: 1fr; gap: 16px; padding: 24px 15px 20px; }
}

.modules-section { background: var(--white); }
.module-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.module-card { min-height: 245px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease; }
.module-card:hover { background: var(--smoke); }
.module-card span { color: var(--berry); font-size: .61rem; font-weight: 800; }
.module-card h3 { margin: 48px 0 12px; font-size: 1.13rem; }
.module-card p { margin: 0; color: var(--ink-soft); font-size: .79rem; }

.signal-section { color: var(--white); background: #252124; }
.signal-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: start; }
.signal-title h2 { margin: 0; font-size: clamp(2.7rem,4.2vw,4.7rem); line-height: 1.04; letter-spacing: -.052em; font-weight: 610; }
.signal-list { border-top: 1px solid var(--line-light); }
.signal-list article { display: grid; grid-template-columns: 50px 1fr; gap: 15px; padding: 27px 0; border-bottom: 1px solid var(--line-light); }
.signal-list span { color: #d28ca6; font-size: .62rem; font-weight: 800; }
.signal-list p { margin: 0; color: rgba(255,255,255,.72); }
.web-service-signals .signal-list p { max-width: 760px; font-size: clamp(1rem, 1.25vw, 1.22rem); line-height: 1.55; }

@media (max-width: 620px) {
  .web-service-signals .signal-list p { font-size: 1rem; line-height: 1.5; }
}

.concept-demo { background: var(--smoke); }
.concept-demo__layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; align-items: center; }
.concept-demo__copy h2 { margin: 24px 0 17px; font-size: clamp(2.2rem,3.4vw,3.7rem); line-height: 1.07; letter-spacing: -.045em; font-weight: 610; }
.concept-demo__copy > p { color: var(--ink-soft); }
.concept-demo__copy ul { margin: 26px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.concept-demo__copy li { padding: 12px 0; color: var(--ink-soft); border-bottom: 1px solid var(--line); font-size: .8rem; }
.concept-demo .concept-pill { color: var(--berry); border-color: rgba(133,57,83,.25); }

.automation-map { background: var(--smoke); }
.automation-map__layout > div:first-child { display: grid; grid-template-columns: .25fr 1fr .8fr; gap: 50px; align-items: start; }
.automation-map h2 { margin: 0; font-size: clamp(2.5rem,4vw,4.5rem); line-height: 1.05; letter-spacing: -.05em; font-weight: 610; }
.automation-map__layout > div:first-child > p { margin: 0; color: var(--ink-soft); }
.automation-map .concept-pill { width: fit-content; color: var(--berry); border-color: rgba(133,57,83,.25); }
.flow-map { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 14px; align-items: stretch; margin-top: 65px; }
.flow-map article { display: flex; flex-direction: column; padding: 25px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.flow-map article span { color: var(--berry); font-size: .6rem; font-weight: 800; }
.flow-map article strong { margin-top: 18px; font-size: 1rem; }
.flow-map article small { margin-top: 7px; color: var(--ink-soft); font-size: .68rem; }
.flow-map > i { align-self: center; color: var(--berry); font-style: normal; }

.delivery-summary {
  position: relative;
  padding: 96px 0 102px;
  background: linear-gradient(118deg, rgba(133, 57, 83, .065), rgba(133, 57, 83, .018) 52%, transparent 74%), #fbf8f9;
  isolation: isolate;
  overflow: hidden;
}
.delivery-summary::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 62%;
  background-image: radial-gradient(circle, rgba(133, 57, 83, .22) .8px, transparent .9px);
  background-size: 27px 27px;
  opacity: .3;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.55) 58%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.55) 58%, transparent 100%);
}
.delivery-summary__layout {
  position: relative;
  z-index: 1;
  display: block;
}
.delivery-summary__intro {
  position: relative;
  min-height: 250px;
  padding: 0 min(29vw, 340px) 0 0;
}
.delivery-summary__intro .eyebrow,
.delivery-summary__intro h2 { position: relative; z-index: 2; }
.delivery-summary h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.8rem, 4.4vw, 4.25rem);
  line-height: 1.01;
  letter-spacing: -.05em;
  font-weight: 610;
}
.delivery-summary__pattern {
  position: absolute;
  z-index: 1;
  top: -58px;
  right: -34px;
  width: min(42vw, 500px);
  color: var(--berry);
  opacity: .12;
  pointer-events: none;
}
.delivery-summary__pattern svg { width: 100%; height: auto; overflow: visible; }
.delivery-summary__pattern svg * { vector-effect: non-scaling-stroke; }
.delivery-summary__pattern--crm { color: var(--purple); transform: rotate(-2deg); }
.delivery-summary__pattern--automatizacion { top: -42px; transform: rotate(1deg); }
.delivery-summary__pattern--portales { top: -48px; right: -18px; }
.delivery-summary__pattern--hosting { top: -54px; right: -26px; transform: rotate(-2deg); }
.delivery-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}
.delivery-steps::before {
  content: "";
  position: absolute;
  top: 23px;
  right: calc(25% - 24px);
  left: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--berry), rgba(133, 57, 83, .2));
}
.delivery-steps li {
  position: relative;
  min-width: 0;
  padding: 0 clamp(22px, 3vw, 44px) 0 0;
}
.delivery-step__node,
.scope-summary-step__node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--berry);
  background: #fbfafa;
  border: 1px solid rgba(133, 57, 83, .28);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(70, 34, 51, .08);
  font-size: .62rem;
  font-weight: 800;
}
.delivery-steps li:first-child .delivery-step__node,
.scope-summary-stack article:first-child .scope-summary-step__node { color: var(--white); background: var(--berry); border-color: var(--berry); }
.delivery-step__copy { max-width: 270px; margin-top: 22px; }
.delivery-steps h3 { margin: 0 0 7px; font-size: 1.08rem; line-height: 1.25; }
.delivery-steps p { margin: 0; color: var(--ink-soft); font-size: .82rem; line-height: 1.55; }

.related-section { padding: 75px 0; background: var(--smoke); }
.related-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.related-grid a { position: relative; min-height: 150px; display: flex; flex-direction: column; justify-content: center; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .25s ease, background .25s ease; }
.related-grid a:hover { color: var(--white); background: var(--berry); }
.related-grid small { color: var(--berry); font-size: .62rem; font-weight: 800; }
.related-grid a:hover small { color: rgba(255,255,255,.65); }
.related-grid strong { margin-top: 8px; font-size: 1.15rem; }
.related-grid span { position: absolute; top: 50%; right: 26px; transform: translateY(-50%); }

.hero-aside__label { display: block; margin-bottom: 6px; color: rgba(255,255,255,.55); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.website-preview { min-width: 0; overflow: hidden; color: var(--ink); background: var(--white); border: 1px solid rgba(44,44,44,.1); border-radius: 16px; box-shadow: 0 28px 70px rgba(45,29,37,.16); }
.website-preview__bar { display: flex; align-items: center; justify-content: center; min-height: 36px; padding: 0 16px; color: #9a9397; background: #e9e8e9; font-size: .58rem; }
.website-preview__bar > span { display: flex; gap: 5px; margin-right: auto; }
.website-preview__bar i { width: 6px; height: 6px; background: #beb8bb; border-radius: 50%; }
.website-preview__bar small { margin-right: auto; transform: translateX(-22px); }
.website-preview__nav { display: flex; align-items: center; gap: 24px; min-height: 68px; padding: 0 28px; border-bottom: 1px solid #eee9ec; }
.website-preview__nav b { margin-right: auto; color: var(--purple); font-size: .88rem; letter-spacing: -.02em; }
.website-preview__nav > div { display: flex; gap: 18px; color: #756e72; font-size: .56rem; }
.website-preview__nav em { padding: 8px 12px; color: var(--white); background: var(--berry); border-radius: 99px; font-size: .52rem; font-style: normal; font-weight: 800; }
.website-preview__hero { display: grid; grid-template-columns: 1.25fr .55fr; gap: 28px; align-items: end; min-height: 310px; padding: 42px 36px; background: linear-gradient(135deg,#fbf9fa,#f0e7eb); }
.website-preview__hero > div > small, .website-preview__services > small { color: var(--berry); font-size: .52rem; font-weight: 800; letter-spacing: .11em; }
.website-preview__hero > div > strong { display: block; max-width: 430px; margin: 17px 0 14px; font-size: clamp(1.6rem,2.5vw,2.6rem); line-height: 1.02; letter-spacing: -.052em; }
.website-preview__hero > div > p { max-width: 420px; margin: 0; color: #777075; font-size: .66rem; }
.website-preview__hero > div > span { display: inline-block; margin-top: 25px; color: var(--berry); font-size: .6rem; font-weight: 800; }
.website-preview__hero aside { display: grid; gap: 10px; }
.website-preview__hero aside div { min-height: 90px; display: flex; flex-direction: column; justify-content: center; padding: 17px; background: rgba(255,255,255,.72); border: 1px solid rgba(133,57,83,.12); border-radius: 10px; }
.website-preview__hero aside small { color: #8c8589; font-size: .5rem; }
.website-preview__hero aside b { margin-top: 5px; color: var(--berry); font-size: .78rem; }
.website-preview__services { padding: 28px 36px 34px; }
.website-preview__services > div { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 16px; border-top: 1px solid #e8e3e6; border-left: 1px solid #e8e3e6; }
.website-preview__services span { min-height: 74px; display: flex; align-items: flex-end; padding: 14px; color: #60595e; border-right: 1px solid #e8e3e6; border-bottom: 1px solid #e8e3e6; font-size: .6rem; font-weight: 800; }

.web-plans { background: var(--white); }
.web-plan-list { border-top: 1px solid var(--line); }
.web-plan { display: grid; grid-template-columns: 52px minmax(0,1.15fr) minmax(190px,.7fr) 185px; gap: 30px; align-items: center; min-height: 270px; padding: 38px 28px; border-bottom: 1px solid var(--line); transition: background .25s ease; }
.web-plan:hover { background: var(--smoke); }
.web-plan--custom { background: #f8f4f6; }
.web-plan__number { align-self: start; color: var(--berry); font-size: .65rem; font-weight: 800; }
.web-plan__copy small { color: var(--berry); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.web-plan__copy h3 { margin: 14px 0 12px; font-size: 1.55rem; line-height: 1.16; letter-spacing: -.035em; }
.web-plan__copy p { max-width: 510px; margin: 0; color: var(--ink-soft); font-size: .8rem; }
.web-plan__details { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.web-plan__details span { padding: 10px 0; color: var(--ink-soft); border-bottom: 1px solid var(--line); font-size: .68rem; }
.web-plan__details span::before { content: "·"; margin-right: 8px; color: var(--berry); font-weight: 900; }
.web-plan__commercial { display: flex; flex-direction: column; align-items: flex-start; padding-left: 28px; border-left: 1px solid var(--line); }
.web-plan__commercial small { color: var(--ink-soft); font-size: .63rem; }
.web-plan__commercial strong { margin: 5px 0 13px; color: var(--berry); font-size: 1.9rem; line-height: 1; letter-spacing: -.045em; }
.web-plan__commercial span, .web-plan__commercial a { color: var(--ink-soft); font-size: .67rem; font-weight: 700; }
.web-plan__commercial a { color: var(--berry); }

.web-scope-summary {
  position: relative;
  padding: 98px 0 104px;
  background: linear-gradient(122deg, rgba(133, 57, 83, .055), transparent 62%), var(--smoke);
  isolation: isolate;
  overflow: hidden;
}
.web-scope-summary::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: 52%;
  background-image: radial-gradient(circle, rgba(133, 57, 83, .2) .8px, transparent .9px);
  background-size: 27px 27px;
  opacity: .24;
  -webkit-mask-image: linear-gradient(270deg, #000 0%, rgba(0,0,0,.45) 62%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 0%, rgba(0,0,0,.45) 62%, transparent 100%);
}
.web-scope-summary__layout { position: relative; z-index: 1; display: block; }
.web-scope-summary__layout > * { min-width: 0; }
.web-scope-summary__intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
  column-gap: clamp(70px, 9vw, 130px);
  align-items: end;
  min-height: 250px;
  padding-right: 20px;
}
.web-scope-summary__intro .eyebrow { position: relative; z-index: 2; grid-column: 1 / -1; align-self: start; }
.web-scope-summary h2 {
  position: relative;
  z-index: 2;
  grid-column: 1;
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.75rem, 4vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -.052em;
  font-weight: 610;
}
.web-scope-summary__intro > p {
  position: relative;
  z-index: 2;
  grid-column: 2;
  max-width: 430px;
  margin: 0 0 6px;
  color: var(--ink-soft);
}
.web-scope-summary__pattern {
  position: absolute;
  z-index: 1;
  top: -110px;
  right: -24px;
  width: min(40vw, 470px);
  color: var(--berry);
  opacity: .07;
  pointer-events: none;
}
.web-scope-summary__pattern svg { width: 100%; height: auto; }
.web-scope-summary__pattern svg * { vector-effect: non-scaling-stroke; }
.scope-summary-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 62px;
}
.scope-summary-stack::before {
  content: "";
  position: absolute;
  top: 23px;
  right: calc(33.333% - 24px);
  left: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--berry), rgba(133, 57, 83, .2));
}
.scope-summary-stack article { position: relative; min-width: 0; padding: 0 clamp(28px, 4vw, 58px) 0 0; }
.scope-summary-step__copy { max-width: 340px; margin-top: 22px; }
.scope-summary-stack h3 { margin: 0 0 8px; font-size: 1rem; line-height: 1.3; }
.scope-summary-stack p { margin: 0; color: var(--ink-soft); font-size: .8rem; line-height: 1.58; }

.need-routes { background: var(--smoke); }
.need-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.need-card { min-height: 500px; display: flex; flex-direction: column; padding: 38px; background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.need-card > span { color: var(--berry); font-size: .62rem; font-weight: 800; }
.need-card > small { margin-top: 50px; color: var(--berry); font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.need-card h3 { margin: 14px 0; font-size: 1.65rem; line-height: 1.2; letter-spacing: -.03em; }
.need-card p { color: var(--ink-soft); font-size: .85rem; }
.need-card ul { margin: 20px 0 30px; padding: 0; list-style: none; }
.need-card li { display: inline-flex; margin: 0 5px 5px 0; padding: 5px 9px; color: var(--berry); background: rgba(133,57,83,.07); border-radius: 99px; font-size: .63rem; }
.need-card a { margin-top: auto; color: var(--berry); font-size: .74rem; font-weight: 800; }

.combination-section { color: var(--white); background: linear-gradient(135deg,var(--purple),#33232e); }
.combination-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.combination-section h2 { margin: 0; font-size: clamp(2.6rem,4vw,4.5rem); line-height: 1.05; letter-spacing: -.05em; font-weight: 610; }
.combination-section p { color: rgba(255,255,255,.62); }
.combination-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 10px; align-items: center; }
.combination-flow span { display: grid; place-items: center; min-height: 105px; padding: 12px; text-align: center; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; font-size: .75rem; }
.combination-flow i { color: #d496ad; font-style: normal; }
.solution-boundaries { background: var(--white); }

.about-purpose {
  position: relative;
  padding: 104px 0 110px;
  background: radial-gradient(circle at 88% 8%, rgba(133,57,83,.09), transparent 34%), var(--white);
  isolation: isolate;
  overflow: hidden;
}
.about-purpose::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: 48%;
  background-image: radial-gradient(circle, rgba(133,57,83,.2) .8px, transparent .9px);
  background-size: 28px 28px;
  opacity: .22;
  -webkit-mask-image: linear-gradient(270deg, #000 0%, rgba(0,0,0,.5) 62%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 0%, rgba(0,0,0,.5) 62%, transparent 100%);
}
.about-purpose__layout { display: block; }
.about-purpose__manifesto { max-width: 1200px; margin-inline: auto; }
.about-purpose__opening { position: relative; display: flex; align-items: center; min-height: 64px; margin-bottom: 18px; padding-left: 22px; }
.about-purpose__opening > span {
  position: absolute;
  z-index: -1;
  top: -56px;
  left: -14px;
  color: var(--berry);
  font-family: Georgia, serif;
  font-size: 11rem;
  line-height: 1;
  font-weight: 700;
  opacity: .12;
}
.about-purpose__opening .eyebrow { margin: 0; }
.about-purpose__body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(350px, .65fr);
  gap: clamp(56px, 7vw, 96px);
  align-items: center;
}
.about-purpose blockquote {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.9rem, 4.5vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -.052em;
  text-wrap: balance;
}
.about-purpose blockquote em { color: var(--berry); font-family: Georgia, serif; font-weight: 500; }
.about-purpose__closing {
  display: inline-block;
  margin-left: .04em;
  color: var(--berry);
  font-family: Georgia, serif;
  font-size: 1.12em;
  line-height: 0;
  transform: translateY(.16em);
}
.about-purpose__constellation { position: relative; min-height: 380px; color: var(--berry); }
.about-purpose__constellation > div { position: absolute; inset: 0; }
.about-purpose__constellation svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .2; }
.about-purpose__constellation svg * { vector-effect: non-scaling-stroke; }
.about-purpose__node {
  position: absolute;
  z-index: 2;
  padding: 9px 14px;
  color: var(--berry);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(133,57,83,.24);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(68,33,49,.08);
  font-size: .68rem;
  font-weight: 800;
}
.about-purpose__node--people { top: 14%; left: 3%; transform: translate(-4%, -50%); }
.about-purpose__node--information { top: 14%; right: 3%; transform: translate(4%, -50%); }
.about-purpose__node--decisions { bottom: 8%; left: 50%; transform: translate(-50%, 50%); }
.about-purpose__core {
  position: absolute;
  z-index: 3;
  top: 51%;
  left: 50%;
  width: 150px;
  height: 150px;
  display: grid;
  place-content: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--berry), var(--purple));
  border: 8px solid rgba(255,255,255,.76);
  border-radius: 50%;
  box-shadow: 0 24px 55px rgba(71,31,49,.2);
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.05;
  transform: translate(-50%, -50%);
}
.about-purpose__core small { margin-bottom: 8px; color: rgba(255,255,255,.68); font-size: .54rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.about-purpose__annotation { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.about-purpose__annotation p { max-width: 760px; margin: 0; color: var(--ink-soft); }

@media (max-width: 900px) {
  .about-purpose__body { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .about-purpose blockquote { max-width: 820px; font-size: clamp(2.6rem, 6vw, 3.6rem); }
  .about-purpose__constellation { width: min(100%, 500px); min-height: 360px; margin-left: auto; }
  .about-purpose__annotation { margin-top: 26px; }
}

@media (max-width: 620px) {
  .about-purpose { padding: 74px 0 80px; }
  .about-purpose::before { width: 100%; opacity: .16; }
  .about-purpose__opening { min-height: 48px; margin-bottom: 12px; padding-left: 10px; }
  .about-purpose__opening > span { top: -42px; left: -10px; font-size: 8rem; }
  .about-purpose blockquote { font-size: clamp(2.4rem, 11vw, 3.1rem); }
  .about-purpose__body { gap: 22px; }
  .about-purpose__constellation { width: 100%; min-height: 310px; }
  .about-purpose__core { width: 124px; height: 124px; border-width: 6px; font-size: .92rem; }
  .about-purpose__node { padding: 7px 10px; font-size: .6rem; }
  .about-purpose__annotation { margin-top: 22px; padding-top: 22px; }
  .about-purpose__annotation p { font-size: .9rem; }
}

.values-section { background: var(--smoke); }
.value-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-grid article { min-height: 275px; padding: 35px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-grid span { color: var(--berry); font-size: .62rem; font-weight: 800; }
.value-grid h3 { margin: 65px 0 12px; font-size: 1.35rem; }
.value-grid p { margin: 0; color: var(--ink-soft); font-size: .82rem; }

.peru-focus { color: var(--white); background: linear-gradient(135deg,var(--purple),#34242e); }
.peru-focus__layout { display: grid; grid-template-columns: 1fr .7fr; gap: 110px; align-items: center; }
.peru-focus h2 { margin: 0; font-size: clamp(2.7rem,4.4vw,4.9rem); line-height: 1.05; letter-spacing: -.052em; font-weight: 610; }
.peru-focus__layout > div:last-child { padding-left: 40px; border-left: 1px solid var(--line-light); }
.peru-focus p { color: rgba(255,255,255,.64); }

.audience-section { background: radial-gradient(circle at 8% 92%,rgba(133,57,83,.055),transparent 32%),var(--white); }
.audience-heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.62fr); gap: clamp(70px,9vw,135px); align-items: end; }
.audience-heading h2 { max-width: 17ch; margin: 0; font-size: clamp(2.8rem,3.8vw,3.7rem); line-height: 1.05; letter-spacing: -.05em; font-weight: 610; text-wrap: balance; }
.audience-heading h2 span { color: var(--berry); }
.audience-heading > p { max-width: 48ch; margin: 0 0 5px; color: var(--ink-soft); }
.audience-map { position: relative; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(42px,6vw,88px); margin-top: 68px; }
.audience-map::before { position: absolute; top: 21px; right: 0; left: 0; height: 1px; content: ""; background: linear-gradient(90deg,rgba(133,57,83,.42),rgba(133,57,83,.16)); }
.audience-map article { position: relative; padding: 70px 0 8px; }
.audience-map article > span { position: absolute; z-index: 1; top: 0; left: 0; width: 43px; height: 43px; display: grid; place-items: center; color: var(--berry); background: var(--white); border: 1px solid rgba(133,57,83,.36); border-radius: 50%; font-size: .62rem; font-weight: 800; transition: color .25s ease,background .25s ease,box-shadow .25s ease; }
.audience-map article:hover > span { color: var(--white); background: var(--berry); box-shadow: 0 0 0 7px rgba(133,57,83,.08); }
.audience-map small { color: var(--berry); font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.audience-map h3 { margin: 12px 0 13px; font-size: 1.45rem; letter-spacing: -.03em; }
.audience-map p { max-width: 38ch; margin: 0; color: var(--ink-soft); font-size: .82rem; }

@media (max-width: 800px) {
  .audience-heading { grid-template-columns: 1fr; gap: 24px; }
  .audience-heading h2 { max-width: 18ch; }
  .audience-map { grid-template-columns: 1fr; gap: 0; margin-top: 52px; }
  .audience-map::before { top: 0; right: auto; bottom: 0; left: 21px; width: 1px; height: auto; }
  .audience-map article { min-height: 150px; padding: 0 0 44px 72px; }
  .audience-map article:last-child { min-height: 0; padding-bottom: 0; }
}

@media (max-width: 620px) {
  .audience-heading h2 { max-width: 100%; font-size: clamp(2.3rem,10.5vw,3.2rem); }
  .audience-map article { padding-left: 62px; }
}

.process-detail { background: var(--smoke); }
.process-detail__layout { display: grid; grid-template-columns: minmax(390px,.85fr) minmax(0,1.15fr); gap: clamp(70px,7vw,110px); align-items: start; }
.process-detail__intro { position: sticky; top: 108px; display: block; margin: 0; }
.process-detail__intro h2 { max-width: 15ch; margin: 0; font-size: clamp(2.9rem,4.2vw,4.2rem); line-height: 1.03; letter-spacing: -.055em; font-weight: 610; text-wrap: balance; }
.process-detail__intro p { max-width: 46ch; margin: 28px 0 0; color: var(--ink-soft); }
.process-detail__list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-detail__list > li { display: grid; grid-template-columns: 74px minmax(0,1fr); gap: 24px; padding: 44px 18px; border-bottom: 1px solid var(--line); border-radius: 7px; transition: background .25s ease, box-shadow .25s ease; }
.process-detail__list > li:is(:target,.is-active) { background: rgba(133,57,83,.065); box-shadow: inset 3px 0 var(--berry); }
.process-scrollspy-ready .process-detail__list > li:target:not(.is-active) { background: transparent; box-shadow: none; }
.step-number { color: var(--berry); font-size: 3.7rem; line-height: 1; letter-spacing: -.06em; font-weight: 300; }
.step-content { display: grid; grid-template-columns: 112px minmax(0,1fr); gap: 13px 26px; align-items: start; }
.step-content > small { color: var(--berry); font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.step-content h3 { margin: 0 0 14px; font-size: 1.45rem; line-height: 1.25; letter-spacing: -.025em; }
.step-content > p { grid-column: 2; margin: 0; color: var(--ink-soft); font-size: .84rem; }
.step-output { grid-column: 2; display: flex; flex-wrap: wrap; gap: 7px; margin-top: 7px; padding-top: 16px; border-top: 1px solid var(--line); }
.step-output b { width: 100%; margin-bottom: 3px; font-size: .67rem; }
.step-output span { padding: 5px 8px; color: var(--ink-soft); background: rgba(133,57,83,.045); border: 1px solid rgba(133,57,83,.1); border-radius: 999px; font-size: .68rem; }

.collaboration-section { color: var(--white); background: #252124; }
.collaboration-layout { display: grid; grid-template-columns: .75fr 1.35fr; gap: 90px; align-items: center; }
.collaboration-section h2 { max-width: 15ch; margin: 0; font-size: clamp(2.65rem,3.5vw,3.4rem); line-height: 1.06; letter-spacing: -.05em; font-weight: 610; text-wrap: balance; }
.collaboration-grid { border-top: 1px solid var(--line-light); }
.collaboration-grid article { display: grid; grid-template-columns: 48px minmax(170px,.75fr) minmax(0,1.25fr); gap: 18px; align-items: start; padding: 27px 0; border-bottom: 1px solid var(--line-light); }
.collaboration-grid span { color: #d48ca7; font-size: .62rem; font-weight: 800; }
.collaboration-grid h3 { margin: 0; font-size: 1rem; }
.collaboration-grid p { margin: 0; color: rgba(255,255,255,.57); font-size: .76rem; }

.before-start { background: var(--smoke); }
.before-start__layout { align-items: center; }
.before-start h2 { max-width: 14ch; font-size: clamp(2.55rem,3.35vw,3.2rem); text-wrap: balance; }
.before-start__intro > p { max-width: 46ch; margin: 28px 0 0; color: var(--ink-soft); }
.preparation-brief { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 22px 55px rgba(30,20,25,.07); }
.preparation-brief::before { position: absolute; inset: 0 0 auto; height: 4px; content: ""; background: linear-gradient(90deg,var(--berry),#d68ba6); }
.preparation-brief__header { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 28px 30px 24px; border-bottom: 1px solid var(--line); }
.preparation-brief__header small { color: var(--berry); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.preparation-brief__header h3 { margin: 7px 0 0; font-size: 1.35rem; letter-spacing: -.025em; }
.preparation-brief__header > span { flex: 0 0 auto; padding: 7px 10px; color: var(--berry); background: rgba(133,57,83,.055); border: 1px solid rgba(133,57,83,.14); border-radius: 999px; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.preparation-brief ol { margin: 0; padding: 0 30px; list-style: none; }
.preparation-brief li { display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.preparation-brief li > span { color: var(--berry); font-size: .67rem; font-weight: 800; }
.preparation-brief li strong { display: block; font-size: .87rem; }
.preparation-brief li p { margin: 5px 0 0; color: var(--ink-soft); font-size: .75rem; }
.preparation-brief footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 23px 30px 26px; }
.preparation-brief footer > span { color: var(--ink-soft); font-size: .72rem; }
.preparation-brief footer a { display: flex; align-items: center; gap: 14px; color: var(--berry); font-size: .75rem; font-weight: 800; }
.preparation-brief footer b { transition: transform .2s ease; }
.preparation-brief footer a:hover b { transform: translateX(4px); }

.diagnostic-section { background: var(--white); }
.diagnostic-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 110px; align-items: start; }
.diagnostic-intro { position: sticky; top: 120px; }
.diagnostic-intro h2 { margin: 0; font-size: clamp(2.6rem,4vw,4.4rem); line-height: 1.05; letter-spacing: -.05em; font-weight: 610; }
.diagnostic-intro > p { margin: 25px 0; color: var(--ink-soft); }
.diagnostic-note { display: flex; gap: 12px; padding: 16px; background: var(--smoke); border-radius: 10px; }
.diagnostic-note > span { color: var(--berry); }
.diagnostic-note p { margin: 0; color: var(--ink-soft); font-size: .84rem; }
.diagnostic-form { display: flex; flex-direction: column; gap: 20px; padding: 38px; background: var(--smoke); border-radius: var(--radius-md); }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.diagnostic-form label { display: flex; flex-direction: column; gap: 8px; font-size: .84rem; font-weight: 700; }
.diagnostic-form label > small { color: var(--ink-soft); font-size: .75rem; font-weight: 500; }
.diagnostic-form input, .diagnostic-form textarea, .diagnostic-form select { width: 100%; padding: 14px 15px; color: var(--ink); background: var(--white); border: 1px solid rgba(44,44,44,.14); border-radius: 9px; outline: none; font-size: .87rem; font-weight: 400; transition: border-color .2s ease, box-shadow .2s ease; }
.diagnostic-form textarea { resize: vertical; min-height: 110px; }
.diagnostic-form input:focus, .diagnostic-form textarea:focus, .diagnostic-form select:focus { border-color: var(--berry); box-shadow: 0 0 0 3px rgba(133,57,83,.1); }
.diagnostic-form .consent-field { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 11px; color: var(--ink-soft); font-size: .78rem; font-weight: 400; }
.diagnostic-form .consent-field input { width: 17px; height: 17px; min-height: 0; margin: 2px 0 0; padding: 0; accent-color: var(--berry); }
.diagnostic-form .button { align-self: flex-start; }
.form-status { min-height: 1.3em; margin: 0; color: var(--berry); font-size: .82rem; font-weight: 700; }
.form-status.is-error { color: #9c3f3f; }

.contact-whatsapp-strip {
  position: relative;
  padding: 76px 0;
  color: var(--white);
  background: linear-gradient(120deg, #2d2028, #482634 58%, #672f49);
  isolation: isolate;
  overflow: hidden;
}
.contact-whatsapp-strip::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -80px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255,255,255,.025), 0 0 0 144px rgba(255,255,255,.018);
}
.contact-whatsapp-strip__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 72%);
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.contact-whatsapp-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}
.contact-whatsapp-strip__copy h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -.05em;
  font-weight: 610;
}
.contact-whatsapp-strip__copy p { max-width: 650px; margin: 22px 0 0; color: rgba(255,255,255,.68); }
.contact-whatsapp-strip__action {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 36px;
  gap: 16px;
  align-items: center;
  min-height: 108px;
  padding: 20px;
  color: var(--ink);
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(16,8,13,.24);
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.contact-whatsapp-strip__action:hover { transform: translateY(-4px); box-shadow: 0 32px 70px rgba(16,8,13,.32); }
.contact-whatsapp-strip__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: var(--berry);
  border-radius: 50%;
}
.contact-whatsapp-strip__icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-whatsapp-strip__action > span:nth-child(2) { display: flex; flex-direction: column; min-width: 0; }
.contact-whatsapp-strip__action small { color: var(--ink-soft); font-size: .67rem; font-weight: 750; }
.contact-whatsapp-strip__action strong { margin-top: 3px; font-size: 1.05rem; line-height: 1.2; }
.contact-whatsapp-strip__action > b { display: grid; place-items: center; width: 34px; height: 34px; color: var(--berry); background: rgba(133,57,83,.08); border-radius: 50%; font-size: .9rem; }

@media (max-width: 800px) {
  .contact-whatsapp-strip__inner { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .contact-whatsapp-strip__action { width: min(100%, 520px); }
}

@media (max-width: 620px) {
  .contact-whatsapp-strip { padding: 64px 0; }
  .contact-whatsapp-strip__copy h2 { font-size: clamp(2.25rem, 10.5vw, 3.1rem); }
  .contact-whatsapp-strip__action { grid-template-columns: 46px minmax(0, 1fr) 32px; min-height: 98px; padding: 16px; border-radius: 15px; }
  .contact-whatsapp-strip__icon { width: 46px; height: 46px; }
  .contact-whatsapp-strip__action strong { font-size: .95rem; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-whatsapp-strip__action:hover { transform: none; }
}

.contact-expect { background: var(--smoke); }
.expect-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 42px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.expect-grid article { min-height: 260px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.expect-grid span { color: var(--berry); font-size: .62rem; font-weight: 800; }
.expect-grid h3 { margin: 55px 0 12px; font-size: 1.12rem; }
.expect-grid p { margin: 0; color: var(--ink-soft); font-size: .8rem; }

.legal-warning { padding: 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; }
.legal-warning strong { color: #e2a8bd; font-size: .75rem; }
.legal-warning p { margin: 8px 0 0; }
.legal-content { background: var(--white); }
.legal-layout { display: grid; grid-template-columns: .35fr 1fr; gap: 100px; align-items: start; }
.legal-layout > aside { position: sticky; top: 120px; display: flex; flex-direction: column; padding: 22px; background: var(--smoke); border-radius: 10px; }
.legal-layout > aside strong { font-size: .78rem; }
.legal-layout > aside span { margin-top: 8px; color: #9c3f3f; font-size: .68rem; }
.legal-layout > aside .legal-meta { color: var(--ink-soft); font-size: .78rem; line-height: 1.7; }
.legal-layout > aside .legal-meta a { color: var(--berry); font-weight: 700; }
.legal-layout article a { color: var(--berry); font-weight: 700; }
.legal-layout article { max-width: 780px; }
.legal-layout h2 { margin: 0 0 16px; padding-top: 45px; font-size: 1.6rem; }
.legal-layout h2:first-child { padding-top: 0; }
.legal-layout p, .legal-layout li { color: var(--ink-soft); }
.legal-callout { margin-top: 45px; padding: 18px; background: #fbf2e5; border-left: 3px solid #b98242; }

.page-404 .site-header, .page-404 .site-footer { display: none; }
.not-found { position: relative; min-height: 100vh; display: grid; place-items: center; color: var(--white); background: linear-gradient(135deg,#211c20,#382631); isolation: isolate; overflow: hidden; }
.not-found__content { padding: 80px 0; }
.not-found__content > span { display: block; margin-bottom: 45px; color: rgba(255,255,255,.1); font-size: clamp(8rem,22vw,20rem); line-height: .7; letter-spacing: -.08em; font-weight: 800; }
.not-found h1 { max-width: 800px; margin: 0; font-size: clamp(3rem,6vw,6.2rem); line-height: .98; letter-spacing: -.06em; }
.not-found p { color: rgba(255,255,255,.62); }
.not-found__content > div:last-child { display: flex; align-items: center; gap: 25px; margin-top: 35px; }

.footer-links--wide { grid-template-columns: repeat(4,1fr); }

@media (max-width: 1000px) {
  .page-hero__layout { grid-template-columns: 1fr .45fr; gap: 55px; }
  .capability-card-grid { grid-template-columns: repeat(2,1fr); }
  .service-directory--catalog { grid-template-columns: repeat(2,1fr); }
  .service-directory--catalog .directory-card, .service-directory--catalog .directory-card:nth-last-child(-n+2) { grid-column: auto; }
  .solution-selector { gap: 32px; }
  .home-solution-panel { grid-template-columns: 1fr; gap: 24px; }
  .home-belief__content { max-width: 900px; }
  .split-heading, .signal-layout, .delivery-summary__layout, .combination-layout, .collaboration-layout, .diagnostic-layout, .web-scope-summary__layout { gap: 65px; }
  .choice-grid { grid-template-columns: repeat(2,1fr); }
  .choice-grid article, .choice-grid article:nth-last-child(-n+2) { grid-column: auto; }
  .web-plan { grid-template-columns: 44px minmax(0,1fr) 180px; }
  .web-plan__number { grid-row: 1 / span 2; }
  .web-plan__details { grid-column: 2; }
  .web-plan__commercial { grid-column: 3; grid-row: 1 / span 2; }
  .step-content { grid-template-columns: .25fr 1fr; }
  .step-content > p { grid-column: 2; }
  .step-output { grid-column: 2; grid-row: auto; margin-top: 10px; }
  .collaboration-grid article { grid-template-columns: 42px minmax(150px,.75fr) minmax(0,1.25fr); }
  .footer-links--wide { grid-template-columns: repeat(2,1fr); row-gap: 45px; }
}

@media (max-width: 800px) {
  .page-hero { min-height: auto; padding: 112px 0 76px; }
  .process-preview__intro { margin-bottom: 48px; }
  .process-timeline { display: flex; flex-direction: column; gap: 0; }
  .process-timeline::before { top: 32px; right: auto; bottom: 32px; left: 31px; width: 1px; height: auto; }
  .process-timeline li { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 0 0 34px; }
  .process-timeline__node { margin-bottom: 0; }
  .process-timeline__content { max-width: 520px; padding-top: 12px; }
  .process-preview__cta { justify-content: flex-start; margin-top: 24px; }
  .page-hero__layout, .home-intro__layout, .process-preview__layout, .split-heading, .detail-intro__layout, .signal-layout, .concept-demo__layout, .delivery-summary__layout, .combination-layout, .peru-focus__layout, .process-detail__intro, .collaboration-layout, .diagnostic-layout, .legal-layout, .web-scope-summary__layout { grid-template-columns: minmax(0,1fr); gap: 48px; }
  .home-intro__visual { order: 2; width: min(100%, 620px); min-height: 500px; margin-inline: auto; }
  .home-intro__copy { order: 1; max-width: 720px; }
  .home-intro { padding: 50px 0; }
  .home-services { padding: 50px 0; }
  .page-hero__copy h1 { font-size: clamp(3.4rem,10vw,5.5rem); }
  .page-hero__aside { max-width: 520px; }
  .service-directory, .need-grid { grid-template-columns: 1fr; }
  .module-grid { grid-template-columns: repeat(2,1fr); }
  .automation-map__layout > div:first-child { grid-template-columns: 1fr; gap: 20px; }
  .flow-map { grid-template-columns: 1fr; }
  .flow-map > i { transform: rotate(90deg); justify-self: center; }
  .combination-flow { grid-template-columns: 1fr; }
  .combination-flow i { transform: rotate(90deg); justify-self: center; }
  .peru-focus__layout > div:last-child { padding: 28px 0 0; border-top: 1px solid var(--line-light); border-left: 0; }
  .audience-grid, .expect-grid { grid-template-columns: 1fr; }
  .process-detail__layout { grid-template-columns: 1fr; gap: 58px; }
  .process-detail__intro { position: static; }
  .process-detail__intro h2 { max-width: 16ch; }
  .process-detail__intro p { max-width: 60ch; }
  .process-detail__list > li { grid-template-columns: 110px 1fr; }
  .diagnostic-intro, .legal-layout > aside { position: static; }
}

@media (max-width: 620px) {
  .page-hero { padding-top: 104px; }
  .page-hero__layout { gap: 35px; }
  .page-hero__copy h1 { font-size: clamp(2.85rem,13vw,4.1rem); }
  .page-hero__copy > p { font-size: .95rem; }
  .page-hero__aside { padding-left: 20px; }
  .home-intro h2, .process-preview h2, .split-heading h2, .detail-intro h2, .signal-title h2, .delivery-summary h2, .combination-section h2, .peru-focus h2, .collaboration-section h2, .diagnostic-intro h2, .web-scope-summary h2 { font-size: clamp(2.3rem,10.5vw,3.35rem); }
  .home-belief { padding: 64px 0 70px; }
  .home-belief blockquote { font-size: clamp(2.35rem,10.5vw,3.4rem); }
  .home-belief__button { width: 100%; }
  .home-intro { padding: 54px 0 44px; }
  .home-services { padding: 40px 0; }
  .home-intro__layout { gap: 34px; }
  .home-intro__visual { width: 100%; min-height: 380px; margin: 0; transform: none; }
  .capability-card-grid, .module-grid, .value-grid, .contact-option-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 235px; padding: 24px; }
  .capability-card__icon { width: 42px; height: 42px; margin-bottom: 26px; }
  .capability-card h3 { font-size: 1.24rem; }
  .capability-card strong { margin-top: 28px; }
  .solution-preview__intro { margin-bottom: 42px; }
  .solution-selector { grid-template-columns: 1fr; gap: 32px; }
  .solution-tab { min-height: 92px; }
  .process-preview__cta .button { width: 100%; }
  .process-evidence { grid-template-columns: 1fr; margin-top: 34px; border-left: 0; }
  .process-evidence article { min-height: 108px; border-left: 1px solid var(--line); }
  .home-solution-panel { padding: 24px; }
  .home-solution-visual { padding: 16px; }
  .home-solution-pipeline { grid-template-columns: 1fr; gap: 6px; }
  .home-solution-pipeline > i { transform: rotate(90deg); }
  .home-solution-pipeline > div { min-height: 84px; }
  .home-solution-dashboard { grid-template-columns: 1fr; min-height: 180px; }
  .home-solution-dashboard__side { display: grid; grid-template-columns: repeat(2,1fr); min-height: 76px; gap: 12px; }
  .home-solution-dashboard__side > div { padding: 12px; }
  .service-directory { border-left: 0; }
  .directory-card { min-height: 350px; padding: 30px; border-left: 1px solid var(--line); }
  .website-preview__nav { padding-inline: 20px; }
  .website-preview__nav > div { display: none; }
  .website-preview__hero { grid-template-columns: 1fr; min-height: auto; padding: 30px 24px; }
  .website-preview__hero aside { grid-template-columns: repeat(2,1fr); }
  .website-preview__services { padding: 24px; }
  .web-plan { grid-template-columns: 1fr; gap: 20px; padding: 32px 22px; }
  .web-plan__number, .web-plan__copy, .web-plan__details, .web-plan__commercial { grid-column: 1; grid-row: auto; }
  .web-plan__commercial { padding: 22px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .principle-stack article { grid-template-columns: 38px 1fr; }
  .principle-stack p { grid-column: 2; }
  .choice-grid { grid-template-columns: 1fr; }
  .module-grid { border-left: 0; }
  .module-card { border-left: 1px solid var(--line); }
  .concept-demo__layout { gap: 35px; }
  .need-grid { border-left: 0; }
  .need-card { min-height: 450px; padding: 30px; border-left: 1px solid var(--line); }
  .process-detail__list > li { grid-template-columns: 1fr; gap: 24px; }
  .process-detail__intro h2 { max-width: 100%; font-size: clamp(2.3rem,10.5vw,3.35rem); overflow-wrap: anywhere; }
  .step-number { font-size: 3.3rem; }
  .step-content { grid-template-columns: 1fr; gap: 14px; }
  .step-content > p, .step-output { grid-column: 1; }
  .step-output { padding: 18px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .collaboration-section h2, .before-start h2 { max-width: 100%; }
  .collaboration-grid article { grid-template-columns: 38px 1fr; gap: 12px 16px; padding: 24px 0; }
  .collaboration-grid p { grid-column: 2; }
  .preparation-brief__header, .preparation-brief footer { padding-inline: 22px; }
  .preparation-brief ol { padding-inline: 22px; }
  .contact-option { min-height: 250px; padding: 26px; }
  .contact-option small { margin-top: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .diagnostic-form { gap: 16px; padding: 24px 18px; }
  .diagnostic-form .button { width: 100%; }
  .not-found__content > div:last-child { align-items: flex-start; flex-direction: column; }
.footer-links--wide { grid-template-columns: repeat(2,1fr); }
}

/* Correcciones finales del hero de Página Web Profesional. */
.page-hero.web-service-hero {
  min-height: 620px;
  padding: 108px 0 58px;
  color: var(--white);
}

.page-hero.web-service-hero .web-service-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr);
  gap: clamp(52px, 6vw, 84px);
  align-items: center;
}

.page-hero.web-service-hero .web-service-hero__copy h1 {
  max-width: 660px;
  font-size: clamp(3.2rem, 4.8vw, 5.2rem);
}

.page-hero.web-service-hero .web-service-hero__copy > p {
  max-width: 610px;
  margin-top: 24px;
  font-size: .98rem;
}

.page-hero.web-service-hero .hero-contact-form {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 0 0 0 auto;
  padding: 27px 30px 25px;
  color: var(--ink);
  background: rgba(255,255,255,.97);
  border-top: 4px solid var(--berry);
  border-radius: 18px;
  box-shadow: 0 32px 80px rgba(0,0,0,.32);
}

.page-hero.web-service-hero .hero-contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 750;
}

.page-hero.web-service-hero .hero-contact-form__intro { margin-bottom: 18px; }

.page-hero.web-service-hero .hero-contact-form h2 {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.page-hero.web-service-hero .hero-contact-form__identity {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.page-hero.web-service-hero .hero-contact-form__fields { gap: 13px; }

.page-hero.web-service-hero .hero-contact-form textarea {
  min-height: 76px;
  resize: none;
}

.page-hero.web-service-hero .hero-contact-form__consent {
  display: grid !important;
  grid-template-columns: 17px 1fr;
  align-items: start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: .66rem !important;
  font-weight: 400 !important;
}

.page-hero.web-service-hero .hero-contact-form input,
.page-hero.web-service-hero .hero-contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(44,44,44,.15);
  border-radius: 8px;
  font-size: .84rem;
}

@media (max-width: 900px) {
  .page-hero.web-service-hero { min-height: auto; padding: 108px 0 70px; }
  .page-hero.web-service-hero .web-service-hero__layout { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .page-hero.web-service-hero .hero-contact-form { max-width: 720px; margin-left: 0; }
}

@media (max-width: 620px) {
  .page-hero.web-service-hero { padding: 98px 0 56px; }
  .page-hero.web-service-hero .hero-contact-form { padding: 25px 20px 22px; border-radius: 14px; }
  .page-hero.web-service-hero .hero-contact-form__identity { grid-template-columns: 1fr; gap: 13px; }
}

.web-plans--points .web-plan-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.web-plans--points .web-plan { display: flex; flex-direction: column; align-items: stretch; min-height: 425px; padding: 30px; background: var(--white); border: 0; }
.web-plans--points .web-plan:hover { background: #fcfafb; }
.web-plans--points .web-plan__number { margin-bottom: 54px; }
.web-plans--points .web-plan--primary .web-plan__copy > small { display: block; min-height: 2.5em; }
.web-plans--points .web-plan--primary .web-plan__copy > h3 { min-height: 2.35em; }
.web-plans--points .web-plan__copy h3 { margin-top: 13px; }
.web-plans--points .web-plan__details { margin-top: auto; border-top: 1px solid var(--line); }
.web-plans--points .web-plan__details span { padding: 10px 0; }
.web-plans--points .web-plan__commercial { padding: 22px 0 0; border-top: 1px solid var(--line); border-left: 0; }
.web-plans--points .web-plan__link { color: var(--berry); font-size: .72rem; font-weight: 800; }
.web-plans--points .web-plan__link span { margin-left: 7px; }
.web-plans--points .web-plan--primary .web-plan__number { margin-bottom: 18px; }
.web-plans--points .web-plan__visual { overflow: hidden; aspect-ratio: 2.05; margin-bottom: 24px; background: #e9e1df; border: 1px solid var(--line); }
.web-plans--points .web-plan__visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.web-plans--points .web-plan__visual--landing,
.web-plans--points .web-plan__visual--expanded { display: flex; flex-direction: column; gap: 0; padding: 0; background: #f5f1ed; }
.plan-browser__top { display: flex; align-items: center; gap: 4px; height: 18px; padding: 0 9px; background: #fff; border-bottom: 1px solid #e4deda; }
.plan-browser__top i { width: 4px; height: 4px; border-radius: 50%; background: #cdbdc0; }
.plan-browser__top span { width: 28%; height: 4px; margin-left: 10px; background: #e5dfe0; }
.plan-browser__top b { width: 13%; height: 4px; margin-left: auto; background: #87445c; }
.plan-landing__nav,
.plan-expanded__nav { display: grid; grid-template-columns: 1.35fr repeat(3, .35fr) .55fr; gap: 8px; align-items: center; min-height: 30px; padding: 0 13px; background: #f9f7f4; }
.plan-landing__nav strong,
.plan-expanded__nav strong { display: block; width: 42%; height: 5px; background: #382b30; }
.plan-landing__nav span,
.plan-expanded__nav span { display: block; width: 65%; height: 3px; background: #c8bfc0; }
.plan-landing__nav em,
.plan-expanded__nav em { display: block; width: 100%; height: 12px; background: #87445c; }
.plan-landing__hero,
.plan-expanded__hero { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 102px; background: #e7dfe0; }
.plan-landing__hero > div,
.plan-expanded__hero > div { display: flex; flex-direction: column; justify-content: center; gap: 7px; padding: 16px; background: linear-gradient(135deg,#362630,#87445c); }
.plan-landing__hero > div i,
.plan-expanded__hero > div i { display: block; width: 74%; height: 5px; background: #f5e8ea; }
.plan-landing__hero > div i:nth-child(2),
.plan-expanded__hero > div i:nth-child(2) { width: 56%; background: #d9aebe; }
.plan-landing__hero > div i:nth-child(3),
.plan-expanded__hero > div i:nth-child(3) { width: 82%; height: 3px; background: rgba(255,255,255,.5); }
.plan-landing__hero > div b,
.plan-expanded__hero > div b { width: 35%; height: 12px; margin-top: 3px; background: #f4dce2; }
.plan-landing__hero aside { background: linear-gradient(135deg,#baa0a0,#d9ccc5); }
.plan-landing__cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; height: 54px; background: #e0d5d3; }
.plan-landing__cards i { display: block; margin: 13px 10px 0; background: #fff; border-top: 8px solid #b8838e; }
.plan-landing__cards i:nth-child(2) { border-top-color: #d7c1bb; }
.plan-landing__cards i:nth-child(3) { border-top-color: #7c4658; }
.plan-expanded__hero { grid-template-columns: 1fr .85fr; min-height: 85px; }
.plan-expanded__hero aside { display: grid; grid-template-columns: repeat(2,1fr); gap: 5px; padding: 12px; background: #c5b5b2; }
.plan-expanded__hero aside i { display: block; background: #e9dfdc; }
.plan-expanded__content { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12px; min-height: 73px; padding: 12px; background: #f7f3ef; }
.plan-expanded__content > div { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; }
.plan-expanded__content > div i { display: block; height: 38px; background: #d5c5c3; }
.plan-expanded__content > div i:nth-child(2) { background: #b47a88; }
.plan-expanded__content > div i:nth-child(3) { background: #e1d5ce; }
.plan-expanded__content aside { display: flex; flex-direction: column; justify-content: space-between; padding: 4px 0; }
.plan-expanded__content aside i { display: block; width: 78%; height: 4px; background: #59404a; }
.plan-expanded__content aside i:nth-child(2) { width: 60%; background: #c2adae; }
.plan-expanded__content aside i:nth-child(3) { width: 86%; background: #d9c8c5; }
.web-plans--points .web-plan__visual--custom { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; align-items: end; padding: 16px; background: #2b2227; border-color: #2b2227; }
.web-plans--points .web-plan__visual--custom span { display: block; height: 42%; background: #7f4057; }
.web-plans--points .web-plan__visual--custom span:nth-child(2) { height: 68%; background: #ba768a; }
.web-plans--points .web-plan__visual--custom span:nth-child(3) { height: 88%; background: #e4c7ce; }
.web-plans--points .web-plan__visual--custom i { position: absolute; top: 15px; right: 17px; width: 38%; height: 2px; background: rgba(255,255,255,.7); }
.web-plans--points .web-plan--secondary { grid-column: 1 / -1; display: grid; grid-template-columns: 52px minmax(0, 1.3fr) minmax(220px, .8fr) auto; min-height: 215px; align-items: center; background: #f8f4f6; }
.web-plans--points .web-plan--secondary:hover { background: #f5edf1; }
.web-plans--points .web-plan--secondary .web-plan__number { align-self: start; margin-bottom: 0; }
.web-plans--points .web-plan--secondary .web-plan__details { margin-top: 0; }
.web-plans--points .web-plan--secondary .web-plan__commercial { padding: 0 0 0 28px; border-top: 0; border-left: 1px solid var(--line); }

@media (max-width: 800px) {
  .web-plans--points .web-plan-list { grid-template-columns: 1fr; }
  .web-plans--points .web-plan--secondary { grid-column: auto; display: flex; min-height: 0; }
  .web-plans--points .web-plan--secondary .web-plan__number { align-self: auto; }
  .web-plans--points .web-plan--secondary .web-plan__details { margin-top: auto; }
  .web-plans--points .web-plan--secondary .web-plan__commercial { padding: 22px 0 0; border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 620px) {
  .web-plans--points .web-plan { min-height: 0; padding: 27px 22px; }
  .web-plans--points .web-plan__number { margin-bottom: 35px; }
  .web-plans--points .web-plan--primary .web-plan__copy > small,
  .web-plans--points .web-plan--primary .web-plan__copy > h3 { min-height: 0; }
}

.web-plans--points .web-plan__visual--site { aspect-ratio: 1.55; margin-bottom: 24px; padding: 0; background: #f5efe8; border: 1px solid rgba(53,42,43,.16); }
.web-plan__site { height: 100%; overflow: hidden; color: #352a2b; background: #f8f5f1; }
.web-plan__site header { display: grid; grid-template-columns: auto 1fr auto; gap: 15px; align-items: center; padding: 12px 15px; background: #fff; border-bottom: 1px solid rgba(53,42,43,.12); }
.web-plan__site header strong { color: #352a2b; font-family: Georgia, serif; font-size: .68rem; font-weight: 500; letter-spacing: .1em; white-space: nowrap; }
.web-plan__site header nav { display: flex; justify-content: center; gap: 12px; }
.web-plan__site header nav span { color: #786c69; font-size: .43rem; white-space: nowrap; }
.web-plan__site header b { padding: 6px 8px; color: #fff; background: #8c4a5b; font-size: .42rem; font-weight: 700; white-space: nowrap; }
.web-plan__site-hero { position: relative; height: calc(100% - 98px); min-height: 180px; overflow: hidden; }
.web-plan__site-hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(35,26,29,.76), rgba(35,26,29,.08) 80%); content: ""; }
.web-plan__site-hero img { display: block; width: 100%; height: 100%; object-fit: cover; }
.web-plan__site-hero > div { position: absolute; z-index: 1; top: 50%; left: 22px; max-width: 58%; color: #fff; transform: translateY(-50%); }
.web-plan__site-hero small, .web-plan__site-expanded-main small { color: #f0c9d2; font-size: .42rem; font-weight: 800; letter-spacing: .12em; }
.web-plan__site-hero h4 { margin: 10px 0 13px; font-family: Georgia, serif; font-size: clamp(1.3rem, 2.5vw, 2.25rem); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
.web-plan__site-hero span, .web-plan__site-expanded-main > div:last-child > span { color: #fff; font-size: .46rem; font-weight: 800; }
.web-plan__site-hero i, .web-plan__site-expanded-main i { margin-left: 4px; font-style: normal; color: #f0c9d2; }
.web-plan__site-strip { display: grid; grid-template-columns: repeat(3,1fr); min-height: 54px; background: #fff; }
.web-plan__site-strip div { display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 8px 13px; border-right: 1px solid rgba(53,42,43,.12); }
.web-plan__site-strip div:last-child { border-right: 0; }
.web-plan__site-strip small, .web-plan__site-expanded-sections small { color: #8c4a5b; font-size: .42rem; font-weight: 800; }
.web-plan__site-strip strong, .web-plan__site-expanded-sections strong { color: #352a2b; font-size: .52rem; font-weight: 700; }
.web-plan__site-expanded { background: #fbf8f4; }
.web-plan__site-expanded-main { display: grid; grid-template-columns: 1.08fr .92fr; height: calc(100% - 98px); min-height: 230px; }
.web-plan__site-expanded-image { overflow: hidden; }
.web-plan__site-expanded-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.web-plan__site-expanded-main > div:last-child { display: flex; flex-direction: column; justify-content: center; padding: 22px; }
.web-plan__site-expanded-main small { color: #8c4a5b; }
.web-plan__site-expanded-main h4 { margin: 13px 0 10px; color: #352a2b; font-family: Georgia, serif; font-size: clamp(1.25rem, 2.4vw, 2.2rem); font-weight: 400; line-height: 1; }
.web-plan__site-expanded-main p { margin: 0 0 18px; color: #786c69; font-size: .5rem; line-height: 1.55; }
.web-plan__site-expanded-main > div:last-child > span { color: #8c4a5b; }
.web-plan__site-expanded-sections { display: grid; grid-template-columns: repeat(3,1fr); min-height: 54px; background: #fff; border-top: 1px solid rgba(53,42,43,.12); }
.web-plan__site-expanded-sections div { display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 7px 13px; border-right: 1px solid rgba(53,42,43,.12); }
.web-plan__site-expanded-sections div:last-child { border-right: 0; }

@media (max-width: 620px) {
  .web-plans--points .web-plan__visual--site { aspect-ratio: 1.45; }
  .web-plan__site header { grid-template-columns: 1fr auto; }
  .web-plan__site header nav { display: none; }
  .web-plan__site-hero > div { left: 18px; max-width: 68%; }
  .web-plan__site-expanded-main { grid-template-columns: 1fr; min-height: 250px; }
  .web-plan__site-expanded-image { min-height: 135px; }
  .web-plan__site-expanded-main > div:last-child { padding: 16px; }
}

/* Las tarjetas muestran páginas completas, no wireframes recortados. */
.web-plans--points .web-plan__visual--site {
  display: block;
  height: auto;
  aspect-ratio: 1.5;
  padding: 0;
  background: #f6f1ed;
}

.web-plans--points .web-plan__visual--site > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #f6f1ed;
}

.web-plans--points .web-plan--secondary .web-plan__visual--site {
  max-width: 560px;
}

@media (max-width: 800px) {
  .web-plans--points .web-plan--secondary .web-plan__visual--site {
    max-width: none;
  }
}

/* En la tarjeta especializada, la propuesta y su explicación deben leerse juntas. */
@media (min-width: 801px) {
  .web-plans--points .web-plan--secondary {
    grid-template-columns: 52px minmax(0, 1.55fr) minmax(245px, .75fr) auto;
  }

  .web-plans--points .web-plan--secondary .web-plan__copy {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(190px, .85fr);
    column-gap: 28px;
    align-items: center;
    min-width: 0;
  }

  .web-plans--points .web-plan--secondary .web-plan__visual--site {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
  }

  .web-plans--points .web-plan--secondary .web-plan__copy > small,
  .web-plans--points .web-plan--secondary .web-plan__copy > h3,
  .web-plans--points .web-plan--secondary .web-plan__copy > p {
    grid-column: 2;
  }

  .web-plans--points .web-plan--secondary .web-plan__copy > h3 {
    margin-top: 13px;
  }

  .web-plans--points .web-plan--secondary .web-plan__copy > p {
    margin-bottom: 0;
  }
}

/* La experiencia especializada se presenta como un único recorrido vertical. */
.web-plans--points .web-plan--secondary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 0;
}

.web-plans--points .web-plan--secondary .web-plan__number {
  align-self: auto;
  margin-bottom: 18px;
}

.web-plans--points .web-plan--secondary .web-plan__copy {
  display: block;
  width: min(100%, 720px);
}

.web-plans--points .web-plan--secondary .web-plan__visual--site {
  width: min(100%, 620px);
  max-width: none;
  margin-bottom: 24px;
}

.web-plans--points .web-plan--secondary .web-plan__details {
  width: min(100%, 620px);
  margin-top: 24px;
}

.web-plans--points .web-plan--secondary .web-plan__commercial {
  width: min(100%, 620px);
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  border-left: 0;
}

/* En escritorio: imagen a la izquierda y todo el texto en una sola columna derecha. */
@media (min-width: 801px) {
  .web-plans--points .web-plan--secondary {
    display: grid;
    grid-template-columns: 52px minmax(0, 1.45fr) minmax(300px, .9fr);
    grid-template-areas:
      "number visual copy"
      ". visual details"
      ". visual commercial";
    column-gap: 28px;
    row-gap: 0;
    align-items: start;
  }

  .web-plans--points .web-plan--secondary > .web-plan__number {
    grid-area: number;
  }

  .web-plans--points .web-plan--secondary > .web-plan__visual--site {
    grid-area: visual;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
  }

  .web-plans--points .web-plan--secondary > .web-plan__copy {
    grid-area: copy;
    display: block;
    width: auto;
    padding-top: 4px;
  }

  .web-plans--points .web-plan--secondary > .web-plan__details {
    grid-area: details;
    width: auto;
    margin-top: 30px;
  }

  .web-plans--points .web-plan--secondary > .web-plan__commercial {
    grid-area: commercial;
    width: auto;
    margin-top: 0;
  }
}

@media (max-width: 800px) {
  .web-plans--points .web-plan--secondary > .web-plan__visual--site {
    width: 100%;
    max-width: none;
  }

  .web-plans--points .web-plan--secondary > .web-plan__copy,
  .web-plans--points .web-plan--secondary > .web-plan__details,
  .web-plans--points .web-plan--secondary > .web-plan__commercial {
    width: 100%;
  }

  .web-plans--points .web-plan--secondary > .web-plan__details {
    margin-top: 24px;
  }
}

/* Restauración de los recorridos especializados de servicios. */
.service-editorial-intro { background: var(--smoke); }

.service-editorial-intro .web-presence-intro__visual {
  background: #d8d0cc;
  box-shadow: 18px 18px 0 rgba(133,57,83,.08);
}

.service-editorial-intro .web-presence-intro__copy h2 { max-width: 620px; }

.service-starting-points { background: var(--white); }
.service-starting-points__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-starting-point { position: relative; min-width: 0; display: grid; background: var(--white); }
.service-starting-point--primary { grid-template-columns: 40px minmax(0, 1fr); gap: 22px; padding: 32px; }
.service-starting-point--special { grid-column: 1 / -1; grid-template-columns: 40px minmax(0, 1.08fr) minmax(0, .92fr); gap: 28px; align-items: center; padding: 32px; background: #f8f5f6; }
.service-starting-point__number { color: var(--berry); font-size: 1.1rem; font-weight: 800; line-height: 1; }
.service-starting-point__visual,
.service-starting-point__body { min-width: 0; grid-column: 2; }
.service-starting-point__visual { position: relative; overflow: hidden; background: #272329; color: var(--white); }
.service-starting-point__visual--image { height: 252px; border-radius: 3px; }
.service-starting-point--special .service-starting-point__visual { grid-column: 2; height: 270px; }
.service-starting-point__visual img { width: 100%; height: 100%; object-fit: cover; }
.service-starting-point__visual--image::after { position: absolute; inset: auto 0 0; height: 40%; content: ""; background: linear-gradient(transparent, rgba(25,18,23,.85)); pointer-events: none; }
.service-starting-point__visual small { position: absolute; z-index: 1; right: 18px; bottom: 14px; left: 18px; color: rgba(255,255,255,.85); font-size: .67rem; line-height: 1.3; }
.service-starting-point__body { padding-top: 22px; }
.service-starting-point--special .service-starting-point__body { grid-column: 3; padding: 0; }
.service-starting-point__body > small { color: var(--berry); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-starting-point__body h3 { margin: 10px 0 10px; font-size: clamp(1.55rem, 2.1vw, 2.25rem); line-height: 1.06; letter-spacing: -.04em; }
.service-starting-point__body p { max-width: 560px; margin: 0; color: var(--ink-soft); font-size: .92rem; }
.service-starting-point__body ul { margin: 22px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.service-starting-point__body li { padding: 10px 0; color: var(--ink-soft); border-bottom: 1px solid var(--line); font-size: .75rem; }
.service-starting-point__body li::before { margin-right: 9px; color: var(--berry); content: "•"; }
.service-starting-point__body a { display: inline-flex; gap: 8px; margin-top: 24px; color: var(--berry); font-size: .72rem; font-weight: 800; }
.service-starting-point__body a span { transition: transform .2s ease; }
.service-starting-point__body a:hover span { transform: translateX(4px); }

/* ERP: módulos como una cadena de operación. */
.erp-route-section,
.crm-360-section,
.automation-workflow-section,
.portal-access-section,
.hosting-foundation-section { color: var(--white); background: #252124; }
.erp-route-section .section-heading h2,
.crm-360-section .section-heading h2,
.automation-workflow-section .section-heading h2,
.portal-access-section .section-heading h2,
.hosting-foundation-section .section-heading h2 { color: var(--white); }
.erp-route-section .section-heading > p,
.crm-360-section .section-heading > p,
.automation-workflow-section .section-heading > p,
.portal-access-section .section-heading > p,
.hosting-foundation-section .section-heading > p { color: rgba(255,255,255,.64); }

.erp-route-track { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr) auto minmax(0,1fr) auto minmax(0,1fr); gap: 10px; align-items: stretch; }
.erp-route-arrow { display: grid; align-self: center; place-items: center; color: #d28ca6; font-size: 1.35rem; font-style: normal; }
.erp-route-stage { min-height: 300px; display: flex; flex-direction: column; padding: 23px; background: #352c32; border: 1px solid rgba(255,255,255,.13); border-radius: 5px; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.erp-route-stage:hover,
.erp-route-support__card:hover,
.crm-360-journey article:hover,
.crm-360-support__grid article:hover,
.automation-workflow-flow article:hover,
.automation-workflow-support__grid article:hover { background: #3d3239; border-color: rgba(210,140,166,.5); transform: translateY(-3px); }
.erp-route-stage__meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.erp-route-stage__meta span,
.erp-route-support__card > span,
.crm-360-support__grid article > span,
.automation-workflow-flow__top span,
.automation-workflow-support__grid article > span,
.portal-access-profile__top > span,
.portal-access-support__grid article > span,
.hosting-foundation-layer__top span,
.hosting-foundation-support__grid article > span { color: #d28ca6; font-size: 1.8rem; line-height: 1; font-weight: 700; letter-spacing: -.06em; }
.erp-route-stage__meta small,
.erp-route-support__card small,
.crm-360-journey article small,
.crm-360-support__grid article small,
.automation-workflow-flow__top small,
.automation-workflow-support__grid article small,
.portal-access-profile__top small,
.portal-access-support__grid article small,
.hosting-foundation-layer__top small,
.hosting-foundation-support__grid article small { color: rgba(255,255,255,.52); font-size: .57rem; font-weight: 800; letter-spacing: .12em; text-align: right; text-transform: uppercase; }
.erp-route-stage__marker { width: 52px; height: 52px; display: grid; place-items: center; margin-top: 34px; color: #252124; background: #d28ca6; border-radius: 50%; }
.erp-route-stage:nth-of-type(2) .erp-route-stage__marker { background: #bd718f; }
.erp-route-stage:nth-of-type(3) .erp-route-stage__marker { background: #e0a1b5; }
.erp-route-stage:nth-of-type(4) .erp-route-stage__marker { background: #f0ccd6; }
.erp-route-stage__marker b { font-size: .8rem; }
.erp-route-stage__body { margin-top: 23px; }
.erp-route-stage__body h3,
.erp-route-support__card h3,
.crm-360-journey article h3,
.crm-360-support__grid article h3,
.automation-workflow-flow h3,
.automation-workflow-support__grid article h3,
.portal-access-profile h3,
.portal-access-support__grid article h3,
.hosting-foundation-layer h3,
.hosting-foundation-support__grid article h3 { margin: 0 0 9px; color: var(--white); font-size: 1.14rem; line-height: 1.1; letter-spacing: -.025em; }
.erp-route-stage__body p,
.erp-route-support__card p,
.crm-360-journey article p,
.crm-360-support__grid article p,
.automation-workflow-flow p,
.automation-workflow-support__grid article p,
.portal-access-profile p,
.portal-access-support__grid article p,
.hosting-foundation-layer p,
.hosting-foundation-support__grid article p { margin: 0; color: rgba(255,255,255,.64); font-size: .76rem; line-height: 1.55; }
.erp-route-stage__footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 18px; color: rgba(255,255,255,.46); border-top: 1px solid rgba(255,255,255,.1); font-size: .62rem; line-height: 1.4; }
.erp-route-stage__footer b,
.erp-route-support__card > b,
.crm-360-journey article > b,
.crm-360-support__grid article > b,
.automation-workflow-support__grid article > b,
.portal-access-support__grid article > b,
.hosting-foundation-support__grid article > b,
.hosting-foundation-support__grid article > b { color: #d28ca6; font-size: 1rem; font-weight: 400; }
.erp-route-support,
.crm-360-support,
.automation-workflow-support,
.portal-access-support,
.hosting-foundation-support { display: grid; grid-template-columns: .78fr 1.22fr; gap: 60px; align-items: start; margin-top: 12px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.13); }
.erp-route-support__heading p,
.crm-360-support__heading p,
.automation-workflow-support__heading p,
.portal-access-support__heading p,
.hosting-foundation-support__heading p { max-width: 290px; margin: 13px 0 0; color: rgba(255,255,255,.62); font-size: .8rem; line-height: 1.55; }
.erp-route-support__grid,
.crm-360-support__grid,
.automation-workflow-support__grid,
.portal-access-support__grid,
.hosting-foundation-support__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.erp-route-support__card,
.crm-360-support__grid article,
.automation-workflow-support__grid article,
.portal-access-support__grid article,
.hosting-foundation-support__grid article { min-height: 168px; display: flex; flex-direction: column; padding: 21px; background: #352c32; border: 1px solid rgba(255,255,255,.13); border-radius: 5px; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.erp-route-support__card > div,
.crm-360-support__grid article > div,
.automation-workflow-support__grid article > div,
.portal-access-support__grid article > div,
.hosting-foundation-support__grid article > div { margin-top: auto; padding-top: 24px; }
.erp-route-support__card > b,
.crm-360-support__grid article > b,
.automation-workflow-support__grid article > b,
.portal-access-support__grid article > b,
.hosting-foundation-support__grid article > b { align-self: flex-end; margin-top: 13px; }

/* Propuesta ERP: una ruta conectada y dos capas que sostienen todo el sistema. */
.erp-route-section {
  background:
    radial-gradient(circle at 8% 4%, rgba(133,57,83,.2), transparent 31%),
    radial-gradient(circle at 92% 70%, rgba(111,57,78,.12), transparent 30%),
    #252124;
}
.erp-route-section .erp-route-track {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
  align-items: stretch;
  padding-top: 34px;
}
.erp-route-section .erp-route-track::before {
  position: absolute;
  z-index: 0;
  top: 34px;
  right: 9%;
  left: 9%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #bd718f, #e0a1b5 62%, #f0ccd6);
  box-shadow: 0 0 18px rgba(210,140,166,.24);
}
.erp-route-section .erp-route-stage {
  position: relative;
  z-index: 1;
  overflow: visible;
  min-width: 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 22px;
  background: linear-gradient(155deg, rgba(61,50,57,.98), rgba(49,41,46,.98));
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(12,9,11,.12);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.erp-route-section .erp-route-stage:hover {
  background: linear-gradient(155deg, #42363e, #352c32);
  border-color: rgba(210,140,166,.54);
  box-shadow: 0 18px 44px rgba(12,9,11,.24), 0 0 24px rgba(210,140,166,.08);
  transform: translateY(-4px);
}
.erp-route-section .erp-route-stage:not(:last-child)::after {
  position: absolute;
  z-index: 3;
  top: -5px;
  right: -14px;
  width: 9px;
  height: 9px;
  content: "";
  border-top: 2px solid #e0a1b5;
  border-right: 2px solid #e0a1b5;
  transform: rotate(45deg);
}
.erp-route-stage__number {
  position: absolute;
  z-index: -1;
  top: 10px;
  right: 17px;
  color: rgba(240,204,214,.07);
  font-size: clamp(3.7rem, 5vw, 5.2rem);
  line-height: .9;
  font-weight: 800;
  letter-spacing: -.1em;
  pointer-events: none;
}
.erp-route-stage__icon {
  position: absolute;
  z-index: 2;
  top: -28px;
  left: 22px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #251f23;
  background: #d28ca6;
  border: 5px solid #252124;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(210,140,166,.4), 0 8px 22px rgba(12,9,11,.3);
}
.erp-route-stage:nth-child(2) .erp-route-stage__icon { background: #bd718f; }
.erp-route-stage:nth-child(3) .erp-route-stage__icon { background: #e0a1b5; }
.erp-route-stage:nth-child(4) .erp-route-stage__icon { background: #f0ccd6; }
.erp-route-stage__icon svg,
.erp-route-support__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.erp-route-stage__top {
  min-height: 42px;
  display: flex;
  align-items: flex-start;
  padding-left: 66px;
}
.erp-route-section .erp-route-stage__top small {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 5px 9px 4px;
  color: #efc5d2;
  background: rgba(210,140,166,.08);
  border: 1px solid rgba(210,140,166,.32);
  border-radius: 999px;
  font-size: .56rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.erp-route-section .erp-route-stage__body { margin-top: 32px; }
.erp-route-section .erp-route-stage__body h3 {
  max-width: 220px;
  margin-bottom: 11px;
  font-size: 1.18rem;
  line-height: 1.12;
}
.erp-route-section .erp-route-stage__body p { font-size: .77rem; line-height: 1.55; }
.erp-route-stage__outcome {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.11);
}
.erp-route-stage__outcome small {
  color: #d28ca6;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.erp-route-stage__outcome span {
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  line-height: 1.45;
}
.erp-route-section .erp-route-support {
  display: block;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(210,140,166,.28);
}
.erp-route-section .erp-route-support__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}
.erp-route-section .erp-route-support__heading p {
  max-width: 440px;
  margin: 0;
  text-align: right;
}
.erp-route-section .erp-route-support__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.erp-route-section .erp-route-support__card {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: 46px 48px minmax(190px,.72fr) minmax(280px,1.28fr);
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: linear-gradient(90deg, rgba(78,52,65,.74), rgba(53,44,50,.93) 48%, rgba(53,44,50,.72));
  border: 1px solid rgba(255,255,255,.13);
  border-left: 3px solid #bd718f;
  border-radius: 7px;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.erp-route-section .erp-route-support__card:nth-child(2) { border-left-color: #e0a1b5; }
.erp-route-section .erp-route-support__card:hover {
  background: linear-gradient(90deg, rgba(87,57,72,.86), rgba(61,50,57,.98));
  border-color: rgba(210,140,166,.52);
  border-left-color: #e0a1b5;
  box-shadow: 0 12px 28px rgba(12,9,11,.16);
  transform: translateX(4px);
}
.erp-route-section .erp-route-support__number {
  color: rgba(240,204,214,.66);
  font-size: 1.22rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.05em;
}
.erp-route-section .erp-route-support__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #e0a1b5;
  background: rgba(210,140,166,.1);
  border: 1px solid rgba(210,140,166,.25);
  border-radius: 50%;
}
.erp-route-section .erp-route-support__icon svg { width: 21px; height: 21px; }
.erp-route-section .erp-route-support__title {
  margin: 0;
  padding: 0;
}
.erp-route-section .erp-route-support__title small {
  display: block;
  margin-bottom: 6px;
  color: #d28ca6;
  font-size: .55rem;
  text-align: left;
}
.erp-route-section .erp-route-support__title h3 { margin: 0; }
.erp-route-section .erp-route-support__card > p {
  margin: 0;
  padding-left: 22px;
  color: rgba(255,255,255,.7);
  border-left: 1px solid rgba(255,255,255,.11);
  font-size: .76rem;
  line-height: 1.5;
}

/* CRM: producto central y recorrido comercial. */
.crm-360-layout { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(360px,.9fr); gap: 34px; align-items: stretch; }
.crm-360-product { position: relative; overflow: hidden; min-height: 430px; background: #352c32; border: 1px solid rgba(255,255,255,.13); border-radius: 5px; }
.crm-360-product img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.crm-360-product::after { position: absolute; inset: auto 0 0; height: 36%; content: ""; background: linear-gradient(transparent, rgba(25,18,23,.85)); pointer-events: none; }
.crm-360-product small { position: absolute; z-index: 1; right: 20px; bottom: 17px; left: 20px; color: rgba(255,255,255,.82); font-size: .68rem; }
.crm-360-journey { padding: 22px; background: #352c32; border: 1px solid rgba(255,255,255,.13); border-radius: 5px; }
.crm-360-journey__label { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 16px; color: rgba(255,255,255,.58); border-bottom: 1px solid rgba(255,255,255,.12); font-size: .67rem; text-transform: uppercase; letter-spacing: .12em; }
.crm-360-journey__label b { color: #e0a1b5; font-size: .68rem; }
.crm-360-journey article { display: grid; grid-template-columns: 42px minmax(0,1fr) auto; gap: 12px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.11); transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.crm-360-journey article:last-child { border-bottom: 0; }
.crm-360-journey__number { color: #d28ca6; font-size: 1.25rem; font-weight: 700; }
.crm-360-journey article div { min-width: 0; }
.crm-360-journey article small { display: block; margin-bottom: 7px; text-align: left; }
.crm-360-journey article h3 { margin-bottom: 7px; }
.crm-360-journey article em { display: block; margin-top: 12px; color: rgba(255,255,255,.42); font-size: .66rem; font-style: normal; line-height: 1.4; }
.crm-360-journey article > b { align-self: center; color: #d28ca6; font-weight: 400; }
.crm-360-support__grid { grid-template-columns: repeat(3, minmax(0,1fr)); }

/* Automatización: flujo de evento, regla, acción y control. */
.automation-workflow-flow { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr) auto minmax(0,1fr) auto minmax(0,1fr); gap: 12px; align-items: stretch; }
.automation-workflow-flow > i { display: grid; align-self: center; place-items: center; color: #d28ca6; font-size: 1.45rem; font-style: normal; }
.automation-workflow-flow article { min-height: 300px; display: flex; flex-direction: column; padding: 24px; background: #352c32; border: 1px solid rgba(255,255,255,.13); border-radius: 5px; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.automation-workflow-flow__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.automation-workflow-flow__top small { padding-top: 3px; }
.automation-workflow-flow__icon { width: 52px; height: 52px; display: grid; place-items: center; margin-top: 34px; color: #252124; background: #d28ca6; border-radius: 50%; font-size: 1.35rem; font-weight: 700; }
.automation-workflow-flow article:nth-of-type(2) .automation-workflow-flow__icon { background: #bd718f; }
.automation-workflow-flow article:nth-of-type(3) .automation-workflow-flow__icon { background: #e0a1b5; }
.automation-workflow-flow article:nth-of-type(4) .automation-workflow-flow__icon { background: #f0ccd6; }
.automation-workflow-flow h3 { margin-top: 22px; }
.automation-workflow-flow em { display: block; margin-top: auto; padding-top: 18px; color: rgba(255,255,255,.45); border-top: 1px solid rgba(255,255,255,.1); font-size: .62rem; font-style: normal; line-height: 1.4; }

/* Portales: tres experiencias de uso sobre la misma operación. */
.portal-access-profiles { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.portal-access-profile { min-width: 0; display: flex; flex-direction: column; padding: 22px; background: #352c32; border: 1px solid rgba(255,255,255,.13); border-radius: 5px; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.portal-access-profile__top,
.portal-access-profile__bar { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.portal-access-profile__view { min-height: 164px; display: flex; flex-direction: column; margin: 28px 0 25px; padding: 16px; background: #242126; border: 1px solid rgba(255,255,255,.12); border-radius: 4px; }
.portal-access-profile__bar { padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.12); }
.portal-access-profile__bar b { color: #fff; font-size: .73rem; }
.portal-access-profile__bar i { color: rgba(255,255,255,.52); font-size: .7rem; font-style: normal; letter-spacing: .12em; }
.portal-access-profile__rows { display: grid; gap: 7px; margin-top: 18px; }
.portal-access-profile__rows span { display: block; height: 7px; background: #714058; border-radius: 2px; }
.portal-access-profile__rows span:nth-child(2) { width: 76%; background: #bd718f; }
.portal-access-profile__rows span:nth-child(3) { width: 54%; background: #e0a1b5; }
.portal-access-profile__signal { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.1); }
.portal-access-profile__signal b { color: #f0ccd6; font-size: .77rem; }
.portal-access-profile__signal em { max-width: 130px; color: rgba(255,255,255,.48); font-size: .61rem; font-style: normal; line-height: 1.35; text-align: right; }
.portal-access-profile a { display: inline-flex; align-items: center; gap: 7px; margin-top: 22px; color: #e0a1b5; font-size: .71rem; font-weight: 800; }
.portal-access-profile a span { transition: transform .2s ease; }
.portal-access-profile a:hover span { transform: translateX(4px); }

/* Hosting: cuatro capas técnicas conectadas. */
.hosting-foundation-layers { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr) auto minmax(0,1fr) auto minmax(0,1fr); gap: 10px; align-items: stretch; }
.hosting-foundation-layers > i { display: grid; align-self: center; place-items: center; color: #d28ca6; font-size: 1.35rem; font-style: normal; }
.hosting-foundation-layer { min-height: 288px; display: flex; flex-direction: column; padding: 22px; background: #352c32; border: 1px solid rgba(255,255,255,.13); border-radius: 5px; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.hosting-foundation-layer__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.hosting-foundation-layer__icon { width: 52px; height: 52px; display: grid; place-items: center; margin-top: 34px; color: #252124; background: #d28ca6; border-radius: 50%; font-size: 1.25rem; font-weight: 700; }
.hosting-foundation-layer:nth-of-type(2) .hosting-foundation-layer__icon { background: #bd718f; }
.hosting-foundation-layer:nth-of-type(3) .hosting-foundation-layer__icon { background: #e0a1b5; }
.hosting-foundation-layer:nth-of-type(4) .hosting-foundation-layer__icon { background: #f0ccd6; }
.hosting-foundation-layer h3 { margin-top: 22px; }
.hosting-foundation-layer em { display: block; margin-top: auto; padding-top: 18px; color: rgba(255,255,255,.45); border-top: 1px solid rgba(255,255,255,.1); font-size: .62rem; font-style: normal; line-height: 1.4; }
.hosting-foundation-support__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

.erp-route-stage:hover,
.erp-route-support__card:hover,
.crm-360-journey article:hover,
.crm-360-support__grid article:hover,
.automation-workflow-flow article:hover,
.automation-workflow-support__grid article:hover,
.portal-access-profile:hover,
.portal-access-support__grid article:hover,
.hosting-foundation-layer:hover,
.hosting-foundation-support__grid article:hover { background: #3d3239; border-color: rgba(210,140,166,.5); transform: translateY(-3px); }

@media (max-width: 1050px) {
  .erp-route-stage,
  .automation-workflow-flow article,
  .hosting-foundation-layer { padding: 19px; }
  .erp-route-stage__body h3,
  .automation-workflow-flow h3,
  .hosting-foundation-layer h3 { font-size: 1.02rem; }
  .erp-route-support,
  .crm-360-support,
  .automation-workflow-support,
  .portal-access-support,
  .hosting-foundation-support { gap: 32px; }
}

@media (max-width: 1000px) {
  .service-starting-point--special { grid-template-columns: 40px minmax(0,1.1fr) minmax(280px,.9fr); gap: 20px; }
  .crm-360-layout { grid-template-columns: minmax(0,1fr) minmax(320px,.9fr); }
  .erp-route-track,
  .automation-workflow-flow,
  .hosting-foundation-layers { gap: 8px; }
}

@media (max-width: 900px) {
  .service-starting-points__grid { grid-template-columns: 1fr; }
  .service-starting-point--special { grid-column: auto; grid-template-columns: 40px minmax(0,1fr); align-items: start; }
  .service-starting-point--special .service-starting-point__visual,
  .service-starting-point--special .service-starting-point__body { grid-column: 2; }
  .erp-route-track,
  .automation-workflow-flow,
  .hosting-foundation-layers { grid-template-columns: 1fr; gap: 10px; }
  .erp-route-arrow,
  .automation-workflow-flow > i,
  .hosting-foundation-layers > i { transform: rotate(90deg); }
  .erp-route-stage,
  .automation-workflow-flow article,
  .hosting-foundation-layer { min-height: 240px; }
  .crm-360-layout { grid-template-columns: 1fr; }
  .crm-360-product,
  .crm-360-product img { min-height: 340px; }
  .portal-access-profiles { grid-template-columns: 1fr; }
  .portal-access-profile__view { min-height: 145px; }
  .erp-route-support,
  .crm-360-support,
  .automation-workflow-support,
  .portal-access-support,
  .hosting-foundation-support { grid-template-columns: 1fr; gap: 28px; }
  .erp-route-support__heading p,
  .crm-360-support__heading p,
  .automation-workflow-support__heading p,
  .portal-access-support__heading p,
  .hosting-foundation-support__heading p { max-width: 520px; }
}

@media (max-width: 620px) {
  .service-starting-point--primary,
  .service-starting-point--special { grid-template-columns: 30px minmax(0,1fr); gap: 16px; padding: 20px; }
  .service-starting-point__visual--image,
  .service-starting-point--special .service-starting-point__visual { height: 210px; }
  .service-starting-point__body h3 { font-size: 1.6rem; }
  .erp-route-support__grid,
  .crm-360-support__grid,
  .automation-workflow-support__grid,
  .portal-access-support__grid,
  .hosting-foundation-support__grid { grid-template-columns: 1fr; }
  .crm-360-journey { padding: 16px; }
  .crm-360-journey article { grid-template-columns: 34px minmax(0,1fr) auto; gap: 8px; }
  .erp-route-stage,
  .automation-workflow-flow article,
  .portal-access-profile,
  .hosting-foundation-layer { padding: 18px; }
}

/* Todas las rutas de servicio y solución comparten tarjetas paralelas. */
.service-starting-points__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-starting-point,
.service-starting-point--primary,
.service-starting-point--special {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  grid-column: auto;
  min-height: 650px;
  padding: 30px;
  background: var(--white);
}

.service-starting-point__number {
  align-self: auto;
  margin-bottom: 28px;
}

.service-starting-point__visual,
.service-starting-point--special .service-starting-point__visual {
  width: 100%;
  height: auto;
  aspect-ratio: 1.55;
  grid-column: auto;
}

.service-starting-point__body,
.service-starting-point--special .service-starting-point__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  grid-column: auto;
  padding-top: 22px;
}

.service-starting-point__body > small { min-height: 2.5em; }
.service-starting-point__body h3 { min-height: 2.25em; }
.service-starting-point__body p { min-height: 3.2em; }
.service-starting-point__body a { margin-top: auto; }

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

.need-card {
  min-height: 560px;
  padding: 30px;
}

.need-card > small { min-height: 2.8em; }
.need-card h3 { min-height: 4.2em; }
.need-card p { min-height: 4.8em; }

.hosting-plans .web-plan-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hosting-plans .web-plan {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 500px;
  padding: 30px;
  background: var(--white);
  border: 0;
}

.hosting-plans .web-plan:hover { background: #fcfafb; }
.hosting-plans .web-plan__number { margin-bottom: 52px; }
.hosting-plans .web-plan__copy h3 { min-height: 2.35em; }
.hosting-plans .web-plan__copy p { min-height: 3.6em; }
.hosting-plans .web-plan__details { width: 100%; margin-top: auto; }
.hosting-plans .web-plan__commercial { width: 100%; margin-top: 0; padding: 22px 0 0; border-top: 1px solid var(--line); border-left: 0; }

@media (max-width: 1000px) {
  .need-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .service-starting-points__grid,
  .hosting-plans .web-plan-list { grid-template-columns: 1fr; }
  .service-starting-point,
  .service-starting-point--primary,
  .service-starting-point--special,
  .hosting-plans .web-plan { min-height: 0; }
}

@media (max-width: 800px) {
  .need-grid { grid-template-columns: 1fr; }
  .service-starting-point,
  .service-starting-point--primary,
  .service-starting-point--special,
  .hosting-plans .web-plan { padding: 27px 22px; }
  .service-starting-point__body > small,
  .service-starting-point__body h3,
  .service-starting-point__body p,
  .need-card > small,
  .need-card h3,
  .need-card p,
  .hosting-plans .web-plan__copy h3,
  .hosting-plans .web-plan__copy p { min-height: 0; }
}

/* ================================================================
   Refactoring UI: jerarquía, ritmo y estados consistentes.
   Esta capa mantiene la voz de Rogentiq y corrige patrones repetidos
   sin obligar a cada página a tener un componente visual distinto.
   ================================================================ */

:root {
  --canvas: #f7f6f7;
  --surface: #ffffff;
  --surface-soft: #f0eef0;
  --surface-tint: #fbf8fa;
  --ink: #272126;
  --ink-soft: #625a60;
  --ink-muted: #7d737a;
  --line: rgba(39, 33, 38, .13);
  --line-strong: rgba(39, 33, 38, .22);
  --berry: #853953;
  --berry-dark: #6f2f46;
  --purple: #612d53;
  --radius-control: 10px;
  --radius-card: 16px;
  --radius-panel: 22px;
  --shadow-sm: 0 8px 24px rgba(41, 28, 35, .07);
  --shadow-md: 0 18px 45px rgba(41, 28, 35, .12);
  --shadow-lg: 0 30px 80px rgba(34, 20, 29, .22);
}

html { background: var(--canvas); }

body {
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.58;
}

::selection { color: var(--white); background: var(--berry); }

h1,
h2,
h3,
h4,
p { text-wrap: pretty; }

h1,
h2,
h3,
h4 { text-wrap: balance; }

p { max-width: 68ch; }

:is(a, button, input, textarea, select) { touch-action: manipulation; }

:is(button, a, input, textarea, select):focus-visible {
  outline: 3px solid rgba(133, 57, 83, .42);
  outline-offset: 4px;
}

.container { width: min(calc(100% - 56px), 1240px); }

.section { padding: clamp(88px, 9vw, 132px) 0; }

.site-header {
  height: 78px;
  border-bottom-color: rgba(255, 255, 255, .08);
}

.site-header.is-scrolled,
.site-header.menu-active {
  height: 66px;
  background: rgba(247, 246, 247, .92);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 28px rgba(39, 27, 34, .08);
}

.header-inner { gap: 30px; }

.brand { width: 142px; }

.site-nav { gap: 26px; }

.site-nav > a,
.site-nav__dropdown-toggle {
  font-size: .8rem;
  font-weight: 750;
  letter-spacing: .02em;
}

.site-nav > a::after,
.site-nav__dropdown-toggle::after {
  bottom: -7px;
  height: 2px;
  background: var(--berry);
}

.site-nav__panel {
  top: calc(100% + 18px);
  padding: 20px;
  border-color: var(--line);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-lg);
}

.site-nav__item { min-height: 104px; border-color: var(--line); }
.site-nav__item:hover { box-shadow: inset 3px 0 0 #d9a3b6; }

.button {
  min-height: 48px;
  padding: 0 20px;
  gap: 11px;
  border-radius: var(--radius-control);
  font-size: .84rem;
  letter-spacing: .01em;
  box-shadow: 0 2px 0 rgba(35, 18, 27, .12);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(94, 35, 60, .18);
}

.button:active { transform: translateY(0); box-shadow: 0 2px 0 rgba(35, 18, 27, .12); }
.button--small { min-height: 40px; padding-inline: 16px; border-radius: 9px; font-size: .76rem; }
.button--outline-light { border-color: rgba(255, 255, 255, .5); }

.eyebrow { margin-bottom: 18px; font-size: .69rem; letter-spacing: .16em; }

.hero,
.page-hero,
.web-service-hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(133, 57, 83, .24), transparent 34%),
    linear-gradient(135deg, #211c20 0%, #30252c 55%, #201a1e 100%);
}

.hero-copy h1,
.page-hero__copy h1,
.web-service-hero__copy h1 {
  max-width: 12ch;
  text-wrap: balance;
}

.hero-copy h1 { font-size: clamp(3.25rem, 5.2vw, 5.6rem); }
.hero-lead,
.page-hero__copy > p,
.web-service-hero__copy > p { max-width: 58ch; font-size: 1rem; line-height: 1.65; }

.hero-copy h1,
.page-hero__copy h1,
.web-service-hero__copy h1,
.page-hero__copy > p,
.web-service-hero__copy > p { overflow-wrap: anywhere; }

.product-window { border-radius: var(--radius-panel); box-shadow: var(--shadow-lg); }
.floating-card { border-radius: var(--radius-control); box-shadow: var(--shadow-md); }

.section-heading,
.web-anatomy__heading,
.process-preview__intro { margin-bottom: 50px; }

.section-heading h2,
.section-intro h2,
.showcase-heading h2,
.difference h2,
.faq h2,
.process-preview h2 { max-width: 18ch; text-wrap: balance; }

/* Las tarjetas se separan por espacio y superficie, no por una cuadrícula de líneas. */
.service-grid,
.capability-card-grid,
.service-directory,
.need-grid,
.contact-option-grid,
.module-grid,
.value-grid,
.process-evidence,
.web-plan-list,
.service-starting-points__grid,
.hosting-plans .web-plan-list {
  gap: 16px;
  border: 0;
  background: transparent;
}

.service-card,
.capability-card,
.directory-card,
.need-card,
.contact-option,
.module-card,
.value-grid article,
.process-evidence article,
.web-plan,
.service-starting-point,
.service-starting-point--primary,
.service-starting-point--special,
.hosting-plans .web-plan {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, border-color .25s ease;
}

.service-card:hover,
.capability-card:hover,
.directory-card:hover,
.need-card:hover,
.contact-option:hover,
.module-card:hover,
.value-grid article:hover,
.process-evidence article:hover,
.web-plan:hover,
.service-starting-point:hover,
.hosting-plans .web-plan:hover {
  transform: translateY(-4px);
  border-color: rgba(133, 57, 83, .26);
  box-shadow: var(--shadow-md);
}

.service-card--featured,
.capability-card--featured { border-color: transparent; box-shadow: var(--shadow-md); }

.service-card h3,
.capability-card h3,
.directory-card h3,
.need-card h3 { text-wrap: balance; }

.service-card p,
.capability-card p,
.directory-card p,
.need-card p,
.contact-option p,
.module-card p { line-height: 1.58; }

.service-card__icon,
.service-icon,
.capability-card__icon,
.directory-card > span { border-radius: var(--radius-control); }

.web-plan__visual,
.web-plan__visual--site,
.web-anatomy__visual,
.website-preview,
.solution-ui,
.concept-demo__visual,
.contact-option-grid { overflow: hidden; }

.web-plan__visual,
.web-plan__visual--site,
.web-anatomy__visual,
.website-preview,
.solution-ui { border-radius: var(--radius-control); }

.service-starting-point,
.service-starting-point--primary,
.service-starting-point--special,
.hosting-plans .web-plan { min-height: 0; }

.service-starting-point__body h3,
.need-card h3,
.hosting-plans .web-plan__copy h3 { min-height: 0; }

/* Formularios: una relación clara entre etiqueta, campo, ayuda y estado. */
.hero-contact-form,
.diagnostic-form {
  border: 1px solid rgba(39, 33, 38, .13);
  border-top: 4px solid var(--berry);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-lg);
}

.hero-contact-form input,
.hero-contact-form textarea,
.diagnostic-form input,
.diagnostic-form textarea,
.diagnostic-form select {
  min-height: 48px;
  border-color: var(--line-strong);
  border-radius: var(--radius-control);
}

.hero-contact-form textarea,
.diagnostic-form textarea { min-height: 112px; }

.hero-contact-form input::placeholder,
.hero-contact-form textarea::placeholder,
.diagnostic-form input::placeholder,
.diagnostic-form textarea::placeholder { color: #91878e; opacity: 1; }

.hero-contact-form input:hover,
.hero-contact-form textarea:hover,
.diagnostic-form input:hover,
.diagnostic-form textarea:hover,
.diagnostic-form select:hover { border-color: rgba(133, 57, 83, .5); }

.hero-contact-form input:focus,
.hero-contact-form textarea:focus,
.diagnostic-form input:focus,
.diagnostic-form textarea:focus,
.diagnostic-form select:focus {
  border-color: var(--berry);
  box-shadow: 0 0 0 4px rgba(133, 57, 83, .12);
}

.hero-contact-form :is(input, textarea):user-invalid,
.diagnostic-form :is(input, textarea, select):user-invalid {
  border-color: #b34a5d;
  box-shadow: 0 0 0 3px rgba(179, 74, 93, .12);
}

.form-status:empty { display: none; }
.form-status.is-error { color: #a63d51; font-weight: 650; }

.diagnostic-form { background: var(--surface); }
.diagnostic-form .button { min-width: 210px; }

.contact-section { background: linear-gradient(120deg, #853953, #6e304b 70%, #612d53); }
.contact-section .button--light { box-shadow: 0 10px 24px rgba(30, 13, 24, .16); }

.site-footer {
  color: var(--smoke);
  background: #2c2c2c;
  border-top: 1px solid rgba(243, 244, 244, .12);
}

.site-footer .footer-main { grid-template-columns: minmax(200px, .7fr) minmax(0, 1.8fr); gap: 72px; padding-bottom: 48px; }
.site-footer .footer-brand img { filter: brightness(0) invert(1); }
.site-footer .footer-brand p { max-width: 32ch; color: rgba(243, 244, 244, .76); }
.site-footer .footer-brand > span { color: rgba(243, 244, 244, .76); }
.site-footer .footer-links--wide { grid-template-columns: 1.3fr 1fr 1.1fr; gap: 32px; }
.site-footer .footer-links > div { min-width: 0; }
.site-footer .footer-links strong { color: var(--smoke); }
.site-footer .footer-links a { color: rgba(243, 244, 244, .78); line-height: 1.5; }
.site-footer .footer-links a:hover { color: var(--smoke); text-decoration: underline; text-underline-offset: 4px; }
.site-footer a:focus-visible { outline: 2px solid var(--smoke); outline-offset: 5px; }
.site-footer .footer-bottom { color: rgba(243, 244, 244, .68); border-top-color: rgba(243, 244, 244, .16); }
.footer-links a { min-height: 28px; display: inline-flex; align-items: center; }

@media (max-width: 900px) {
  .site-footer .footer-main { grid-template-columns: minmax(0, 1fr); gap: 40px; }
}

@media (max-width: 620px) {
  .site-footer { padding-top: 48px; }
  .site-footer .footer-links--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; }
  .site-footer .footer-links > div:last-child { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 12px 24px; padding-top: 24px; border-top: 1px solid rgba(243, 244, 244, .16); }
  .site-footer .footer-links > div:last-child strong { width: 100%; margin-bottom: 0; }
  .site-footer .footer-links a { min-height: 36px; align-items: center; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 40px), 1240px); }
  .site-header { height: 70px; }
  .site-header.is-scrolled,
  .site-header.menu-active { height: 64px; }
  .site-nav { inset: 64px 0 auto; padding: 16px 20px 24px; }
  .hero,
  .page-hero,
  .web-service-hero { padding-top: 118px; }
  .hero-copy h1,
  .page-hero__copy h1,
  .web-service-hero__copy h1 { max-width: 14ch; }
  .service-grid,
  .capability-card-grid,
  .service-directory,
  .need-grid,
  .module-grid,
  .value-grid,
  .process-evidence,
  .service-starting-points__grid,
  .hosting-plans .web-plan-list { gap: 12px; }
  .service-card,
  .capability-card,
  .directory-card,
  .need-card,
  .module-card,
  .value-grid article,
  .process-evidence article,
  .web-plan,
  .service-starting-point,
  .service-starting-point--primary,
  .service-starting-point--special,
  .hosting-plans .web-plan { box-shadow: var(--shadow-sm); }
  .diagnostic-form .button { width: 100%; }
}

@media (max-width: 620px) {
  .container { width: calc(100vw - 32px); max-width: calc(100vw - 32px); }
  .section { padding: 76px 0; }
  .hero,
  .page-hero,
  .web-service-hero { padding-top: 104px; }
  .hero-copy h1,
  .page-hero__copy h1,
  .web-service-hero__copy h1 { font-size: clamp(2.8rem, 12.8vw, 4rem); }
  .page-hero__copy h1,
  .web-service-hero__copy h1 { max-width: 100%; font-size: clamp(2.25rem, 10vw, 3.2rem); }
  .page-hero__layout,
  .page-hero__copy,
  .page-hero__aside,
  .web-service-hero__layout,
  .web-service-hero__copy { width: 100%; max-width: 100%; min-width: 0; }
  .hero-lead,
  .page-hero__copy > p,
  .web-service-hero__copy > p { font-size: .96rem; }
  .section-heading,
  .web-anatomy__heading,
  .process-preview__intro { margin-bottom: 36px; }
  .button { width: 100%; }
  .header-mobile-cta { border-radius: 9px; }
  .service-card,
  .capability-card,
  .directory-card,
  .need-card,
  .contact-option,
  .module-card,
  .value-grid article,
  .process-evidence article,
  .web-plan,
  .service-starting-point,
  .service-starting-point--primary,
  .service-starting-point--special,
  .hosting-plans .web-plan { border-radius: 13px; }
  .hero-contact-form,
  .diagnostic-form { border-radius: 15px; }
  .diagnostic-form { padding: 24px 20px; }
  .diagnostic-form .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .capability-card:hover,
  .directory-card:hover,
  .need-card:hover,
  .contact-option:hover,
  .module-card:hover,
  .value-grid article:hover,
  .process-evidence article:hover,
  .web-plan:hover,
  .service-starting-point:hover,
  .hosting-plans .web-plan:hover { transform: none; }
}

/* Web Profesional: los alcances se comparan como una familia visual. */
.web-service-starting-point {
  padding: 22px;
}

.web-service-starting-point .service-starting-point__visual--image {
  height: auto;
  aspect-ratio: 3 / 2;
  background: #f6f1ed;
  border: 1px solid rgba(39, 33, 38, .08);
  border-radius: var(--radius-control);
}

.web-service-starting-point .service-starting-point__visual--image::after { display: none; }

.web-service-starting-point .service-starting-point__visual--image img {
  object-fit: cover;
  object-position: center;
  background: #f6f1ed;
}

.web-service-starting-point .service-starting-point__body {
  padding: 26px 8px 8px;
}

.web-service-starting-point .service-starting-point__body > small {
  min-height: 0;
  color: var(--berry);
  letter-spacing: .13em;
}

.web-service-starting-point .service-starting-point__body h3 { min-height: 2.25em; }

.web-service-starting-point .service-starting-point__body p { min-height: 3.2em; }

@media (max-width: 800px) {
  .web-service-starting-point .service-starting-point__body > small,
  .web-service-starting-point .service-starting-point__body h3,
  .web-service-starting-point .service-starting-point__body p { min-height: 0; }
}

@media (max-width: 900px) {
  .erp-route-section .erp-route-track {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 0;
    padding-left: 46px;
  }
  .erp-route-section .erp-route-track::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 18px;
    width: 2px;
    height: auto;
  }
  .erp-route-section .erp-route-stage {
    min-height: 250px;
    padding: 22px;
  }
  .erp-route-section .erp-route-stage__icon {
    top: 18px;
    left: -55px;
  }
  .erp-route-section .erp-route-stage:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -18px;
    left: -33px;
    transform: rotate(135deg);
  }
  .erp-route-section .erp-route-stage__top { min-height: 28px; padding-left: 0; }
  .erp-route-section .erp-route-stage__body { margin-top: 24px; }
  .erp-route-section .erp-route-stage__body h3 { max-width: none; }
  .erp-route-section .erp-route-support__heading {
    display: grid;
    gap: 10px;
  }
  .erp-route-section .erp-route-support__heading p {
    max-width: 540px;
    text-align: left;
  }
  .erp-route-section .erp-route-support__card {
    grid-template-columns: 42px 44px minmax(180px,.8fr) minmax(220px,1.2fr);
    gap: 14px;
  }
}

@media (max-width: 680px) {
  .erp-route-section .erp-route-track { padding-left: 38px; }
  .erp-route-section .erp-route-track::before { left: 17px; }
  .erp-route-section .erp-route-stage { min-height: 275px; padding: 20px 18px; }
  .erp-route-section .erp-route-stage__icon { left: -49px; }
  .erp-route-section .erp-route-stage:not(:last-child)::after { left: -29px; }
  .erp-route-section .erp-route-stage__body { margin-top: 28px; }
  .erp-route-section .erp-route-support { margin-top: 40px; }
  .erp-route-section .erp-route-support__card {
    grid-template-columns: 34px 42px minmax(0,1fr);
    gap: 12px;
    padding: 17px 16px;
  }
  .erp-route-section .erp-route-support__card > p {
    grid-column: 1 / -1;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255,255,255,.11);
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .erp-route-section .erp-route-stage:hover,
  .erp-route-section .erp-route-support__card:hover { transform: none; }
}

/* Servicios 03–06: recorridos conectados y capacidades transversales. */
.crm-360-section,
.automation-workflow-section,
.portal-access-section,
.hosting-foundation-section {
  background:
    radial-gradient(circle at 8% 5%, rgba(133,57,83,.18), transparent 31%),
    radial-gradient(circle at 92% 76%, rgba(111,57,78,.11), transparent 30%),
    #252124;
}

/* Recorrido reutilizable para Automatización y Hosting. */
.automation-workflow-section .service-flow-track,
.hosting-foundation-section .service-flow-track {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
  align-items: stretch;
  padding-top: 34px;
}
.automation-workflow-section .service-flow-track::before,
.hosting-foundation-section .service-flow-track::before {
  position: absolute;
  z-index: 0;
  top: 34px;
  right: 9%;
  left: 9%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #bd718f, #e0a1b5 62%, #f0ccd6);
  box-shadow: 0 0 18px rgba(210,140,166,.24);
}
.automation-workflow-section .service-flow-stage,
.hosting-foundation-section .service-flow-stage {
  position: relative;
  z-index: 1;
  overflow: visible;
  min-width: 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 22px;
  background: linear-gradient(155deg, rgba(61,50,57,.98), rgba(49,41,46,.98));
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(12,9,11,.12);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.automation-workflow-section .service-flow-stage:hover,
.hosting-foundation-section .service-flow-stage:hover {
  background: linear-gradient(155deg, #42363e, #352c32);
  border-color: rgba(210,140,166,.54);
  box-shadow: 0 18px 44px rgba(12,9,11,.24), 0 0 24px rgba(210,140,166,.08);
  transform: translateY(-4px);
}
.automation-workflow-section .service-flow-stage:not(:last-child)::after,
.hosting-foundation-section .service-flow-stage:not(:last-child)::after {
  position: absolute;
  z-index: 3;
  top: -5px;
  right: -14px;
  width: 9px;
  height: 9px;
  content: "";
  border-top: 2px solid #e0a1b5;
  border-right: 2px solid #e0a1b5;
  transform: rotate(45deg);
}
.service-flow-stage__number {
  position: absolute;
  z-index: -1;
  top: 10px;
  right: 17px;
  color: rgba(240,204,214,.07);
  font-size: clamp(3.7rem, 5vw, 5.2rem);
  line-height: .9;
  font-weight: 800;
  letter-spacing: -.1em;
  pointer-events: none;
}
.service-flow-stage__icon {
  position: absolute;
  z-index: 2;
  top: -28px;
  left: 22px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #251f23;
  background: #d28ca6;
  border: 5px solid #252124;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(210,140,166,.4), 0 8px 22px rgba(12,9,11,.3);
}
.service-flow-stage:nth-child(2) .service-flow-stage__icon { background: #bd718f; }
.service-flow-stage:nth-child(3) .service-flow-stage__icon { background: #e0a1b5; }
.service-flow-stage:nth-child(4) .service-flow-stage__icon { background: #f0ccd6; }
.service-flow-stage__icon svg,
.service-support-band__icon svg,
.crm-360-journey__icon svg,
.portal-access-profile__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-flow-stage__top {
  min-height: 42px;
  display: flex;
  align-items: flex-start;
  padding-left: 66px;
}
.service-flow-stage__top small,
.crm-360-journey__copy > small,
.portal-access-profile__top > small {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 5px 9px 4px;
  color: #efc5d2;
  background: rgba(210,140,166,.08);
  border: 1px solid rgba(210,140,166,.32);
  border-radius: 999px;
  font-size: .56rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.service-flow-stage__body { margin-top: 32px; }
.automation-workflow-section .service-flow-stage__body h3,
.hosting-foundation-section .service-flow-stage__body h3 {
  max-width: 220px;
  margin: 0 0 11px;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.12;
}
.automation-workflow-section .service-flow-stage__body p,
.hosting-foundation-section .service-flow-stage__body p {
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: .77rem;
  line-height: 1.55;
}
.service-flow-stage__outcome,
.portal-access-profile__outcome {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.11);
}
.service-flow-stage__outcome small,
.portal-access-profile__outcome small {
  color: #d28ca6;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-flow-stage__outcome span,
.portal-access-profile__outcome span {
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  line-height: 1.45;
}

/* Bandas comunes: capacidades que sostienen todo el recorrido. */
.crm-360-section .service-support,
.automation-workflow-section .service-support,
.portal-access-section .service-support,
.hosting-foundation-section .service-support {
  display: block;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(210,140,166,.28);
}
.crm-360-section .service-support__heading,
.automation-workflow-section .service-support__heading,
.portal-access-section .service-support__heading,
.hosting-foundation-section .service-support__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}
.crm-360-section .service-support__heading p,
.automation-workflow-section .service-support__heading p,
.portal-access-section .service-support__heading p,
.hosting-foundation-section .service-support__heading p {
  max-width: 440px;
  margin: 0;
  text-align: right;
}
.crm-360-section .service-support__bands,
.automation-workflow-section .service-support__bands,
.portal-access-section .service-support__bands,
.hosting-foundation-section .service-support__bands {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.service-support__bands .service-support-band {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: 46px 48px minmax(190px,.72fr) minmax(280px,1.28fr);
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: linear-gradient(90deg, rgba(78,52,65,.74), rgba(53,44,50,.93) 48%, rgba(53,44,50,.72));
  border: 1px solid rgba(255,255,255,.13);
  border-left: 3px solid #bd718f;
  border-radius: 7px;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.service-support__bands .service-support-band:nth-child(even) { border-left-color: #e0a1b5; }
.service-support__bands .service-support-band:hover {
  background: linear-gradient(90deg, rgba(87,57,72,.86), rgba(61,50,57,.98));
  border-color: rgba(210,140,166,.52);
  border-left-color: #e0a1b5;
  box-shadow: 0 12px 28px rgba(12,9,11,.16);
  transform: translateX(4px);
}
.service-support-band .service-support-band__number {
  color: rgba(240,204,214,.66);
  font-size: 1.22rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.05em;
}
.service-support-band .service-support-band__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #e0a1b5;
  background: rgba(210,140,166,.1);
  border: 1px solid rgba(210,140,166,.25);
  border-radius: 50%;
}
.service-support-band__icon svg { width: 21px; height: 21px; }
.service-support__bands .service-support-band__title {
  margin: 0;
  padding: 0;
}
.service-support__bands .service-support-band__title small {
  display: block;
  margin-bottom: 6px;
  color: #d28ca6;
  font-size: .55rem;
  text-align: left;
}
.service-support__bands .service-support-band__title h3 { margin: 0; }
.service-support__bands .service-support-band > p {
  margin: 0;
  padding-left: 22px;
  color: rgba(255,255,255,.7);
  border-left: 1px solid rgba(255,255,255,.11);
  font-size: .76rem;
  line-height: 1.5;
}

/* CRM: producto a la izquierda y recorrido comercial continuo. */
.crm-360-section .crm-360-layout {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(390px,.95fr);
  gap: 30px;
  align-items: stretch;
}
.crm-360-section .crm-360-product {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  margin: 0;
  background: #352c32;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(12,9,11,.18);
}
.crm-360-section .crm-360-product img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.crm-360-section .crm-360-product--lifecycle img {
  object-fit: contain;
  background: #251f23;
}
.crm-360-section .crm-360-product::after {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  content: "";
  background: linear-gradient(transparent, rgba(25,18,23,.88));
  pointer-events: none;
}
.crm-360-section .crm-360-product--lifecycle::after { display: none; }
.crm-360-product figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: rgba(255,255,255,.86);
  font-size: .68rem;
}
.crm-360-section .crm-360-journey {
  min-height: 520px;
  padding: 24px;
  background: linear-gradient(155deg, rgba(61,50,57,.98), rgba(49,41,46,.98));
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(12,9,11,.12);
}
.crm-360-section .crm-360-journey__label { padding-bottom: 18px; }
.crm-360-journey__track {
  position: relative;
  padding-left: 70px;
}
.crm-360-journey__track::before {
  position: absolute;
  top: 27px;
  bottom: 27px;
  left: 27px;
  width: 2px;
  content: "";
  background: linear-gradient(#bd718f, #e0a1b5 62%, #f0ccd6);
  box-shadow: 0 0 16px rgba(210,140,166,.22);
}
.crm-360-section .crm-360-journey__track article {
  position: relative;
  min-height: 140px;
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
  transition: none;
}
.crm-360-section .crm-360-journey__track article:last-child { border-bottom: 0; }
.crm-360-section .crm-360-journey__track article:hover {
  background: transparent;
  border-color: rgba(255,255,255,.11);
  transform: none;
}
.crm-360-journey__icon {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: -66px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #251f23;
  background: #d28ca6;
  border: 4px solid #352c32;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(210,140,166,.4);
}
.crm-360-journey__track article:nth-child(2) .crm-360-journey__icon { background: #e0a1b5; }
.crm-360-journey__track article:nth-child(3) .crm-360-journey__icon { background: #f0ccd6; }
.crm-360-section .crm-360-journey__number {
  position: absolute;
  top: 16px;
  right: 0;
  color: rgba(240,204,214,.07);
  font-size: 3.7rem;
  line-height: .85;
  font-weight: 800;
  letter-spacing: -.1em;
}
.crm-360-journey__copy { position: relative; z-index: 1; }
.crm-360-section .crm-360-journey__copy > small {
  width: max-content;
  margin: 0 0 11px;
  text-align: left;
}
.crm-360-section .crm-360-journey__copy h3 { margin-bottom: 7px; font-size: 1.08rem; }
.crm-360-journey__outcome {
  display: grid;
  gap: 4px;
  margin-top: 12px;
}
.crm-360-journey__outcome b {
  color: #d28ca6;
  font-size: .54rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.crm-360-journey__outcome span {
  color: rgba(255,255,255,.7);
  font-size: .69rem;
  line-height: 1.42;
}

/* Portales: selector de perfiles con una demostración amplia por contexto. */
.portal-profile-switcher { position: relative; }
.portal-profile-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 6px;
  margin-bottom: 18px;
  padding: 6px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
}
.portal-profile-tab {
  min-width: 0;
  min-height: 94px;
  display: grid;
  grid-template-columns: 28px 42px minmax(0,1fr) 18px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  color: rgba(255,255,255,.58);
  background: transparent;
  border: 0;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}
.portal-profile-tab:hover {
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.045);
}
.portal-profile-tab[aria-selected="true"] {
  color: var(--white);
  background: var(--berry);
  box-shadow: 0 12px 28px rgba(12,9,11,.2), inset 0 0 0 1px rgba(255,255,255,.12);
}
.portal-profile-tab__number {
  color: rgba(255,255,255,.46);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.portal-profile-tab__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #d28ca6;
  border-radius: 50%;
}
.portal-profile-tab:nth-child(2) .portal-profile-tab__icon { background: #e0a1b5; }
.portal-profile-tab:nth-child(3) .portal-profile-tab__icon { background: #f0ccd6; }
.portal-profile-tab__icon svg,
.portal-profile-panel__copy svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.portal-profile-tab strong {
  min-width: 0;
  display: grid;
  gap: 4px;
  overflow: hidden;
  color: inherit;
  font-size: .86rem;
  line-height: 1.18;
  text-overflow: ellipsis;
}
.portal-profile-tab strong small {
  color: #e0a1b5;
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.portal-profile-tab > i {
  color: #e0a1b5;
  font-size: 1rem;
  font-style: normal;
  transition: transform .25s var(--ease);
}
.portal-profile-tab[aria-selected="true"] > i { color: var(--white); transform: translateX(3px); }
.portal-profile-panels { min-width: 0; }
.portal-profile-panel {
  min-height: 510px;
  display: grid;
  grid-template-columns: minmax(300px,.72fr) minmax(0,1.45fr);
  overflow: hidden;
  background: var(--smoke);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  box-shadow: 0 24px 56px rgba(12,9,11,.22);
  animation: panelIn .4s var(--ease) both;
}
.portal-profile-panel[hidden] { display: none; }
.portal-profile-panel:focus-visible { outline-color: rgba(224,161,181,.8); }
.portal-profile-panel__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(30px,3vw,46px);
  color: var(--white);
  background: linear-gradient(145deg, var(--purple), var(--ink));
}
.portal-profile-panel__label {
  color: #e0a1b5;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.portal-profile-panel__copy h3 {
  max-width: 12ch;
  margin: 22px 0 16px;
  color: var(--white);
  font-size: clamp(2rem,2.8vw,3.05rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.portal-profile-panel__copy > p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .88rem;
  line-height: 1.6;
}
.portal-profile-panel__copy ul {
  width: 100%;
  display: grid;
  gap: 0;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.12);
}
.portal-profile-panel__copy li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  color: rgba(255,255,255,.74);
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .69rem;
}
.portal-profile-panel__copy li::before {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  content: "";
  background: #d28ca6;
  border-radius: 50%;
}
.portal-profile-panel__outcome {
  width: 100%;
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 22px;
}
.portal-profile-panel__outcome small {
  color: #d28ca6;
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.portal-profile-panel__outcome strong {
  color: var(--white);
  font-size: .77rem;
  line-height: 1.45;
}
.portal-profile-panel__product {
  min-width: 0;
  display: flex;
  align-items: stretch;
  padding: clamp(20px,2.5vw,34px);
  color: var(--ink);
  background: var(--smoke);
}
.portal-product {
  width: 100%;
  min-width: 0;
  min-height: 430px;
  overflow: hidden;
  color: var(--ink);
  background: var(--smoke);
  border: 1px solid rgba(44,44,44,.13);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(44,44,44,.11);
}
.portal-product > div {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.portal-product__bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.portal-product__bar b { font-size: .67rem; letter-spacing: .02em; }
.portal-product__bar span {
  padding: 4px 7px;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.portal-product__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.portal-product__heading > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.portal-product__heading small {
  color: rgba(44,44,44,.52);
  font-size: .53rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.portal-product__heading strong {
  color: var(--ink);
  font-size: .9rem;
  line-height: 1.2;
}
.portal-product__heading > span {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--white);
  background: var(--berry);
  border-radius: 5px;
  font-size: .55rem;
  font-weight: 800;
}
.portal-product__heading > span i {
  margin-left: 4px;
  font-size: .72rem;
  font-style: normal;
}
.portal-client-app {
  flex: 1;
  display: grid;
  grid-template-columns: 118px minmax(0,1fr);
}
.portal-client-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 14px;
  color: rgba(255,255,255,.62);
  background: var(--ink);
}
.portal-client-nav strong {
  margin: 2px 8px 17px;
  color: var(--white);
  font-size: .68rem;
}
.portal-client-nav span {
  padding: 8px;
  border-radius: 5px;
  font-size: .56rem;
}
.portal-client-nav span.is-active {
  color: var(--white);
  background: var(--berry);
}
.portal-client-main {
  min-width: 0;
  padding: 22px;
}
.portal-client-grid {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(150px,.8fr);
  gap: 12px;
  margin-top: 18px;
}
.portal-client-request,
.portal-client-side article {
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(44,44,44,.11);
  border-radius: 8px;
}
.portal-client-request {
  min-height: 266px;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.portal-client-request > small,
.portal-client-side article > small {
  color: rgba(44,44,44,.52);
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.portal-client-request h4 {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 1rem;
}
.portal-client-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  margin: auto 0 0;
  padding-top: 26px;
}
.portal-client-timeline::before {
  position: absolute;
  top: 32px;
  right: 15%;
  left: 15%;
  height: 1px;
  content: "";
  background: rgba(44,44,44,.16);
}
.portal-client-timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgba(44,44,44,.46);
  font-size: .49rem;
  text-align: center;
}
.portal-client-timeline i {
  width: 13px;
  height: 13px;
  background: var(--smoke);
  border: 2px solid rgba(44,44,44,.2);
  border-radius: 50%;
}
.portal-client-timeline span.is-done i { background: var(--purple); border-color: var(--purple); }
.portal-client-timeline span.is-active { color: var(--berry); }
.portal-client-timeline span.is-active i {
  background: var(--berry);
  border-color: var(--berry);
  box-shadow: 0 0 0 5px rgba(133,57,83,.1);
}
.portal-client-request > em {
  margin-top: auto;
  padding-top: 18px;
  color: rgba(44,44,44,.54);
  border-top: 1px solid rgba(44,44,44,.1);
  font-size: .55rem;
  font-style: normal;
  line-height: 1.45;
}
.portal-client-side {
  display: grid;
  gap: 12px;
}
.portal-client-side article { padding: 15px; }
.portal-client-side article:first-child { display: grid; align-content: start; gap: 9px; }
.portal-client-side article > span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(44,44,44,.64);
  font-size: .51rem;
}
.portal-client-side article > span i {
  padding: 3px;
  color: var(--berry);
  background: rgba(133,57,83,.08);
  border-radius: 3px;
  font-size: .42rem;
  font-style: normal;
  font-weight: 800;
}
.portal-client-side article > b {
  display: block;
  margin-top: 9px;
  color: var(--ink);
  font-size: .62rem;
  line-height: 1.4;
}
.portal-operation-app,
.portal-management-app {
  flex: 1;
  min-width: 0;
  padding: 22px;
}
.portal-operation-layout,
.portal-management-layout {
  display: grid;
  grid-template-columns: minmax(0,1.45fr) minmax(150px,.55fr);
  gap: 12px;
  margin-top: 18px;
}
.portal-operation-table {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(44,44,44,.11);
  border-radius: 8px;
}
.portal-operation-row {
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(90px,.7fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 15px;
  color: rgba(44,44,44,.66);
  border-bottom: 1px solid rgba(44,44,44,.09);
  font-size: .55rem;
}
.portal-operation-row:last-child { border-bottom: 0; }
.portal-operation-row--head {
  min-height: 42px;
  color: rgba(44,44,44,.45);
  background: rgba(44,44,44,.035);
  font-size: .49rem;
  text-transform: uppercase;
}
.portal-operation-row > span:first-child { color: var(--ink); font-weight: 700; }
.portal-operation-row em {
  padding: 5px 7px;
  color: rgba(44,44,44,.62);
  background: rgba(44,44,44,.07);
  border-radius: 999px;
  font-size: .47rem;
  font-style: normal;
  white-space: nowrap;
}
.portal-operation-row em.is-progress { color: var(--purple); background: rgba(97,45,83,.1); }
.portal-operation-row em.is-review { color: var(--berry); background: rgba(133,57,83,.1); }
.portal-operation-focus,
.portal-management-decision {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 18px;
  color: var(--white);
  background: var(--ink);
  border-top: 3px solid var(--berry);
  border-radius: 8px;
}
.portal-operation-focus small,
.portal-management-decision small {
  color: #d28ca6;
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.portal-operation-focus strong,
.portal-management-decision strong {
  margin-top: 10px;
  color: var(--white);
  font-size: .77rem;
}
.portal-operation-focus p,
.portal-management-decision p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.58);
  font-size: .55rem;
  line-height: 1.5;
}
.portal-operation-focus > span,
.portal-management-decision > span {
  margin-top: auto;
  padding-top: 18px;
  color: #e0a1b5;
  font-size: .53rem;
  font-weight: 800;
}
.portal-management-signals {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 9px;
  margin-top: 18px;
}
.portal-management-signals article {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(44,44,44,.11);
  border-radius: 7px;
}
.portal-management-signals small {
  color: rgba(44,44,44,.48);
  font-size: .48rem;
}
.portal-management-signals strong {
  color: var(--ink);
  font-size: .66rem;
}
.portal-management-signals article > span {
  height: 18px;
  display: flex;
  align-items: end;
  gap: 3px;
}
.portal-management-signals article > span i {
  width: 4px;
  height: 30%;
  background: rgba(133,57,83,.28);
  border-radius: 2px 2px 0 0;
}
.portal-management-signals article > span i:nth-child(2) { height: 55%; }
.portal-management-signals article > span i:nth-child(3) { height: 42%; }
.portal-management-signals article > span i:nth-child(4) { height: 78%; background: var(--berry); }
.portal-management-trend {
  min-width: 0;
  padding: 15px;
  background: var(--white);
  border: 1px solid rgba(44,44,44,.11);
  border-radius: 8px;
}
.portal-management-trend header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.portal-management-trend header b { font-size: .62rem; }
.portal-management-trend header small { color: rgba(44,44,44,.46); font-size: .48rem; }
.portal-management-trend > div {
  position: relative;
  height: 128px;
  display: flex;
  align-items: end;
  gap: 7%;
  margin-top: 13px;
  padding: 10px 8px 0;
  border-bottom: 1px solid rgba(44,44,44,.14);
  background: repeating-linear-gradient(to bottom, transparent 0 31px, rgba(44,44,44,.07) 32px);
}
.portal-management-trend > div i {
  flex: 1;
  height: 28%;
  min-width: 7px;
  background: rgba(97,45,83,.32);
  border-radius: 3px 3px 0 0;
}
.portal-management-trend > div i:nth-child(2) { height: 42%; }
.portal-management-trend > div i:nth-child(3) { height: 36%; }
.portal-management-trend > div i:nth-child(4) { height: 57%; background: rgba(133,57,83,.56); }
.portal-management-trend > div i:nth-child(5) { height: 66%; }
.portal-management-trend > div i:nth-child(6) { height: 78%; background: var(--berry); }
.portal-management-trend > div > span {
  position: absolute;
  right: 8px;
  bottom: 47px;
  left: 8px;
  height: 28px;
  border-top: 2px solid var(--berry);
  border-radius: 50%;
  transform: skewY(-8deg);
}
.portal-management-trend footer {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-top: 8px;
  color: rgba(44,44,44,.46);
  font-size: .47rem;
}
@media (max-width: 980px) {
  .crm-360-section .crm-360-layout { grid-template-columns: 1fr; }
  .crm-360-section .crm-360-product,
  .crm-360-section .crm-360-product img { min-height: 400px; }
  .crm-360-section .crm-360-journey { min-height: 0; }
  .portal-profile-panel { grid-template-columns: 1fr; }
  .portal-profile-panel__copy { min-height: 340px; }
  .portal-profile-panel__copy h3 { max-width: 17ch; }
  .portal-profile-panel__copy ul { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .portal-profile-panel__copy li { padding-right: 15px; }
  .portal-profile-panel__outcome { margin-top: 26px; }
}

@media (max-width: 900px) {
  .automation-workflow-section .service-flow-track,
  .hosting-foundation-section .service-flow-track {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 0;
    padding-left: 46px;
  }
  .automation-workflow-section .service-flow-track::before,
  .hosting-foundation-section .service-flow-track::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 18px;
    width: 2px;
    height: auto;
  }
  .automation-workflow-section .service-flow-stage,
  .hosting-foundation-section .service-flow-stage {
    min-height: 250px;
    padding: 22px;
  }
  .automation-workflow-section .service-flow-stage__icon,
  .hosting-foundation-section .service-flow-stage__icon {
    top: 18px;
    left: -55px;
  }
  .automation-workflow-section .service-flow-stage:not(:last-child)::after,
  .hosting-foundation-section .service-flow-stage:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -18px;
    left: -33px;
    transform: rotate(135deg);
  }
  .service-flow-stage__top { min-height: 28px; padding-left: 0; }
  .service-flow-stage__body { margin-top: 24px; }
  .automation-workflow-section .service-flow-stage__body h3,
  .hosting-foundation-section .service-flow-stage__body h3 { max-width: none; }
  .crm-360-section .service-support__heading,
  .automation-workflow-section .service-support__heading,
  .portal-access-section .service-support__heading,
  .hosting-foundation-section .service-support__heading {
    display: grid;
    gap: 10px;
  }
  .crm-360-section .service-support__heading p,
  .automation-workflow-section .service-support__heading p,
  .portal-access-section .service-support__heading p,
  .hosting-foundation-section .service-support__heading p {
    max-width: 540px;
    text-align: left;
  }
  .service-support__bands .service-support-band {
    grid-template-columns: 42px 44px minmax(180px,.8fr) minmax(220px,1.2fr);
    gap: 14px;
  }
}

@media (max-width: 680px) {
  .automation-workflow-section .service-flow-track,
  .hosting-foundation-section .service-flow-track { padding-left: 38px; }
  .automation-workflow-section .service-flow-track::before,
  .hosting-foundation-section .service-flow-track::before { left: 17px; }
  .automation-workflow-section .service-flow-stage,
  .hosting-foundation-section .service-flow-stage { min-height: 275px; padding: 20px 18px; }
  .automation-workflow-section .service-flow-stage__icon,
  .hosting-foundation-section .service-flow-stage__icon { left: -49px; }
  .automation-workflow-section .service-flow-stage:not(:last-child)::after,
  .hosting-foundation-section .service-flow-stage:not(:last-child)::after { left: -29px; }
  .service-flow-stage__body { margin-top: 28px; }
  .crm-360-section .service-support,
  .automation-workflow-section .service-support,
  .portal-access-section .service-support,
  .hosting-foundation-section .service-support { margin-top: 40px; }
  .service-support__bands .service-support-band {
    grid-template-columns: 34px 42px minmax(0,1fr);
    gap: 12px;
    padding: 17px 16px;
  }
  .service-support__bands .service-support-band > p {
    grid-column: 1 / -1;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255,255,255,.11);
    border-left: 0;
  }
  .crm-360-section .crm-360-product,
  .crm-360-section .crm-360-product img { min-height: 290px; }
  .crm-360-section .crm-360-journey { padding: 18px; }
  .crm-360-journey__track { padding-left: 56px; }
  .crm-360-journey__track::before { left: 22px; }
  .crm-360-journey__icon { left: -56px; }
  .portal-profile-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .portal-profile-tabs::-webkit-scrollbar { display: none; }
  .portal-profile-tab {
    flex: 0 0 235px;
    min-height: 84px;
    grid-template-columns: 24px 36px minmax(0,1fr) 16px;
    gap: 9px;
    scroll-snap-align: start;
  }
  .portal-profile-tab__icon { width: 36px; height: 36px; }
  .portal-profile-tab__icon svg { width: 19px; height: 19px; }
  .portal-profile-panel__copy { min-height: 0; padding: 30px 22px; }
  .portal-profile-panel__copy h3 { margin-top: 18px; font-size: clamp(2rem,9vw,2.8rem); }
  .portal-profile-panel__copy ul { grid-template-columns: 1fr; }
  .portal-profile-panel__outcome { margin-top: 24px; }
  .portal-profile-panel__product { padding: 13px; }
  .portal-product { min-height: 0; }
  .portal-client-app { grid-template-columns: 1fr; }
  .portal-client-nav {
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    padding: 10px 12px;
  }
  .portal-client-nav strong { flex: 0 0 auto; margin: 0 10px 0 0; }
  .portal-client-nav span { flex: 0 0 auto; padding: 6px 8px; }
  .portal-client-main,
  .portal-operation-app,
  .portal-management-app { padding: 16px; }
  .portal-client-grid,
  .portal-operation-layout,
  .portal-management-layout { grid-template-columns: 1fr; }
  .portal-client-side { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .portal-operation-focus,
  .portal-management-decision { min-height: 175px; }
}

@media (max-width: 520px) {
  .portal-product__bar { padding-inline: 13px; }
  .portal-product__bar span { font-size: .42rem; }
  .portal-product__heading { align-items: flex-start; }
  .portal-product__heading > span { padding: 6px 7px; }
  .portal-client-main,
  .portal-operation-app,
  .portal-management-app { padding: 13px; }
  .portal-client-grid,
  .portal-management-signals,
  .portal-client-side { grid-template-columns: 1fr; }
  .portal-client-request { min-height: 230px; }
  .portal-operation-row {
    grid-template-columns: minmax(0,1fr) auto;
    gap: 5px 10px;
  }
  .portal-operation-row > span:nth-child(2) { grid-column: 1; }
  .portal-operation-row > em { grid-column: 2; grid-row: 1 / span 2; }
  .portal-operation-row--head > b:nth-child(2) { display: none; }
  .portal-operation-row--head > b:last-child { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  .automation-workflow-section .service-flow-stage:hover,
  .hosting-foundation-section .service-flow-stage:hover,
  .portal-access-section .portal-access-profile:hover,
  .service-support__bands .service-support-band:hover { transform: none; }
}

/* Hosting usa la misma demostración de producto que el resto de servicios. */
.hosting-console {
  overflow: hidden;
  min-height: 430px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 25px 60px rgba(44,34,39,.16);
}
.hosting-console__bar,
.hosting-console__domain,
.hosting-console__checks article,
.hosting-console__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hosting-console__bar {
  padding-bottom: 17px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: .67rem;
}
.hosting-console__bar b { color: var(--berry); font-size: .78rem; letter-spacing: .06em; }
.hosting-console__bar em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #47755c;
  font-size: .62rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hosting-console__bar em i {
  width: 7px;
  height: 7px;
  background: #5c9a73;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(92,154,115,.12);
}
.hosting-console__domain {
  margin-top: 18px;
  padding: 19px;
  background: linear-gradient(135deg, #f7f2f4, #fbf9f8);
  border: 1px solid #eadde2;
  border-radius: 7px;
}
.hosting-console__domain div { display: grid; gap: 5px; }
.hosting-console__domain small { color: var(--ink-soft); font-size: .6rem; text-transform: uppercase; letter-spacing: .09em; }
.hosting-console__domain strong { color: var(--ink); font-size: 1.45rem; letter-spacing: -.035em; }
.hosting-console__domain > span {
  padding: 6px 9px;
  color: #47755c;
  background: rgba(92,154,115,.1);
  border-radius: 999px;
  font-size: .61rem;
  font-weight: 800;
}
.hosting-console__checks { display: grid; gap: 9px; margin-top: 14px; }
.hosting-console__checks article {
  padding: 14px 15px;
  background: #faf8f7;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.hosting-console__checks article > span {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--berry);
  background: rgba(133,57,83,.08);
  border: 1px solid rgba(133,57,83,.14);
  border-radius: 50%;
}
.hosting-console__checks svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hosting-console__checks article div { min-width: 0; flex: 1; }
.hosting-console__checks article small { color: var(--ink-soft); font-size: .58rem; text-transform: uppercase; letter-spacing: .09em; }
.hosting-console__checks article h3 { margin: 4px 0 0; color: var(--ink); font-size: .86rem; }
.hosting-console__checks article > b { color: #47755c; font-size: .64rem; }
.hosting-console__footer {
  margin-top: 15px;
  padding-top: 15px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: .6rem;
}
.hosting-console__footer b { color: var(--berry); font-size: .62rem; }

@media (max-width: 680px) {
  .hosting-console { min-height: 0; padding: 16px; }
  .hosting-console__bar > span { display: none; }
  .hosting-console__domain { align-items: flex-start; }
  .hosting-console__domain strong { font-size: 1.2rem; }
  .hosting-console__checks article { gap: 11px; padding: 12px; }
  .hosting-console__checks article > b { align-self: flex-start; padding-top: 5px; }
  .hosting-console__footer { display: grid; }
}

/* Los heroes editoriales usan su aside como índice, no como contenido repetido. */
.process-page-hero,
.about-page-hero { min-height: 680px; }
.process-page-hero .page-hero__layout,
.about-page-hero .page-hero__layout {
  grid-template-columns: minmax(0,1.2fr) minmax(285px,.52fr);
  gap: 88px;
  align-items: center;
}
.process-page-hero .page-hero__copy h1,
.about-page-hero .page-hero__copy h1 {
  max-width: 18ch;
  font-size: clamp(3.8rem,5.2vw,5.2rem);
  line-height: .97;
  text-wrap: balance;
  overflow-wrap: normal;
}
.about-page-hero .page-hero__copy h1 { max-width: 16ch; }
.process-page-hero .page-hero__copy > p,
.about-page-hero .page-hero__copy > p { max-width: 62ch; }
.process-page-hero .page-hero__aside,
.about-page-hero .page-hero__aside {
  align-self: center;
  height: 356px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(12,9,11,.14);
  backdrop-filter: blur(4px);
}
.process-hero-stepper__label {
  display: block;
  margin-bottom: 15px;
  color: rgba(255,255,255,.5);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.process-hero-stepper ol {
  position: relative;
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-hero-stepper ol::before {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 14px;
  width: 1px;
  content: "";
  background: linear-gradient(#bd718f, #e0a1b5);
}
.process-hero-stepper li { position: relative; z-index: 1; }
.process-hero-stepper a {
  display: grid;
  grid-template-columns: 29px minmax(0,1fr);
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 4px 8px 4px 0;
  color: rgba(255,255,255,.76);
  border-radius: 7px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.process-hero-stepper a:hover,
.process-hero-stepper a:focus-visible,
.process-hero-stepper a[aria-current="step"] {
  color: var(--white);
  background: rgba(255,255,255,.055);
  transform: translateX(3px);
}
.process-hero-stepper a > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: #efc5d2;
  background: #30272d;
  border: 1px solid rgba(210,140,166,.55);
  border-radius: 50%;
  font-size: .53rem;
  font-weight: 800;
}
.process-hero-stepper a[aria-current="step"] > span {
  color: #2b2228;
  background: #d98aa6;
  border-color: #e8afc2;
}
.process-hero-stepper a strong { font-size: .76rem; font-weight: 700; }
.process-page-hero .process-hero-cta,
.about-page-hero .process-hero-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 17px;
  color: #efb6ca;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .72rem;
  font-weight: 800;
}
.process-hero-cta span { transition: transform .2s ease; }
.process-hero-cta:hover span { transform: translateX(4px); }
.process-detail__list > li,
.value-grid > article { scroll-margin-top: 96px; }
.value-grid > article:target { background: rgba(133,57,83,.06); box-shadow: inset 3px 0 var(--berry); }

@media (max-width: 980px) {
  .process-page-hero .page-hero__layout,
  .about-page-hero .page-hero__layout {
    grid-template-columns: minmax(0,1fr);
    gap: 46px;
    align-items: stretch;
  }
  .process-page-hero .page-hero__copy h1,
  .about-page-hero .page-hero__copy h1 { max-width: 17ch; }
  .about-page-hero .page-hero__copy h1 { max-width: 16ch; }
  .process-page-hero .page-hero__aside,
  .about-page-hero .page-hero__aside { width: min(100%,620px); align-self: auto; }
}

@media (max-width: 620px) {
  .process-page-hero .page-hero__copy h1,
  .about-page-hero .page-hero__copy h1 {
    max-width: 100%;
    font-size: clamp(2.25rem,10vw,3.2rem);
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }
  .about-page-hero .page-hero__copy h1 {
    max-width: 100%;
    text-wrap: balance;
    overflow-wrap: normal;
  }
  .process-page-hero .page-hero__copy > p,
  .about-page-hero .page-hero__copy > p { overflow-wrap: anywhere; }
  .process-page-hero .page-hero__aside,
  .about-page-hero .page-hero__aside { width: 100%; max-width: 100%; height: 334px; padding: 18px; }
  .process-page-hero .process-hero-cta,
  .about-page-hero .process-hero-cta { width: 100%; min-width: 0; }
  .process-hero-stepper a { min-height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .process-hero-stepper a:hover,
  .process-hero-stepper a:focus-visible,
  .process-hero-cta:hover span { transform: none; }
}

/* Nosotros: los principios se leen como un registro editorial continuo. */
.values-section .values-heading {
  grid-template-columns: minmax(0,.92fr) minmax(320px,.62fr);
  gap: clamp(70px,9vw,140px);
  align-items: end;
  margin-bottom: 54px;
}
.values-section .values-heading h2 {
  max-width: 21ch;
  font-size: clamp(2.8rem,3.8vw,3.6rem);
  line-height: 1.05;
  text-wrap: balance;
}
.values-section .values-heading > p { max-width: 46ch; margin: 0 0 5px; }
.values-section .value-grid {
  display: block;
  border: 0;
  border-top: 1px solid var(--line);
}
.values-section .value-grid article {
  min-height: 0;
  display: grid;
  grid-template-columns: 58px minmax(230px,.72fr) minmax(0,1.28fr);
  gap: 24px;
  align-items: start;
  padding: 34px 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  transition: background .25s ease,box-shadow .25s ease;
}
.values-section .value-grid article:hover,
.values-section .value-grid article:target {
  background: rgba(133,57,83,.05);
  box-shadow: inset 3px 0 var(--berry);
  transform: none;
}
.values-section .value-grid span { padding-top: 4px; }
.values-section .value-grid h3 { margin: 0; font-size: 1.08rem; line-height: 1.35; }
.values-section .value-grid p { max-width: 620px; margin: 0; font-size: .82rem; }

@media (max-width: 800px) {
  .values-section .values-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .values-section .values-heading h2 { max-width: 17ch; }
  .values-section .values-heading > p { max-width: 58ch; }
  .values-section .value-grid article { grid-template-columns: 44px minmax(0,1fr); gap: 12px 18px; padding: 28px 14px; }
  .values-section .value-grid p { grid-column: 2; }
}

@media (max-width: 620px) {
  .values-section .values-heading h2 { max-width: 100%; font-size: clamp(2.3rem,10.5vw,3.2rem); }
  .values-section .value-grid article { grid-template-columns: 38px minmax(0,1fr); padding-inline: 8px; }
}

@media (max-width: 1000px) {
  .delivery-summary__intro { padding-right: min(26vw, 240px); }
  .delivery-summary__pattern { right: -54px; width: min(46vw, 440px); opacity: .1; }
  .web-scope-summary__intro { grid-template-columns: minmax(0, 1fr); row-gap: 24px; min-height: 320px; padding-right: min(26vw, 220px); }
  .web-scope-summary__intro .eyebrow,
  .web-scope-summary h2,
  .web-scope-summary__intro > p { grid-column: 1; }
  .web-scope-summary__intro > p { max-width: 620px; margin: 0; }
  .web-scope-summary__pattern { right: -70px; width: 430px; }
}

@media (max-width: 800px) {
  .delivery-summary { padding: 80px 0 84px; }
  .delivery-summary::before { width: 100%; opacity: .25; }
  .delivery-summary__intro { min-height: 270px; padding: 0 0 20px; }
  .delivery-summary__pattern,
  .delivery-summary__pattern--portales {
    top: -36px;
    right: -100px;
    width: 390px;
    opacity: .08;
  }
  .delivery-steps { grid-template-columns: minmax(0, 1fr); margin-top: 36px; }
  .delivery-steps::before,
  .scope-summary-stack::before { top: 20px; right: auto; bottom: 20px; left: 19px; width: 1px; height: auto; background: linear-gradient(var(--berry), rgba(133, 57, 83, .2)); }
  .delivery-steps li,
  .scope-summary-stack article { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 18px; align-items: center; min-height: 98px; padding: 12px 0; }
  .delivery-step__node,
  .scope-summary-step__node { width: 40px; height: 40px; font-size: .58rem; }
  .delivery-step__copy,
  .scope-summary-step__copy { max-width: 620px; margin-top: 0; padding-right: 0; }
  .delivery-steps h3 { font-size: 1rem; }
  .delivery-steps p { font-size: .8rem; }
  .web-scope-summary { padding: 80px 0 86px; }
  .web-scope-summary::before { width: 100%; }
  .web-scope-summary__intro { display: block; min-height: 310px; padding: 0; }
  .web-scope-summary__intro > p { margin-top: 24px; }
  .web-scope-summary__pattern { top: -40px; right: -100px; width: 390px; opacity: .055; }
  .scope-summary-stack { grid-template-columns: minmax(0, 1fr); margin-top: 36px; }
}

@media (max-width: 620px) {
  .delivery-summary,
  .web-scope-summary { padding: 68px 0 74px; }
  .delivery-summary__intro { min-height: 250px; }
  .web-scope-summary__intro { min-height: 330px; }
  .delivery-summary__pattern,
  .delivery-summary__pattern--portales,
  .web-scope-summary__pattern { right: -135px; width: 360px; }
  .scope-summary-stack h3 { font-size: .98rem; }
  .scope-summary-stack p { font-size: .78rem; }
}

/* Contacto: el hero convierte el espacio lateral en una guía breve de entrada. */
.contact-page-hero { min-height: 680px; }
.contact-page-hero .page-hero__layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .62fr);
  gap: clamp(64px, 8vw, 120px);
  align-items: center;
}
.contact-page-hero .page-hero__copy h1 {
  max-width: 10ch;
  font-size: clamp(3.6rem, 5.4vw, 5.8rem);
  line-height: .96;
  overflow-wrap: normal;
}
.contact-page-hero .page-hero__copy > p { max-width: 600px; }
.contact-page-hero .page-hero__aside {
  width: 100%;
  max-width: none;
  padding: 0;
  border-left: 0;
}
.contact-start-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 28px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.contact-start-card__eyebrow {
  margin-bottom: 24px;
  color: #e0a5ba;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-start-card ol {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-start-card ol::before {
  content: "";
  position: absolute;
  top: 21px;
  bottom: 39px;
  left: 20px;
  width: 1px;
  background: linear-gradient(#d18ca5, rgba(209, 140, 165, .18));
}
.contact-start-card li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 82px;
  padding: 0 0 18px;
}
.contact-start-card li:last-child { min-height: 42px; padding-bottom: 0; }
.contact-start-card li > span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #e0a5ba;
  background: #30242b;
  border: 1px solid rgba(224, 165, 186, .38);
  border-radius: 50%;
  font-size: .61rem;
  font-weight: 800;
}
.contact-start-card li:first-child > span {
  color: #2c2027;
  background: #d38da7;
  border-color: #d38da7;
}
.contact-start-card li strong {
  display: block;
  padding-top: 2px;
  color: var(--white);
  font-size: .9rem;
  line-height: 1.25;
}
.contact-start-card li p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: .76rem;
  line-height: 1.45;
}
.contact-start-card > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  color: #e0a5ba;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .76rem;
  font-weight: 800;
}
.contact-start-card > a span { transition: transform .2s ease; }
.contact-start-card > a:hover span { transform: translateY(3px); }

@media (max-width: 980px) {
  .contact-page-hero { min-height: auto; }
  .contact-page-hero .page-hero__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }
  .contact-page-hero .page-hero__copy h1 { max-width: 12ch; }
  .contact-page-hero .page-hero__aside { width: min(100%, 620px); }
}

@media (max-width: 620px) {
  .header-mobile-cta { flex: 0 0 auto; width: auto; }
  .contact-page-hero .page-hero__layout { gap: 34px; }
  .contact-page-hero .page-hero__copy > p { width: 100%; max-width: 100%; overflow-wrap: anywhere; }
  .contact-page-hero .page-hero__copy h1 {
    max-width: 11ch;
    font-size: clamp(2.85rem, 13vw, 4.1rem);
  }
  .contact-page-hero .page-hero__aside {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .contact-start-card { padding: 22px; border-radius: 14px; }
  .contact-start-card li { min-height: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-start-card > a:hover span { transform: none; }
}

/* UX: elegir por necesidad, leer lo esencial y contactar con contexto. */
[hidden] { display: none !important; }
.section { padding-block: clamp(56px, 6vw, 88px); }
.home-page .hero { min-height: 680px; padding-block: 150px 80px; }
.home-page .hero-copy h1 { max-width: 15ch; font-size: clamp(3rem, 4.6vw, 4.8rem); }
.home-page .hero-copy .eyebrow { max-width: 42ch; line-height: 1.6; }
.home-page .hero-lead { margin-block: 24px 30px; }
.home-page .hero-actions { gap: 14px; flex-wrap: wrap; }
.home-page .hero-actions .button { padding-inline: 18px; font-size: .85rem; }
.home-page .product-stage { min-width: 0; }
.home-page .window-live { color: var(--ink-soft); font-size: .65rem; }
.home-page .home-solution-panel { min-height: 0; }

.service-guide-hero,
.contact-direct-hero { min-height: 0; padding-block: 145px 64px; }
.service-guide-hero__copy { position: relative; max-width: 960px; }
.service-guide-hero h1,
.contact-direct-hero h1 { max-width: 23ch; margin: 0; font-size: clamp(2.5rem, 4.6vw, 4.5rem); line-height: 1.06; letter-spacing: -.045em; }
.service-guide-hero h1 span,
.contact-direct-hero h1 span { color: color-mix(in srgb, var(--berry) 50%, var(--white)); }
.service-guide-hero__copy > p,
.contact-direct-hero .container > p { max-width: 67ch; margin: 24px 0 0; color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.7; }
.service-guide-hero__actions,
.contact-direct-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 28px; }
.contact-direct-hero .container > .contact-direct-hero__note { font-size: .82rem; margin-top: 16px; }
.service-guide-hero .text-link,
.contact-direct-hero .text-link { font-size: .95rem; }

.need-selector { background: var(--smoke); }
.need-selector .section-heading { margin-bottom: 30px; }
.need-selector h2 { max-width: 22ch; }
.need-selector__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.need-choice { display: grid; grid-template-columns: 42px minmax(0, 1fr) 22px; align-items: start; gap: 18px; padding: 25px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); transition: border-color .2s, box-shadow .2s; }
.need-choice:hover { border-color: var(--berry); box-shadow: var(--shadow-sm); }
.need-choice__icon { width: 42px; height: 42px; padding: 7px; border-radius: 10px; color: var(--berry); background: rgba(133,57,83,.07); }
.need-choice__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.need-choice h3 { margin: 0; font-size: 1.12rem; line-height: 1.35; text-align: left; text-wrap: pretty; }
.need-choice p { margin: 8px 0; font-size: .9rem; color: var(--ink-soft); }
.need-choice small { display: block; color: var(--berry); font-weight: 650; font-size: .77rem; }
.need-choice__arrow { color: var(--berry); font-size: 1.3rem; }
.need-selector__help { max-width: none; margin: 26px 0 0; font-size: .95rem; }
.need-selector__help a,
.consent-field a { color: var(--berry); text-decoration: underline; text-underline-offset: 3px; }

.simple-process ol { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; margin: 0 0 28px; padding: 0; list-style: none; }
.simple-process li > span { display: block; margin-bottom: 18px; color: var(--berry); font-weight: 800; }
.simple-process h3 { margin: 0; font-size: 1.12rem; }
.simple-process li p { color: var(--ink-soft); font-size: .95rem; }
.simple-example { background: var(--white); }
.simple-example h2 { max-width: 26ch; }
.simple-example p { color: var(--ink-soft); }
.simple-example .text-link { margin-top: 16px; }
.concept-note { margin: 0 0 24px; color: var(--ink-soft); font-size: .83rem; }

.practical-faq { background: var(--white); }
.practical-faq__layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.practical-faq h2 { max-width: 15ch; }
.practical-faq__layout > div > p { color: var(--ink-soft); }
.practical-faq__items { border-top: 1px solid var(--line); }
.practical-faq details { border-bottom: 1px solid var(--line); }
.practical-faq summary { display: flex; justify-content: space-between; align-items: center; gap: 18px; min-height: 68px; padding: 18px 0; cursor: pointer; list-style: none; color: var(--ink); font-size: 1rem; font-weight: 700; }
.practical-faq summary::-webkit-details-marker { display: none; }
.practical-faq summary span { flex-shrink: 0; color: var(--berry); font-size: 1.5rem; line-height: 1; }
.practical-faq details[open] summary span { transform: rotate(45deg); }
.practical-faq details p { margin: 0; padding: 0 28px 22px 0; color: var(--ink-soft); font-size: .96rem; line-height: 1.75; }
.practical-faq summary:focus-visible,
.form-extras summary:focus-visible { outline: 3px solid var(--berry); outline-offset: 4px; }

.diagnostic-layout { align-items: start; gap: 64px; }
.diagnostic-intro { position: static; }
.diagnostic-form { min-width: 0; gap: 22px; }
.diagnostic-form button:disabled { opacity: .6; cursor: not-allowed; }
.diagnostic-form .form-help { margin: 0; color: var(--ink-soft); font-size: .88rem; font-weight: 400; }
.diagnostic-form select { min-width: 0; max-width: 100%; text-overflow: ellipsis; }
.diagnostic-form [data-message-link] { font-size: .9rem; overflow-wrap: anywhere; }
.form-extras { border-block: 1px solid var(--line); padding-block: 14px; }
.form-extras summary { cursor: pointer; color: var(--ink); font-weight: 650; font-size: .92rem; }
.form-extras summary > span { font-size: .78rem; color: var(--ink-soft); font-weight: 400; }
.form-extras label { margin-top: 18px; }
.consultation-context { padding: 16px; background: rgba(133,57,83,.06); border-left: 3px solid var(--berry); border-radius: 8px; }
.consultation-context p { margin: 0; font-size: .95rem; font-weight: 650; overflow-wrap: anywhere; }
.consultation-context button { margin-top: 8px; min-height: 32px; padding: 0; color: var(--berry); background: none; border: 0; font-size: .85rem; text-decoration: underline; cursor: pointer; }
.contact-direct-hero + .diagnostic-section { padding-top: 60px; }
.site-nav__intro h2 { font-size: 1.6rem; }
.site-nav__intro p { margin-block: 12px 20px; }

@media (max-width: 900px) {
  .home-page .hero { min-height: 0; padding-block: 116px 52px; }
  .home-page .hero-layout { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .home-page .product-stage { display: none; }
  .home-page .hero-copy { max-width: 680px; }
  .home-page .hero-copy h1 { max-width: 18ch; font-size: clamp(2.6rem, 6vw, 3.8rem); }
  .service-guide-hero,
  .contact-direct-hero { padding-block: 112px 48px; }
  .practical-faq__layout { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .practical-faq h2 { max-width: none; }
  .diagnostic-layout { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .site-nav__panel { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .site-nav__intro .eyebrow,
  .site-nav__intro h2,
  .site-nav__intro p { display: none; }
  .site-nav__intro { padding: 0; }
  .site-nav__item { min-height: 76px; padding: 14px 10px; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 36px); max-width: 1240px; }
  .section { padding-block: 48px; }
  .home-page .hero { padding-block: 106px 42px; }
  .home-page .hero-copy h1 { font-size: clamp(2.2rem, 9.2vw, 3.4rem); max-width: 16ch; }
  .home-page .hero-lead { font-size: 1rem; margin-block: 20px 24px; }
  .home-page .hero-actions { margin-top: 0; gap: 12px; }
  .home-page .hero-actions .button { min-height: 48px; }
  .service-guide-hero h1,
  .contact-direct-hero h1 { font-size: clamp(2rem, 8.7vw, 3rem); max-width: 24ch; }
  .service-guide-hero__copy > p,
  .contact-direct-hero .container > p { font-size: 1rem; margin-top: 18px; }
  .service-guide-hero__actions,
  .contact-direct-hero__actions { align-items: stretch; flex-direction: column; gap: 20px; margin-top: 24px; }
  .service-guide-hero__actions .text-link,
  .contact-direct-hero__actions .text-link { align-self: flex-start; }
  .need-selector .section-heading { gap: 14px; margin-bottom: 24px; }
  .need-selector .section-heading p { margin: 0; }
  .need-selector__grid { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .need-choice { grid-template-columns: 32px minmax(0, 1fr) 16px; gap: 12px; padding: 18px 14px; }
  .need-choice__icon { width: 32px; height: 32px; padding: 4px; }
  .need-choice__icon svg { width: 24px; height: 24px; }
  .need-choice h3 { font-size: 1rem; }
  .need-choice p { margin: 6px 0; font-size: .88rem; }
  .need-choice small { font-size: .76rem; }
  .simple-process ol { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .simple-process li { position: relative; padding-left: 42px; }
  .simple-process li > span { position: absolute; left: 0; top: 2px; }
  .simple-process li p { margin: 8px 0 0; }
  .practical-faq summary { font-size: .96rem; }
  .practical-faq details p { font-size: .94rem; }
  .diagnostic-form { padding: 24px 18px; }
  .diagnostic-form .button { font-size: .86rem; padding-inline: 12px; min-width: 0; }
  .contact-direct-hero + .diagnostic-section { padding-top: 40px; }
  .header-inner { gap: 12px; }
  .brand { width: 122px; }
  .header-mobile-cta { font-size: .75rem; padding-inline: 12px; gap: 7px; }
  .header-mobile-cta svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
  .menu-toggle { flex-shrink: 0; margin-left: 0; }
}
