:root {
  --bg: #f6efeb;
  --bg-soft: #efe6e2;
  --panel: rgba(255, 255, 255, 0.72);
  --text: #171717;
  --muted: rgba(23, 23, 23, 0.66);
  --line: rgba(17, 17, 17, 0.08);
  --primary: #7da9c3;
  --secondary: #cda27f;
  --shadow: 0 24px 55px rgba(65, 37, 24, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --hero-paper: #f6f1ef;
  --hero-ink: #111111;
  --hero-muted: rgba(17, 17, 17, 0.74);
  --hero-card: rgba(255, 255, 255, 0.55);
  --header-text: #edf3ff;
  --header-muted: rgba(237, 243, 255, 0.72);
  --bwc-font-family: "Plus Jakarta Sans", "Segoe UI Variable", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI Variable", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 79, 207, 0.08), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(75, 225, 255, 0.1), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(255, 197, 168, 0.16), transparent 30%),
    linear-gradient(180deg, #f7f1ee 0%, #f3ece8 48%, #f8f3f0 100%);
}

body.is-brand-loading {
  overflow: hidden;
}

body.is-brand-loading .site-shell {
  opacity: 0;
}

body.is-brand-transitioning .site-shell,
body.is-brand-ready .site-shell {
  opacity: 1;
  transition: opacity 520ms ease;
}

body.is-brand-loading .site-header .brand-mark,
body.is-brand-transitioning .site-header .brand-mark {
  opacity: 0;
}

.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 42% 45%, rgba(124, 58, 237, 0.16), transparent 26%),
    linear-gradient(180deg, #0a0a0f 0%, #101018 100%);
  pointer-events: none;
  transition: background 700ms ease, opacity 220ms ease;
}

.brand-intro.is-moving {
  background: transparent;
}

.brand-intro.is-done {
  opacity: 0;
}

.brand-intro__logo {
  transform: translate(0, 0) scale(1);
  transform-origin: center center;
  transition:
    transform 960ms cubic-bezier(0.7, 0, 0.18, 1),
    width 960ms cubic-bezier(0.7, 0, 0.18, 1),
    height 960ms cubic-bezier(0.7, 0, 0.18, 1),
    padding 960ms cubic-bezier(0.7, 0, 0.18, 1),
    border-radius 960ms cubic-bezier(0.7, 0, 0.18, 1),
    box-shadow 960ms cubic-bezier(0.7, 0, 0.18, 1),
    opacity 220ms ease 820ms;
  will-change: transform, opacity;
}

.brand-intro.is-moving .brand-intro__logo {
  width: var(--brand-intro-size, 44px);
  height: var(--brand-intro-size, 44px);
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.24);
  transform: translate(var(--brand-intro-x, 0), var(--brand-intro-y, 0)) scale(1);
}

.brand-intro.is-moving .rdg-logo-wrap {
  height: 100%;
  justify-content: center;
}

.brand-intro.is-moving .rdg-symbol {
  width: 100%;
  height: 100%;
}

.brand-intro.is-moving .rdg-wordmark,
.brand-intro.is-moving .rdg-pill,
.brand-intro.is-moving .rdg-tagline {
  opacity: 0;
  transition: opacity 260ms ease;
}

.brand-intro.is-done .brand-intro__logo {
  opacity: 0;
}

body[data-chat-widget-disabled="true"] #bootwhassap-chat-widget-root {
  display: none;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(10, 21, 36, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.site-header .brand,
.site-header .brand-text strong {
  color: var(--header-text);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #04131f;
  background: #0a0a0f;
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.24);
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  font-size: 0.84rem;
  color: var(--header-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a:not(.button) {
  color: var(--header-muted);
  transition: color 180ms ease;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
  color: var(--header-text);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--header-text);
}

.nav-toggle span + span {
  margin-top: 0.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: #f7f7f8;
  background: linear-gradient(180deg, #2a2d33 0%, #17191d 100%);
  box-shadow: 0 18px 36px rgba(23, 25, 29, 0.16);
}

.site-header .button-primary {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button-hero-primary,
.button-hero-secondary {
  min-width: 180px;
}

.button-hero-primary {
  color: #ffffff;
  background: linear-gradient(180deg, #24262b 0%, #15171b 100%);
  box-shadow: 0 24px 44px rgba(24, 27, 32, 0.18);
}

.button-hero-secondary {
  color: #24262b;
  border: 1px solid rgba(34, 36, 40, 0.1);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
}

/* GALERIA */
.gallery-section {
  padding-top: 1rem;
}

.gallery-shell {
  width: min(1320px, calc(100% - 1.6rem));
  margin: 0 auto;
}

.gallery-heading {
  width: min(760px, 100%);
  margin: 0 auto 2rem;
  text-align: center;
}

.gallery-heading h2,
.gallery-heading p {
  margin-left: auto;
  margin-right: auto;
}

.showcase-gallery {
  position: relative;
}

.showcase-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 7vw 1rem;
  scrollbar-width: none;
}

.showcase-track::-webkit-scrollbar {
  display: none;
}

.showcase-slide {
  position: relative;
  flex: 0 0 min(74vw, 980px);
  min-height: 680px;
  border-radius: 34px;
  overflow: hidden;
  scroll-snap-align: center;
  background: #02060c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.3);
}

.showcase-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 12, 0.06) 0%, rgba(2, 6, 12, 0.1) 38%, rgba(2, 6, 12, 0.78) 100%);
  pointer-events: none;
}

.showcase-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.showcase-caption {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  z-index: 1;
  max-width: 540px;
}

.showcase-caption h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.showcase-caption p {
  margin: 0;
  color: rgba(237, 243, 255, 0.84);
}

.showcase-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f5fbff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-top: -28px;
  border: 0;
  border-radius: 999px;
  background: rgba(9, 21, 39, 0.86);
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, background 180ms ease;
}

.showcase-button:hover,
.showcase-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(15, 35, 60, 0.96);
}

.showcase-prev {
  left: max(0.8rem, 2vw);
}

.showcase-next {
  right: max(0.8rem, 2vw);
}

.showcase-controls {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.showcase-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.showcase-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, width 180ms ease;
}

.showcase-dot.is-active {
  width: 42px;
  background: #fff;
}

.private-catalog-section {
  padding-top: 0;
  color: #edf3ff;
}

.private-catalog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(45, 212, 191, 0.09), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(255, 143, 90, 0.1), transparent 20%),
    linear-gradient(180deg, #08111d 0%, #0a1524 48%, #08111d 100%);
  z-index: -2;
}

.private-catalog-section.section-dark::before {
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(45, 212, 191, 0.09), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(255, 143, 90, 0.1), transparent 20%),
    linear-gradient(180deg, #08111d 0%, #0a1524 48%, #08111d 100%);
}

.catalog-group + .catalog-group {
  margin-top: 3.5rem;
}

.catalog-intro {
  width: min(760px, 100%);
  margin: 0 auto 1.5rem;
  text-align: center;
}

.catalog-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-intro h3 {
  margin: 1rem 0 0.7rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
}

.catalog-intro p {
  margin: 0;
  color: rgba(237, 243, 255, 0.8);
  line-height: 1.7;
}

.private-catalog-section .section-heading h1,
.private-catalog-section .catalog-intro h3,
.private-catalog-section .showcase-caption h3 {
  color: #f7fbff;
}

.private-catalog-section .section-heading p,
.private-catalog-section .showcase-caption p {
  color: rgba(237, 243, 255, 0.8);
}

.private-catalog-section .catalog-kicker {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #7fe1d8;
}

.private-catalog-section .catalog-group {
  padding: 1.4rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(12, 24, 40, 0.82), rgba(9, 19, 34, 0.9));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.private-catalog-section .showcase-dots {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.catalog-gallery .showcase-slide {
  min-height: 620px;
}

.phone-preview {
  position: relative;
  width: 100%;
  height: 100%;
}

.phone-preview__notch,
.phone-preview__button {
  display: none;
}

.catalog-login[hidden],
.private-catalog-section[hidden] {
  display: none;
}

.catalog-login {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.catalog-login__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 16, 0.76);
  backdrop-filter: blur(18px);
}

.catalog-login__panel {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(11, 22, 38, 0.98), rgba(8, 17, 31, 0.98));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  color: #edf3ff;
}

.catalog-login__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #edf3ff;
  font-size: 1.4rem;
  cursor: pointer;
}

.catalog-login__panel h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.04em;
  color: #f8fbff;
}

.catalog-login__text,
.catalog-login__message {
  margin: 0;
  color: rgba(237, 243, 255, 0.78);
  line-height: 1.7;
}

.catalog-login__form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.4rem;
}

.catalog-login__label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #f3f7fb;
}

.catalog-login__input {
  width: 100%;
  min-height: 56px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: #f5f9ff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.catalog-login__input:focus {
  border-color: rgba(125, 169, 195, 0.52);
  box-shadow: 0 0 0 4px rgba(125, 169, 195, 0.14);
}

.catalog-login__message {
  min-height: 1.4rem;
  font-size: 0.92rem;
}

.catalog-login__message.is-error {
  color: #ffb9b9;
}

.catalog-login__message.is-success {
  color: #9ce3d9;
}


.button-secondary {
  color: #24262b;
  border: 1px solid rgba(34, 36, 40, 0.1);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.button-small {
  min-height: 44px;
  padding: 0.7rem 1.1rem;
}

.hero-section {
  padding: 5rem 0 3rem;
}

.hero-premium {
  position: relative;
  isolation: isolate;
  min-height: min(100vh, 980px);
  padding: 7.5rem 0 5rem;
  overflow: clip;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.86), transparent 18%),
    linear-gradient(180deg, #f6f0ec 0%, #efe7e4 100%);
}

.hero-background,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-background {
  z-index: -3;
  display: block;
}

.hero-noise {
  z-index: -1;
  opacity: 0.18;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.1));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-grid,
.split-layout,
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.content-block,
.needs-layout > *,
.cta-box > *,
.footer-grid > * {
  min-width: 0;
}

.hero-copy h1,
.section-heading h2,
.content-block h2,
.cta-box h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-grid-centered {
  min-height: calc(min(100vh, 980px) - 12rem);
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
}

.hero-copy-centered {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  text-align: center;
}

.hero-copy-centered h1 {
  color: var(--hero-ink);
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.rdg-logo-reveal {
  position: relative;
  width: min(420px, 100%);
  margin: 0 auto;
  padding: 1.25rem 1.4rem;
  overflow: hidden;
  border-radius: 24px;
  background: #0a0a0f;
  box-shadow: 0 30px 70px rgba(20, 18, 36, 0.22);
}

.rdg-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: rdgFlicker 0.7s steps(1) forwards 0.8s;
}

.rdg-scanline {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 2px;
  background: rgba(124, 58, 237, 0.2);
  pointer-events: none;
  animation: rdgScan 1s linear forwards;
}

.rdg-boot-text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 0;
  overflow: hidden;
  transform: translate(-50%, -50%);
  color: #7c3aed;
  font-family: "Segoe UI Mono", Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  white-space: nowrap;
  animation: rdgTypeOut 0.7s steps(22) forwards, rdgFadeOutBoot 0.2s ease forwards 0.9s;
}

.rdg-symbol {
  width: 136px;
  height: 136px;
}

.rdg-wordmark {
  width: min(320px, 100%);
  height: auto;
}

.rdg-pill {
  width: 82px;
  height: auto;
}

.rdg-tagline {
  width: min(320px, 100%);
  height: auto;
}

.rdg-ring-outer {
  fill: none;
  stroke: #2a2a3a;
  stroke-width: 1.5;
  opacity: 0;
  animation: rdgFadeIn 0.4s ease forwards 1.2s;
}

.rdg-ring-inner {
  fill: #12121f;
  opacity: 0;
  animation: rdgFadeIn 0.4s ease forwards 1.5s;
}

.rdg-arc-top {
  fill: none;
  stroke: #7c3aed;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: rdgDrawArc 0.6s ease forwards 1.8s;
}

.rdg-dot-right {
  fill: #7c3aed;
  opacity: 0;
  animation: rdgPopIn 0.3s cubic-bezier(0.36, 1.56, 0.64, 1) forwards 2.2s;
}

.rdg-dot-left {
  fill: #4f46e5;
  opacity: 0;
  animation: rdgPopIn 0.3s cubic-bezier(0.36, 1.56, 0.64, 1) forwards 2.4s;
}

.rdg-dots-dec {
  opacity: 0;
  animation: rdgFadeIn 0.8s ease forwards 1.1s;
}

.rdg-letter-r {
  fill: #ffffff;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: rdgPopIn 0.4s cubic-bezier(0.36, 1.56, 0.64, 1) forwards 2s, rdgRPulse 2s ease-in-out 3.2s infinite;
}

.rdg-text-rey {
  fill: #ffffff;
  opacity: 0;
  animation: rdgSlideUp 0.5s ease forwards 2.7s;
}

.rdg-text-digital {
  fill: #7c3aed;
  opacity: 0;
  animation: rdgSlideUp 0.5s ease forwards 2.9s;
}

.rdg-pill-bg {
  fill: #7c3aed;
  opacity: 0;
  animation: rdgPopIn 0.4s cubic-bezier(0.36, 1.56, 0.64, 1) forwards 3.1s;
}

.rdg-pill-text {
  fill: #ffffff;
  opacity: 0;
  animation: rdgFadeIn 0.3s ease forwards 3.4s;
}

.rdg-divider {
  stroke: #2a2a3a;
  stroke-width: 0.8;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: rdgDrawLine 0.6s ease forwards 3.5s;
}

.rdg-tagline-text {
  fill: #6b6b8a;
  opacity: 0;
  animation: rdgFadeIn 0.6s ease forwards 3.9s;
}

@keyframes rdgFlicker {
  0% { opacity: 0; }
  20% { opacity: 1; }
  35% { opacity: 0; }
  55% { opacity: 1; }
  70% { opacity: 0; }
  85% { opacity: 1; }
  100% { opacity: 1; }
}

@keyframes rdgScan {
  to { top: 100%; }
}

@keyframes rdgTypeOut {
  to { width: 230px; }
}

@keyframes rdgFadeOutBoot {
  to {
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes rdgFadeIn {
  to { opacity: 1; }
}

@keyframes rdgPopIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rdgSlideUp {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rdgDrawArc {
  to { stroke-dashoffset: 0; }
}

@keyframes rdgDrawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes rdgRPulse {
  0%,
  100% { opacity: 1; }
  50% { opacity: 0.15; }
}

.section-heading h2,
.content-block h2,
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: rgba(17, 17, 17, 0.56);
}

.hero-text,
.section-heading p,
.content-block p,
.cta-box p,
.pillar-card p,
.service-card p,
.process-step p,
.solution-card p,
.case-card p,
.advantage-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text-dark {
  width: min(760px, 100%);
  margin: 1.5rem auto 0;
  color: var(--hero-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-actions-centered {
  justify-content: center;
  margin-top: 2.4rem;
}

.hero-metrics {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
}

.hero-metrics li,
.pillar-card,
.service-card,
.process-step,
.solution-card,
.case-card,
.advantage-list article,
.cta-box,
.hero-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-metrics li {
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.hero-metrics strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-card {
  position: absolute;
  border-radius: 26px;
}

.website-card {
  top: 0;
  left: 0;
  width: min(100%, 430px);
  padding: 1rem;
}

.window-bar {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.website-layout {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.8rem;
  min-height: 240px;
}

.website-sidebar,
.website-banner,
.website-columns span,
.dashboard-chart,
.dashboard-stats article,
.media-preview,
.media-lines span {
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.website-main {
  display: grid;
  gap: 0.8rem;
}

.website-banner {
  min-height: 110px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.22), rgba(255, 143, 90, 0.12));
  
}

.website-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.website-columns span {
  min-height: 110px;
}

.hero-card p {
  margin: 1rem 0 0;
  color: var(--muted);
}

liquid-hero-background {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 79, 207, 0.22), transparent 0 16%),
    radial-gradient(circle at 68% 22%, rgba(75, 225, 255, 0.18), transparent 0 18%),
    radial-gradient(circle at 82% 18%, rgba(255, 197, 168, 0.22), transparent 0 18%),
    radial-gradient(circle at 35% 72%, rgba(138, 92, 255, 0.18), transparent 0 18%),
    linear-gradient(180deg, #f8f1ef 0%, #efe8e5 100%);
}

.dashboard-card {
  right: 0;
  top: 8.2rem;
  width: min(100%, 320px);
  padding: 1.2rem;
}

.dashboard-head {
  display: grid;
  gap: 0.3rem;
}

.dashboard-head span {
  color: var(--muted);
  font-size: 0.9rem;
}

.dashboard-chart {
  min-height: 150px;
  margin: 1rem 0;
  background:
    linear-gradient(180deg, rgba(45, 212, 191, 0.18), transparent),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 25% 100%, 100% 25%;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.dashboard-stats article {
  padding: 0.8rem 0.6rem;
  text-align: center;
}

.dashboard-stats strong,
.dashboard-stats span {
  display: block;
}

.dashboard-stats span {
  color: var(--muted);
  font-size: 0.82rem;
}

.media-card {
  left: 3rem;
  bottom: 1.5rem;
  width: min(100%, 285px);
  padding: 1rem;
}

.media-preview {
  min-height: 170px;
  background:
    radial-gradient(circle at center, rgba(255, 143, 90, 0.28), transparent 55%),
    linear-gradient(135deg, rgba(45, 212, 191, 0.14), rgba(255, 255, 255, 0.03));
}

.media-lines {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.media-lines span {
  height: 12px;
}

.media-lines span:nth-child(2) {
  width: 85%;
}

.media-lines span:nth-child(3) {
  width: 66%;
}

.section {
  padding: 2rem 0 5rem;
}

.section-light {
  position: relative;
}

.section-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.34), transparent 46%),
    linear-gradient(180deg, rgba(255, 249, 246, 0.72), rgba(247, 240, 236, 0.46));
  pointer-events: none;
  z-index: -2;
}

.services-section {
  isolation: isolate;
  overflow: hidden;
}

.section-dark {
  position: relative;
  color: #edf3ff;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 1rem 0;
  background:
    radial-gradient(circle at top left, rgba(125, 169, 195, 0.08), transparent 24%),
    radial-gradient(circle at 90% 14%, rgba(205, 162, 127, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(13, 17, 24, 0.98), rgba(17, 21, 29, 1));
  z-index: -2;
}

.section-dark .eyebrow,
.section-dark .section-heading p,
.section-dark .content-block p,
.section-dark .gallery-heading p,
.section-dark .pillar-card p,
.section-dark .service-card p,
.section-dark .process-step p,
.section-dark .site-footer p,
.section-dark .catalog-intro p,
.section-dark .showcase-caption p {
  color: rgba(237, 243, 255, 0.76);
}

.section-dark .section-heading h2,
.section-dark .content-block h2,
.section-dark .gallery-heading h2,
.section-dark .catalog-intro h3,
.section-dark .showcase-caption h3,
.section-dark .process-step h3,
.section-dark .pillar-card h3 {
  color: #f8fbff;
}

.section-dark .pillar-card,
.section-dark .service-card,
.section-dark .process-step,
.section-dark .solution-card,
.section-dark .case-card,
.section-dark .advantage-list article,
.section-dark .cta-box,
.section-dark .catalog-group {
  background: linear-gradient(180deg, rgba(28, 34, 45, 0.84), rgba(20, 25, 34, 0.88));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.section-dark .pillar-card ul,
.section-dark .footer-grid a,
.section-dark .site-nav a:not(.button) {
  color: rgba(237, 243, 255, 0.72);
}

.section-dark .showcase-slide {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.32);
}

.section-dark .showcase-slide::after {
  background:
    linear-gradient(180deg, rgba(2, 6, 12, 0.06) 0%, rgba(2, 6, 12, 0.12) 38%, rgba(2, 6, 12, 0.82) 100%);
}

.section-dark .showcase-button {
  background: rgba(9, 21, 39, 0.9);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.34);
}

.section-dark .showcase-tag,
.section-dark .icon-chip,
.section-dark .process-step span,
.section-dark .case-tag {
  background: rgba(125, 169, 195, 0.14);
  color: #a8c6d7;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 1rem auto auto 50%;
  width: min(92%, 1220px);
  height: calc(100% - 2rem);
  transform: translateX(-50%);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 252, 250, 0.76), rgba(248, 242, 238, 0.62));
  border: 1px solid rgba(34, 36, 40, 0.06);
  z-index: -1;
}

.section-dark.section-alt::before {
  background: linear-gradient(180deg, rgba(34, 40, 51, 0.94), rgba(25, 29, 38, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.services-section .section-heading {
  max-width: min(760px, 60%);
  position: relative;
  z-index: 1;
}

.services-section .container,
.process-section .container {
  position: relative;
}

.services-wallpaper {
  position: absolute;
  top: 2.75rem;
  right: -6rem;
  width: min(72vw, 1280px);
  bottom: 0.25rem;
  background:
    linear-gradient(90deg, rgba(248, 242, 238, 0) 8%, rgba(248, 242, 238, 0.16) 48%, rgba(248, 242, 238, 0.42) 100%),
    url("../images/camara.png") no-repeat 82% center / contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.process-section .section-heading {
  max-width: min(760px, 62%);
  position: relative;
  z-index: 1;
}

.process-wallpaper {
  position: absolute;
  top: 3rem;
  right: -5.5rem;
  width: min(62vw, 1220px);
  bottom: 1rem;
  background:
    linear-gradient(90deg, rgba(248, 242, 238, 0) 10%, rgba(248, 242, 238, 0.14) 48%, rgba(248, 242, 238, 0.38) 100%),
    url("../images/laptop.png") no-repeat 80% center / contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.pillar-grid,
.service-grid,
.process-grid,
.solution-grid,
.case-grid {
  display: grid;
  gap: 1.2rem;
}

.pillar-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.process-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.pillar-card,
.service-card,
.process-step,
.solution-card,
.case-card,
.advantage-list article {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 252, 250, 0.82), rgba(248, 242, 238, 0.68));
  border: 1px solid rgba(34, 36, 40, 0.06);
  box-shadow: 0 22px 48px rgba(89, 65, 48, 0.08);
}

.services-section .pillar-card,
.process-section .process-step {
  background: linear-gradient(180deg, rgba(255, 252, 250, 0.56), rgba(248, 242, 238, 0.4));
  border-color: rgba(34, 36, 40, 0.1);
  box-shadow: 0 18px 40px rgba(89, 65, 48, 0.1);
}

.pillar-card ul {
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.services-section .pillar-card h3,
.process-section .process-step h3 {
  color: #171a1f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.38);
}

.services-section .pillar-card p,
.services-section .pillar-card li,
.process-section .process-step p {
  color: rgba(24, 27, 31, 0.96);
}

.services-section .pillar-card a,
.process-section .process-step span {
  color: #35556f;
}

.pillar-card a {
  color: #4f6f86;
  font-weight: 700;
}

.icon-chip,
.process-step span,
.case-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  border-radius: 14px;
  font-weight: 800;
  background: rgba(125, 169, 195, 0.12);
  color: #6289a2;
}

.reverse {
  grid-template-columns: 1fr 1.05fr;
}

.needs-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.4rem;
  align-items: stretch;
}

.needs-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.model-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(249, 242, 239, 0.9));
  box-shadow: var(--shadow);
  border-radius: 30px;
  padding: 1.4rem;
  overflow: hidden;
}

.model-copy h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.5rem, 2.7vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.model-copy p {
  margin: 0;
  color: var(--muted);
}

.model-copy code {
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.model-stage {
  position: relative;
  min-height: 520px;
  margin-top: 1.2rem;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(45, 212, 191, 0.16), transparent 34%),
    linear-gradient(180deg, #f8f3f0 0%, #ece2de 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.model-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.model-status {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: rgba(23, 23, 23, 0.86);
  text-align: center;
  backdrop-filter: blur(10px);
}

.model-status.is-error {
  color: #ffd8c8;
  border-color: rgba(255, 143, 90, 0.32);
}

.model-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.model-hints span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(17, 17, 17, 0.07);
  color: var(--muted);
  font-size: 0.9rem;
}

.process-step span {
  margin-bottom: 1rem;
}

.case-tag {
  min-width: auto;
  padding: 0.45rem 0.75rem;
  min-height: auto;
  margin-bottom: 1rem;
}

.advantage-list {
  display: grid;
  gap: 1rem;
}

.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-bottom: 6rem;
}

.cta-box {
  position: relative;
  border-radius: 32px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(180deg, rgba(255, 252, 250, 0.68), rgba(248, 242, 238, 0.54));
  border: 1px solid rgba(34, 36, 40, 0.06);
  box-shadow: 0 28px 60px rgba(89, 65, 48, 0.08);
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-wallpaper {
  position: absolute;
  top: 1rem;
  left: -5rem;
  width: min(46vw, 700px);
  bottom: 1.5rem;
  background:
    linear-gradient(90deg, rgba(248, 242, 238, 0.12) 0%, rgba(248, 242, 238, 0.06) 34%, rgba(248, 242, 238, 0) 68%),
    url("../images/conectividad.png") no-repeat left center / contain;
  opacity: 0.46;
  pointer-events: none;
  z-index: -1;
}

.site-footer {
  padding: 0 0 2rem;
  margin-top: 0;
  color: var(--header-text);
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.98), rgba(7, 17, 31, 1));
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #f3f7fb;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  overflow: hidden;
  line-height: 0;
}

.footer-social:hover,
.footer-social:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(125, 169, 195, 0.22), rgba(125, 169, 195, 0.12));
  border-color: rgba(125, 169, 195, 0.28);
}

.footer-social img {
  width: 24px;
  height: 38px;
  display: block;
  object-fit: contain;
  object-position: center;
  margin: auto;
  border-radius: 0;
}

.footer-grid h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer-grid a {
  display: block;
  color: var(--header-muted);
  margin-bottom: 0.65rem;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .about-layout,
  .reverse,
  .needs-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 540px;
  }

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

  .showcase-slide {
    flex-basis: min(82vw, 860px);
    min-height: 600px;
  }

  .needs-layout {
    gap: 1.1rem;
  }

  .model-stage {
    min-height: 480px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-wallpaper {
    top: 1rem;
    left: -1.5rem;
    width: 100%;
    bottom: 1rem;
    background:
      linear-gradient(90deg, rgba(248, 242, 238, 0.14) 0%, rgba(248, 242, 238, 0.08) 36%, rgba(248, 242, 238, 0) 72%),
      url("../images/conectividad.png") no-repeat left center / cover;
    opacity: 0.34;
  }

  .cta-actions {
    width: 100%;
  }
}

@media (max-width: 820px) {
  section[id] {
    scroll-margin-top: 88px;
  }

  .nav-wrap {
    min-height: 76px;
    gap: 0.8rem;
  }

  .brand {
    gap: 0.7rem;
  }

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

  .brand-text span {
    font-size: 0.78rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    z-index: 60;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(6, 15, 27, 0.95);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero-section {
    padding-top: 3rem;
  }

  .section {
    padding: 1.5rem 0 4rem;
  }

  .section-heading,
  .gallery-heading,
  .content-block,
  .model-copy {
    max-width: 100%;
  }

  .services-section .section-heading {
    max-width: 100%;
  }

  .services-wallpaper {
    top: 12.5rem;
    right: -1rem;
    width: 100%;
    bottom: 0.5rem;
    background:
      linear-gradient(180deg, rgba(248, 242, 238, 0.06) 0%, rgba(248, 242, 238, 0.12) 28%, rgba(248, 242, 238, 0.22) 100%),
      url("../images/camara.png") no-repeat center center / cover;
    opacity: 0.92;
    z-index: 0;
  }

  .services-section .pillar-card {
    background: linear-gradient(180deg, rgba(255, 252, 250, 0.42), rgba(248, 242, 238, 0.28));
    backdrop-filter: blur(10px);
  }

  .process-section .section-heading {
    max-width: 100%;
  }

  .process-wallpaper {
    top: 10.5rem;
    right: -1rem;
    width: 100%;
    bottom: 0.5rem;
    background:
      linear-gradient(180deg, rgba(248, 242, 238, 0.06) 0%, rgba(248, 242, 238, 0.12) 28%, rgba(248, 242, 238, 0.22) 100%),
      url("../images/laptop.png") no-repeat 58% center / cover;
    opacity: 0.92;
    z-index: 0;
  }

  .process-section .process-step {
    background: linear-gradient(180deg, rgba(255, 252, 250, 0.44), rgba(248, 242, 238, 0.3));
    backdrop-filter: blur(10px);
  }

  .hero-metrics,
  .service-grid,
  .case-grid,
  .advantage-list,
  .pillar-grid,
  .process-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .hero-card {
    position: static;
    width: 100%;
  }

  .website-layout {
    grid-template-columns: 78px 1fr;
    min-height: 210px;
  }

  .website-columns {
    grid-template-columns: 1fr;
  }

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

  .section-alt::before {
    width: calc(100% - 1rem);
    inset: 0.5rem auto auto 50%;
    height: calc(100% - 1rem);
    border-radius: 28px;
  }

  .pillar-card,
  .service-card,
  .process-step,
  .solution-card,
  .case-card,
  .advantage-list article,
  .cta-box,
  .model-panel {
    padding: 1.15rem;
  }

  .showcase-track {
    padding-inline: 1.4rem;
  }

  .showcase-slide {
    flex-basis: 86vw;
    min-height: 520px;
  }

  .catalog-gallery .showcase-slide {
    min-height: 500px;
  }

  .showcase-caption {
    right: 1.4rem;
    bottom: 1.4rem;
    left: 1.4rem;
  }

  .showcase-button {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }

  .model-stage {
    min-height: 420px;
  }

  .model-hints span {
    font-size: 0.84rem;
  }

  .footer-grid {
    gap: 1.4rem;
  }
}

@media (min-width: 821px) {
  .catalog-gallery-phone .showcase-track {
    padding-inline: clamp(2rem, 9vw, 8rem);
  }

  .catalog-gallery-phone .showcase-slide {
    flex-basis: min(420px, 38vw);
    min-height: 760px;
    padding: 0;
    border: 0;
    border-radius: 48px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .catalog-gallery-phone .showcase-slide::after {
    display: none;
  }

  .catalog-gallery-phone .phone-preview {
    width: min(100%, 370px);
    height: 100%;
    margin: 0 auto;
    padding: 12px;
    border-radius: 44px;
    border: 6px solid #2b313d;
    background: linear-gradient(180deg, #141923 0%, #0b0f16 100%);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
  }

  .catalog-gallery-phone .phone-preview::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(7, 10, 16, 0.02) 0%, rgba(7, 10, 16, 0.12) 42%, rgba(7, 10, 16, 0.76) 100%);
    pointer-events: none;
  }

  .catalog-gallery-phone .phone-preview__notch,
  .catalog-gallery-phone .phone-preview__button {
    display: block;
    position: absolute;
    z-index: 3;
    background: #252b35;
  }

  .catalog-gallery-phone .phone-preview__notch {
    top: 12px;
    left: 50%;
    width: 42%;
    height: 28px;
    transform: translateX(-50%);
    border-radius: 0 0 20px 20px;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  }

  .catalog-gallery-phone .phone-preview__button {
    left: -10px;
    width: 8px;
    border-radius: 999px 0 0 999px;
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.05);
  }

  .catalog-gallery-phone .phone-preview__button--top {
    top: 132px;
    height: 52px;
  }

  .catalog-gallery-phone .phone-preview__button--middle {
    top: 198px;
    height: 74px;
  }

  .catalog-gallery-phone .phone-preview__button--bottom {
    top: 286px;
    height: 74px;
  }

  .catalog-gallery-phone .showcase-image {
    height: 100%;
    object-fit: contain;
    object-position: top center;
    border-radius: 32px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 36%), linear-gradient(180deg, #201612 0%, #100e12 100%);
  }

  .catalog-gallery-phone .showcase-caption {
    right: 2.1rem;
    bottom: 2rem;
    left: 2.1rem;
    z-index: 2;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .services-wallpaper {
    top: 12rem;
    right: -0.6rem;
    bottom: 0.25rem;
    background:
      linear-gradient(180deg, rgba(248, 242, 238, 0.04) 0%, rgba(248, 242, 238, 0.1) 24%, rgba(248, 242, 238, 0.2) 100%),
      url("../images/camara.png") no-repeat center center / cover;
    opacity: 0.96;
  }

  .services-section .pillar-card {
    background: linear-gradient(180deg, rgba(255, 252, 250, 0.36), rgba(248, 242, 238, 0.22));
    border-color: rgba(34, 36, 40, 0.08);
  }

  .process-wallpaper {
    top: 10rem;
    right: -0.5rem;
    bottom: 0.25rem;
    background:
      linear-gradient(180deg, rgba(248, 242, 238, 0.04) 0%, rgba(248, 242, 238, 0.1) 24%, rgba(248, 242, 238, 0.2) 100%),
      url("../images/laptop.png") no-repeat 58% center / cover;
    opacity: 0.96;
  }

  .process-section .process-step {
    background: linear-gradient(180deg, rgba(255, 252, 250, 0.36), rgba(248, 242, 238, 0.22));
    border-color: rgba(34, 36, 40, 0.08);
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 80;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .site-header {
    backdrop-filter: blur(14px);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand-text span {
    display: block;
    max-width: 18ch;
    font-size: 0.68rem;
    line-height: 1.15;
    white-space: normal;
  }

  .site-nav {
    right: 0.6rem;
    left: 0.6rem;
    padding: 0.9rem;
    gap: 0.85rem;
    border-radius: 20px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
  }

  .site-nav a:not(.button) {
    font-size: 0.98rem;
  }

  .hero-section {
    padding-top: 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 11vw, 2.9rem);
  }

  .section-heading h2,
  .content-block h2,
  .cta-box h2,
  .gallery-heading h2 {
    font-size: clamp(1.7rem, 8.5vw, 2.25rem);
    line-height: 1.06;
  }

  .content-block p,
  .section-heading p,
  .gallery-heading p,
  .model-copy p,
  .solution-card p,
  .case-card p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions,
  .cta-actions {
    gap: 0.8rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hero-metrics li {
    padding: 0.9rem;
  }

  .website-card,
  .dashboard-card,
  .media-card {
    width: 100%;
  }

  .website-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .website-sidebar {
    min-height: 78px;
  }

  .website-banner,
  .website-columns span {
    min-height: 88px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-chart {
    min-height: 130px;
  }

  .media-preview {
    min-height: 150px;
  }

  .section {
    padding-bottom: 3.4rem;
  }

  .section-heading {
    margin-bottom: 1.3rem;
  }

  .section-alt::before {
    width: calc(100% - 0.6rem);
    border-radius: 24px;
  }

  .needs-layout {
    gap: 0.9rem;
  }

  .needs-list {
    margin-top: 1.1rem;
  }

  .needs-list,
  .service-grid,
  .case-grid,
  .advantage-list,
  .pillar-grid,
  .process-grid,
  .solution-grid {
    gap: 0.85rem;
  }

  .solution-card h3,
  .service-card h3,
  .process-step h3,
  .case-card h3,
  .advantage-list h3 {
    margin-top: 0;
    margin-bottom: 0.55rem;
    line-height: 1.15;
  }

  .model-copy h3 {
    font-size: 1.55rem;
    margin-bottom: 0.65rem;
  }

  .model-stage {
    min-height: 320px;
    margin-top: 1rem;
    border-radius: 20px;
  }

  .model-status {
    inset: auto 0.75rem 0.75rem 0.75rem;
    min-height: 40px;
    padding: 0.65rem 0.8rem;
    font-size: 0.9rem;
    border-radius: 14px;
  }

  .model-hints {
    gap: 0.55rem;
  }

  .model-hints span {
    width: 100%;
    justify-content: center;
    min-height: 36px;
    font-size: 0.82rem;
    text-align: center;
  }

  .gallery-shell {
    width: calc(100% - 1rem);
  }

  .showcase-track {
    gap: 0.85rem;
    padding-inline: 0.2rem;
  }

  .showcase-slide {
    flex-basis: calc(100vw - 1rem);
    min-height: 420px;
    border-radius: 26px;
  }

  .catalog-gallery .showcase-slide {
    min-height: 400px;
  }

  .showcase-caption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .showcase-caption h3 {
    font-size: 1.5rem;
  }

  .showcase-button {
    display: none;
  }

  .showcase-dots {
    width: 100%;
    justify-content: center;
  }

  .showcase-dot.is-active {
    width: 34px;
  }

  .cta-box {
    border-radius: 24px;
  }

  .cta-wallpaper {
    left: -1.5rem;
    background:
      linear-gradient(90deg, rgba(248, 242, 238, 0.12) 0%, rgba(248, 242, 238, 0.08) 34%, rgba(248, 242, 238, 0) 72%),
      url("../images/conectividad.png") no-repeat left center / cover;
    opacity: 0.28;
  }

  .catalog-login__panel {
    padding: 1.4rem;
    border-radius: 24px;
  }

  .footer-grid {
    padding: 1.5rem 0;
  }
}

@media (max-width: 400px) {
  .container,
  .gallery-shell {
    width: calc(100% - 0.8rem);
  }

  .site-nav {
    right: 0.4rem;
    left: 0.4rem;
  }

  .hero-copy h1 {
    font-size: 1.85rem;
  }

  .section-heading h2,
  .content-block h2,
  .cta-box h2,
  .gallery-heading h2 {
    font-size: 1.55rem;
  }

  .showcase-slide {
    min-height: 380px;
  }

  .model-panel {
    padding: 0.95rem;
    border-radius: 22px;
  }

  .model-stage {
    min-height: 260px;
  }

  .model-copy h3 {
    font-size: 1.35rem;
  }

  .showcase-caption {
    right: 0.85rem;
    bottom: 0.85rem;
    left: 0.85rem;
  }

  .showcase-caption h3 {
    font-size: 1.35rem;
  }

  .showcase-tag {
    margin-bottom: 0.7rem;
  }
}

@media (max-width: 820px) {
  .hero-premium {
    min-height: auto;
    padding: 6.5rem 0 4rem;
  }

  .hero-grid-centered {
    min-height: 72vh;
  }

  .hero-copy-centered h1 {
    font-size: clamp(2.8rem, 12vw, 4.6rem);
  }

  .rdg-logo-reveal {
    width: min(360px, 100%);
    padding: 1rem;
    border-radius: 20px;
  }

  .rdg-symbol {
    width: 116px;
    height: 116px;
  }

  .rdg-wordmark,
  .rdg-tagline {
    width: min(280px, 100%);
  }

  .hero-text-dark {
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  .hero-premium {
    padding: 5.6rem 0 3.4rem;
  }

  .hero-grid-centered {
    min-height: 68vh;
  }

  .hero-copy-centered h1 {
    font-size: clamp(2.45rem, 14vw, 3.6rem);
    line-height: 0.98;
  }

  .rdg-logo-reveal {
    width: min(300px, 100%);
  }

  .rdg-symbol {
    width: 96px;
    height: 96px;
  }

  .rdg-wordmark,
  .rdg-tagline {
    width: min(230px, 100%);
  }

  .rdg-boot-text {
    font-size: 0.56rem;
    letter-spacing: 0.22em;
  }

  .hero-actions-centered .button {
    width: 100%;
  }
}
