:root {
  --bg: #07080e;
  --bg-soft: rgba(9, 11, 20, 0.88);
  --surface: rgba(13, 16, 28, 0.7);
  --surface-strong: rgba(8, 10, 18, 0.97);
  --line: rgba(91, 143, 255, 0.14);
  --text: #e8edf5;
  --muted: #8899b4;
  --cyan: #5b8fff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-elevated: 0 28px 70px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255,255,255,0.04) inset;
  --radius: 20px;
  --max-width: 1180px;
  --card-transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease, border-color 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 90% 35% at 50% -5%, rgba(80, 110, 200, 0.06), transparent),
    #0a0a12;
}


body.menu-scrolled .topbar {
  background: rgba(8, 8, 14, 0.97);
  border-color: rgba(91, 143, 255, 0.14);
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 20px auto 48px;
}

.section + .section:not(.results-section):not(.why-section):not(.cases-section):not(.packages-section):not(.launch-section):not(.faq-section):not(.stack-section) {
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  padding-top: 56px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  background: rgba(4, 10, 20, 0.7);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.38), 0 1px 0 rgba(255,255,255,0.06) inset;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(91, 143, 255, 0.1);
  border: 1px solid rgba(91, 143, 255, 0.2);
  font-family: "Syncopate", sans-serif;
  font-size: 0.95rem;
}

.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong,
.eyebrow,
.panel-topline,
.nav a,
.button,
.process-list span,
.chip-cloud span,
.chip-cloud button {
  letter-spacing: 0.08em;
}

.brand-copy small,
.hero-text,
.service-card p,
.process-list p,
.contact-card p {
  color: var(--muted);
}

.nav {
  display: inline-flex;
  gap: 22px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn {
  min-width: 42px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-btn.is-active {
  background: rgba(91, 143, 255, 0.16);
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(91, 143, 255, 0.28) inset;
}

.mobile-lang-switch {
  margin-bottom: 8px;
  width: fit-content;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin: 14px 0 0;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 12, 23, 0.88);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bottom-app-nav {
  display: none;
}

.bottom-app-link {
  color: var(--muted);
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(7, 9, 18, 0.94);
  border: 1px solid rgba(52, 209, 123, 0.22);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.floating-whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: #34d17b;
  flex: 0 0 auto;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.5);
  border-color: rgba(52, 209, 123, 0.36);
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 6px 4px;
  transition: color 180ms ease;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
  transform: translateX(-50%);
  transition: width 200ms ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 100%;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(91, 143, 255, 0.3);
  background: #5b8fff;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(91, 143, 255, 0.32);
  background: #6e9cff;
}

.button-secondary,
.button-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
}

.button-secondary::after,
.button-ghost::after {
  display: none;
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(91, 143, 255, 0.30);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.hero,
.section {
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 450px);
  gap: 64px;
  align-items: start;
  padding: 88px 0 56px;
}

.hero-copy,
.hero-panel {
  min-width: 0;
}

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

.hero-copy .eyebrow {
  max-width: 24ch;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  display: inline-block;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 7ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.hero-text {
  max-width: 40ch;
  margin: 22px 0 0;
  font-size: 0.95rem;
  line-height: 1.62;
}

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

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.signal-grid li,
.service-card,
.process-list article,
.contact-card,
.panel-frame {
  background: rgba(13, 16, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signal-grid li {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.signal-grid strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.signal-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.panel-frame {
  position: relative;
  overflow: hidden;
  padding: 24px;
  min-height: 480px;
}

.wizard-shell {
  position: relative;
  overflow: hidden;
  padding: 24px;
  min-height: 540px;
  border-radius: var(--radius);
  background: rgba(13, 16, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  align-self: start;
}

.panel-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(91, 143, 255, 0.04), transparent 60%);
}

.wizard-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(91, 143, 255, 0.04), transparent 60%);
}

.wizard-shell > * {
  position: relative;
  z-index: 1;
}

.wizard-header h2 {
  max-width: 13ch;
  font-size: clamp(1.8rem, 2.3vw, 2.6rem);
  line-height: 1.06;
}

.wizard-intro {
  margin: 12px 0 0;
  max-width: 38ch;
  color: var(--muted);
  line-height: 1.6;
}

.wizard-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}

.wizard-progress-current,
.wizard-progress-total,
.wizard-step-label,
.wizard-selection-list span,
.wizard-result-tag {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wizard-progress-current,
.wizard-progress-total,
.wizard-step-label {
  color: var(--muted);
}

.wizard-result-tag {
  color: var(--cyan);
}

.wizard-progress-bar {
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.wizard-progress-fill {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: var(--cyan);
  transition: width 220ms ease;
}

.wizard-step-meta {
  margin-top: 20px;
}

.wizard-step-meta.is-hidden,
.wizard-options.is-hidden,
.wizard-selection-list.is-hidden,
.wizard-step-actions.is-hidden {
  display: none;
}

.wizard-question {
  display: block;
  margin-top: 8px;
  font-size: 1.08rem;
}

.wizard-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.wizard-options[role="list"] {
  align-content: start;
}

.wizard-option {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 122px;
  padding: 16px;
  text-align: left;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.wizard-option:hover,
.wizard-option:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(91, 143, 255, 0.28);
  background: rgba(91, 143, 255, 0.06);
}

.wizard-option.is-selected {
  border-color: rgba(91, 143, 255, 0.38);
  background: rgba(91, 143, 255, 0.09);
  box-shadow: 0 0 0 1px rgba(91, 143, 255, 0.10) inset;
}

.wizard-option small {
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  display: grid;
  gap: 10px;
}

.wizard-step-actions {
  margin-top: 14px;
}

.wizard-step-actions .button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.wizard-summary {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-selection-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wizard-selection-list div {
  min-width: 110px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-selection-list div.is-empty {
  display: none;
}

.wizard-selection-list strong {
  display: block;
  margin-top: 6px;
  font-size: 0.88rem;
  line-height: 1.35;
}

.wizard-result-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 16px;
}

.wizard-result-card.is-hidden {
  display: none;
}

.wizard-result-title {
  margin-top: 10px;
}

.wizard-result-text {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.wizard-result-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.wizard-result-meta div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-result-meta-label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.wizard-result-package,
.wizard-result-priority {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.45;
}

.wizard-ai-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(91, 143, 255, 0.06);
  border: 1px solid rgba(91, 143, 255, 0.14);
}

.wizard-ai-card.is-hidden {
  display: none;
}

.wizard-ai-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wizard-ai-tag {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.wizard-ai-status {
  font-size: 0.88rem;
  color: var(--text);
}

.wizard-ai-body {
  margin-top: 14px;
}

.wizard-ai-title {
  margin: 0;
  font-size: 1rem;
}

.wizard-ai-summary {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.wizard-ai-points {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.wizard-ai-points li {
  line-height: 1.6;
}

.wizard-result-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 18px 0 0;
  color: var(--text);
}

.wizard-result-list li {
  line-height: 1.6;
}

.wizard-result-contact {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.wizard-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 1360px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-panel {
    width: 100%;
    max-width: 560px;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(2.4rem, 6vw, 4rem);
  }
}

.panel-topline,
.flow-card span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.flow-card {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(13, 16, 26, 0.88);
  border: 1px solid rgba(91, 143, 255, 0.12);
}

.flow-primary {
  margin-top: 42px;
}

.flow-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.15rem;
}

.flow-line {
  position: relative;
  z-index: 1;
  width: 2px;
  height: 50px;
  margin: 8px 0 8px 20px;
  background: linear-gradient(rgba(255, 255, 255, 0.12), transparent);
}

.panel-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.panel-badges span,
.chip-cloud span,
.chip-cloud button {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chip-cloud button {
  font: inherit;
  color: var(--text);
  cursor: pointer;
  appearance: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.chip-cloud button:hover,
.chip-cloud button:focus-visible {
  border-color: rgba(91, 143, 255, 0.22);
  background: rgba(91, 143, 255, 0.07);
  transform: translateY(-1px);
}

.chip-cloud button.is-selected {
  border-color: rgba(91, 143, 255, 0.34);
  background: rgba(91, 143, 255, 0.11);
  box-shadow: 0 0 0 3px rgba(91, 143, 255, 0.06);
}

.section {
  padding: 56px 0;
}

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

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.app-carousel {
  margin-top: 28px;
}

.app-carousel-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.app-carousel-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.app-carousel-controls {
  display: inline-flex;
  gap: 8px;
}

.app-carousel-inline-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.app-carousel-inline-bar-start {
  justify-content: flex-start;
  margin-top: 18px;
}

.app-carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.app-carousel-btn:hover,
.app-carousel-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(91, 143, 255, 0.22);
  background: rgba(91, 143, 255, 0.07);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.app-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pinch-zoom;
  cursor: grab;
}

.app-carousel-track > * {
  flex: 0 0 min(520px, calc(52% - 10px));
  max-width: min(520px, calc(52% - 10px));
  cursor: pointer;
  opacity: 0.68;
  transform: scale(0.97);
  filter: saturate(0.9);
  transition: transform 260ms ease, opacity 260ms ease, border-color 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.app-carousel-track > *.is-current {
  cursor: default;
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
}

.app-carousel-track.why-grid > *,
.app-carousel-track.process-list > * {
  flex-basis: min(440px, calc(52% - 10px));
  max-width: min(440px, calc(52% - 10px));
}

#processCarousel > * {
  flex-basis: min(500px, calc(100% - 56px));
  max-width: min(500px, calc(100% - 56px));
  justify-self: start;
}

#processCarousel {
  display: grid;
  overflow: hidden;
  align-items: start;
  min-height: 220px;
}

#processCarousel > * {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px) scale(0.985);
  transition: opacity 260ms ease, transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

#processCarousel > *.is-current {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.app-carousel-track.results-grid > *,
.app-carousel-track.cases-grid > *,
.app-carousel-track.packages-grid > *,
.app-carousel-track.testimonials-grid > * {
  flex-basis: min(560px, calc(54% - 10px));
  max-width: min(560px, calc(54% - 10px));
}

.app-carousel .app-carousel-track {
  margin-top: 0;
}

.app-carousel-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.app-carousel-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.service-card::before {
  display: none;
}

.service-card p {
  margin: 14px 0 0;
  line-height: 1.7;
}

.service-card-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.accent-cyan .service-card-icon,
.accent-pink .service-card-icon,
.accent-gold .service-card-icon {
  color: var(--muted);
  filter: none;
}

.service-card,
.why-card,
.result-card,
.case-card,
.package-card {
  transition: var(--card-transition);
}

.service-card:hover,
.why-card:hover,
.result-card:hover,
.case-card:hover,
.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 143, 255, 0.18);
  box-shadow: var(--shadow-elevated);
}

.why-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(13, 16, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.why-grid[data-sequence] > .why-card,
.process-list[data-sequence] > article {
  will-change: transform, opacity, box-shadow, border-color;
}

.why-grid[data-sequence] > .why-card.is-featured {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(91, 143, 255, 0.26);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(91, 143, 255, 0.08) inset;
  animation: cardPulse 900ms ease;
}

.why-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: rgba(91, 143, 255, 0.10);
  border: 1px solid rgba(91, 143, 255, 0.18);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.why-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  align-items: start;
}

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

.process-list article {
  padding: 18px 20px;
}

.process-list[data-sequence] > article {
  opacity: 0.18;
  transform: translateY(18px) scale(0.96);
}

.process-list[data-sequence] > article.is-featured {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(91, 143, 255, 0.20);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.48);
}

.process-list span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.process-list p {
  margin: 10px 0 0;
  line-height: 1.55;
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.chip-cloud-note {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.results-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.app-carousel-track.cards-grid,
.app-carousel-track.why-grid,
.app-carousel-track.process-list,
.app-carousel-track.results-grid,
.app-carousel-track.cases-grid,
.app-carousel-track.packages-grid,
.app-carousel-track.launch-timeline,
.app-carousel-track.testimonials-grid {
  display: flex;
  grid-template-columns: none;
}

.result-card {
  padding: 28px;
  background: rgba(13, 16, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.result-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.15;
}

.result-card p {
  margin: 14px 0 0;
  line-height: 1.7;
  color: var(--muted);
}

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

.proof-strip div {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(91, 143, 255, 0.10);
}

.proof-strip strong {
  display: block;
  font-size: 1rem;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.faq-item {
  padding: 0 22px;
  background: rgba(11, 12, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  padding-right: 32px;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--muted);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 72ch;
}

.cases-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.case-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(13, 16, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.case-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(91, 143, 255, 0.07);
  border: 1px solid rgba(91, 143, 255, 0.16);
  color: var(--text);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-card p {
  margin: 14px 0 0;
  line-height: 1.7;
  color: var(--muted);
}

.case-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.case-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.6;
}

.case-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.packages-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.package-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(13, 16, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.package-card-featured {
  border-color: rgba(91, 143, 255, 0.24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(91, 143, 255, 0.08) inset;
}

.package-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-card p {
  margin: 14px 0 0;
  line-height: 1.7;
  color: var(--muted);
}

.package-card ul,
.contact-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

  .contact-trust-chips {
    display: flex;
    margin-top: 16px;
  }

  .contact-points {
    display: grid;
    gap: 8px;
    margin-top: 14px;
  }

  .quick-request-panel {
    display: grid;
    gap: 10px;
  }

.package-card li,
.contact-points li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.6;
}

.package-card li::before,
.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.launch-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.launch-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.launch-timeline {
  display: grid;
  gap: 16px;
}

.launch-timeline article,
.launch-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(13, 16, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.launch-timeline span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.launch-timeline p,
.launch-card li {
  color: var(--muted);
  line-height: 1.7;
}

.launch-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.launch-card li {
  position: relative;
  padding-left: 18px;
}

.launch-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.cta-ribbon {
  margin: 10px 0 0;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 22px;
  background: rgba(91, 143, 255, 0.07);
  border: 1px solid rgba(91, 143, 255, 0.14);
  box-shadow: var(--shadow);
}

.cta-ribbon strong {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
}

.cta-ribbon span {
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 4px 12px;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.site-footer span {
  display: block;
  max-width: 44ch;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.contact-card {
  padding: 32px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card p {
  max-width: 68ch;
  line-height: 1.75;
}

.contact-form {
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(13, 16, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.quick-request-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 4px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(91, 143, 255, 0.09);
}

.quick-request-copy {
  display: grid;
  gap: 6px;
}

.quick-request-title {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.quick-request-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.quick-ticket-cloud {
  margin-top: 0;
  gap: 10px;
}

.quick-ticket-summary {
  margin: 0;
  color: #cce8ff;
  line-height: 1.6;
}

.quick-ticket-summary.is-empty {
  color: var(--muted);
}

.form-heading p,
.form-heading h3 {
  margin: 0;
}

.form-heading h3 {
  font-size: 1.35rem;
}

.form-heading p:last-child {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color-scheme: dark;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(245, 247, 251, 0.86) 50%),
    linear-gradient(135deg, rgba(245, 247, 251, 0.86) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.contact-form select option,
.contact-form select optgroup {
  background: #0a0a14;
  color: #f5f7fb;
}

.contact-form select option[value=""] {
  color: #9ab0ca;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8ea3c0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(91, 143, 255, 0.36);
  box-shadow: 0 0 0 4px rgba(91, 143, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

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

.form-note {
  color: var(--muted);
  line-height: 1.6;
}

.form-success-card {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(52, 209, 123, 0.16), rgba(142, 255, 192, 0.08));
  border: 1px solid rgba(142, 255, 192, 0.28);
}

.form-success-card strong {
  color: #dfffea;
  font-size: 0.95rem;
}

.form-success-card span {
  color: #bff5d4;
  font-size: 0.86rem;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}

.form-success-card.is-hidden {
  display: none;
}

.form-status {
  margin: 0;
  min-height: 1.4em;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-status.is-success {
  color: #8effc0;
}

.form-status.is-error {
  color: #ff9f9f;
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: wait;
  pointer-events: none;
}

.form-honeypot {
  display: none;
}

.chat-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 31;
  display: grid;
  gap: 12px;
}

.chat-launcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(91, 143, 255, 0.16);
  background: rgba(7, 9, 18, 0.94);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
}

.chat-launcher-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(91, 143, 255, 0.10);
}

.chat-panel {
  width: min(380px, calc(100vw - 32px));
  max-height: min(72vh, 680px);
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(91, 143, 255, 0.14);
  background: rgba(10, 12, 22, 0.97);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(22px);
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 14px;
}

.chat-panel.is-hidden {
  display: none;
}

.chat-panel-header,
.chat-panel-heading,
.chat-form,
.chat-links {
  display: grid;
  gap: 8px;
}

.chat-panel-header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.chat-panel-heading strong {
  font-size: 1rem;
}

.chat-panel-heading span {
  color: var(--muted);
  line-height: 1.5;
}

.chat-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-size: 1.3rem;
  cursor: pointer;
}

.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-quick-actions button {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  gap: 10px;
  min-height: 180px;
  max-height: 100%;
  overflow-y: auto;
  padding-right: 4px;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(91, 143, 255, 0.16);
  border-radius: 999px;
}

.chat-message {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.55;
}

.chat-message.user {
  margin-left: auto;
  background: rgba(91, 143, 255, 0.11);
  border: 1px solid rgba(91, 143, 255, 0.18);
}

.chat-message.assistant {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-message.system {
  max-width: 100%;
  background: rgba(255, 196, 87, 0.12);
  border: 1px solid rgba(255, 196, 87, 0.18);
  color: #ffe6ad;
}

.chat-message small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chat-message-body {
  white-space: pre-line;
}

.chat-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chat-message-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(91, 143, 255, 0.18);
  background: rgba(91, 143, 255, 0.07);
  color: var(--text);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.chat-message-action:hover {
  border-color: rgba(91, 143, 255, 0.30);
  background: rgba(91, 143, 255, 0.12);
}

.chat-form-label {
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.chat-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.chat-input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  outline: none;
}

.chat-input:focus {
  border-color: rgba(91, 143, 255, 0.36);
  box-shadow: 0 0 0 4px rgba(91, 143, 255, 0.08);
}

.chat-form .button {
  width: auto;
  min-width: 96px;
}

.chat-lead-panel,
.chat-lead-copy,
.chat-lead-form {
  display: grid;
  gap: 10px;
}

.chat-lead-panel {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(91, 143, 255, 0.10);
}

.chat-lead-copy p,
.chat-lead-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.chat-lead-form {
  grid-template-columns: 1fr;
}

.chat-lead-form.is-suggested {
  padding: 12px;
  border-radius: 16px;
  background: rgba(91, 143, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(91, 143, 255, 0.14);
}

.chat-lead-status.is-success {
  color: #8effc0;
}

.chat-lead-status.is-error {
  color: #ff9f9f;
}

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

.chat-links .button,
.chat-links .button-secondary,
.chat-links .button-ghost {
  width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 580ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 580ms cubic-bezier(0.22, 1, 0.36, 1);
  }

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

/* ── Trust chips ── */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.trust-chips li {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1;
}

.trust-chips li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.contact-trust-chips {
  margin-top: 22px;
}

/* ── Testimonials ── */
.testimonials-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.testimonial-card {
  padding: 28px;
  background: rgba(13, 16, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--card-transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 143, 255, 0.16);
  box-shadow: var(--shadow-elevated);
}

.testimonial-stars {
  color: #e8b84b;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
}

.testimonial-quote {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.testimonial-author strong {
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Signal-grid number sizing ── */
.signal-grid strong {
  font-size: 1.65rem;
}

/* ── FAQ open state accent ── */
.faq-item[open] {
  border-color: rgba(91, 143, 255, 0.16);
}

.faq-item[open] summary {
  color: var(--text);
}



@keyframes cardPulse {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.02);
  }

  70% {
    transform: scale(0.992);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 960px) {
  body {
    padding-bottom: 96px;
  }

  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
    margin: 14px auto 28px;
  }

  .hero,
  .split-section,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-radius: 28px;
    padding: 18px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy small {
    font-size: 0.74rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav,
  .topbar > .button.button-ghost {
    display: none;
  }

  .topbar > .lang-switch {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  body.menu-open .mobile-nav {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .why-section,
  .testimonials-section,
  .stack-section,
  .launch-section,
  .chat-widget,
  .bottom-app-nav,
  .contact-trust-chips,
  #proceso,
  #paquetes,
  .site-footer {
    display: none;
  }

  .mobile-nav a[href="#proceso"],
  .mobile-nav a[href="#stack"] {
    display: none;
  }

  .hero-copy,
  .hero-panel {
    max-width: 100%;
  }

  .hero-copy {
    max-width: none;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(13, 16, 26, 0.92), rgba(13, 16, 26, 0.76));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .trust-chips {
    display: flex;
    gap: 8px;
    margin-top: 18px;
  }

  .trust-chips li {
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .hero-copy .eyebrow {
    margin-bottom: 12px;
  }

  .section-heading,
  .form-heading,
  .wizard-header {
    gap: 12px;
  }

  h1 {
    max-width: none;
    font-size: clamp(1.9rem, 7.8vw, 2.6rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.7rem, 7vw, 2.45rem);
    line-height: 1.16;
  }

  .section {
    padding: 28px 0;
  }

  .hero-text {
    max-width: none;
    margin-top: 16px;
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .section-heading h2,
  .results-section .section-heading h2,
  .why-section .section-heading h2,
  .packages-section .section-heading h2,
  .cases-section .section-heading h2 {
    max-width: 16ch;
  }

  .cards-grid,
  .why-grid,
  .process-list,
  .wizard-options,
  .wizard-selection-list,
  .wizard-result-meta,
  .signal-grid,
  .results-grid,
  .proof-strip,
  .packages-grid,
  .cases-grid,
  .testimonials-grid,
  .contact-layout,
  .launch-layout {
    grid-template-columns: 1fr;
  }

  .app-carousel-track {
    gap: 12px;
    width: 100%;
    padding-right: 2px;
    scroll-snap-type: x mandatory;
    cursor: auto;
  }

  .app-carousel-topbar,
  .app-carousel-inline-bar,
  .app-carousel-inline-bar-start {
    margin-bottom: 12px;
  }

  .app-carousel-track > * {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .wizard-shell {
    min-height: auto;
    padding: 18px;
  }

  .wizard-header h2 {
    max-width: none;
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.14;
    margin-top: 4px;
  }

  .wizard-intro,
  .wizard-result-text,
  .wizard-result-contact {
    max-width: none;
  }

  .wizard-question {
    font-size: 1rem;
    line-height: 1.4;
  }

  .wizard-options {
    max-height: 46vh;
    overflow-y: auto;
    padding-right: 4px;
    align-content: start;
    overscroll-behavior: contain;
  }

  .wizard-options::-webkit-scrollbar {
    width: 6px;
  }

  .wizard-options::-webkit-scrollbar-thumb {
    background: rgba(91, 143, 255, 0.22);
    border-radius: 999px;
  }

  .wizard-option {
    min-height: auto;
    padding: 14px;
  }

  .wizard-option small {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .wizard-result-actions,
  .hero-actions,
  .contact-actions {
    gap: 10px;
  }

  .wizard-selection-list {
    display: none;
  }

  .signal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .signal-grid li {
    padding: 12px 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
  }

  .signal-grid strong {
    font-size: 1.14rem;
  }

  .signal-grid span {
    margin-top: 4px;
    font-size: 0.72rem;
    line-height: 1.32;
  }

  .signal-grid li,
  .contact-card,
  .contact-form,
  .service-card,
  .result-card,
  .case-card,
  .package-card,
  .launch-timeline article,
  .launch-card,
  .why-card,
  .process-list article {
    padding: 18px;
  }

  #processCarousel {
    display: flex;
    min-height: 0;
    overflow-x: auto;
    align-items: stretch;
  }

  #processCarousel > * {
    flex-basis: 100%;
    max-width: 100%;
    grid-area: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  #processCarousel > *.is-current {
    transform: none;
  }

  .app-carousel-track.why-grid > *,
  .app-carousel-track.process-list > *,
  .app-carousel-track.results-grid > *,
  .app-carousel-track.cases-grid > *,
  .app-carousel-track.packages-grid > * {
    flex-basis: 100%;
    max-width: 100%;
  }

  .process-list[data-sequence] > article {
    opacity: 0.28;
  }

  .app-carousel-track::-webkit-scrollbar {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-layout {
    gap: 14px;
  }

  #casos {
    display: block;
  }

  #casos .section-heading,
  #resultados .section-heading,
  #faq .section-heading,
  #servicios .section-heading,
  #contacto .form-heading,
  #contacto .contact-card {
    margin-bottom: 8px;
  }

  .wizard-result-actions .button-secondary,
  .wizard-result-actions .button-ghost {
    display: none;
  }

  .contact-form > label:nth-of-type(3),
  .contact-form > label:nth-of-type(4),
  .form-note {
    display: none;
  }

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

  #contacto .contact-card {
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(12, 16, 28, 0.98), rgba(9, 13, 24, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
    overflow: hidden;
  }

  #contacto .contact-layout {
    gap: 20px;
  }

  #contacto .contact-copy {
    padding-bottom: 0;
  }

  #contacto .contact-points {
    gap: 10px;
    margin-top: 16px;
  }

  #contacto .contact-points li {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  #contacto .contact-form {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  #contacto .form-heading {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  #contacto .quick-request-panel {
    margin-top: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(166, 200, 255, 0.08);
    border: 1px solid rgba(166, 200, 255, 0.14);
  }

  #contacto .submit-button {
    min-height: 54px;
    font-size: 0.96rem;
    letter-spacing: 0.04em;
  }

  #resultados,
  #faq {
    display: block;
  }

  #resultados {
    padding-top: 36px;
  }

  #resultados .section-heading {
    gap: 10px;
    margin-bottom: 18px;
  }

  #resultados .results-grid {
    gap: 14px;
  }

  #resultados .result-card {
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(14, 19, 31, 0.96), rgba(14, 19, 31, 0.78));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  }

  #resultados .result-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: rgba(241, 244, 255, 0.7);
  }

  #resultados .result-card strong {
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 0.95;
  }

  #resultados .result-card p {
    color: rgba(241, 244, 255, 0.82);
  }

  #resultados .proof-strip {
    gap: 10px;
    margin-top: 18px;
  }

  #resultados .proof-card {
    padding: 14px 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  #resultados .proof-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.98rem;
  }

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

  .bottom-app-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 30;
    display: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    border-radius: 28px;
    border: 1px solid rgba(91, 143, 255, 0.16);
    background: rgba(5, 7, 14, 0.95);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255,255,255,0.06) inset;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 90px;
    min-height: 46px;
    min-width: 46px;
    padding: 0 14px;
    font-size: 0.7rem;
    gap: 8px;
  }

  .chat-widget {
    left: 12px;
    bottom: 90px;
  }

  .chat-panel {
    width: min(360px, calc(100vw - 24px));
  }

  .bottom-app-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 56px;
    padding: 8px 4px;
    border-radius: 16px;
    text-align: center;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
  }

  .bottom-app-link svg {
    width: 21px;
    height: 21px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform 200ms ease, filter 200ms ease;
  }

  .bottom-app-link.is-active {
    color: var(--text);
    background: rgba(91, 143, 255, 0.14);
    border-color: rgba(91, 143, 255, 0.28);
  }

  .bottom-app-link.is-active svg {
    filter: drop-shadow(0 0 5px rgba(91, 143, 255, 0.48));
    transform: scale(1.08);
  }

  .cta-ribbon {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 16px), var(--max-width));
  }

  .topbar {
    gap: 10px;
    padding: 12px;
  }

  .topbar {
    position: sticky;
    top: 8px;
    border-radius: 22px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-logo {
    width: 28px;
    height: 28px;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .brand-copy small {
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(1.82rem, 9vw, 2.3rem);
    letter-spacing: -0.05em;
  }

  h2 {
    font-size: clamp(1.25rem, 6.6vw, 1.7rem);
    line-height: 1.18;
  }

  .hero {
    gap: 14px;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy .eyebrow,
  .section-heading .eyebrow,
  .wizard-header .eyebrow {
    font-size: 0.68rem;
    margin-bottom: 10px;
  }

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

  .section-heading,
  .form-heading,
  .wizard-header,
  .contact-card {
    gap: 14px;
  }

  .section-heading p:not(.eyebrow),
  .contact-card p:nth-of-type(2),
  .service-card p,
  .case-card p,
  .package-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .mobile-nav .lang-switch,
  .mobile-nav .button.button-secondary {
    display: none;
  }

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

  .signal-grid li {
    padding: 10px 8px;
  }

  .signal-grid strong {
    font-size: 0.98rem;
  }

  .signal-grid span {
    font-size: 0.64rem;
  }

  .wizard-shell {
    padding: 14px;
    border-radius: 20px;
  }

  .wizard-progress {
    gap: 8px;
  }

  .wizard-step-meta {
    margin-top: 14px;
  }

  .wizard-options {
    gap: 10px;
    margin-top: 14px;
  }

  .wizard-option {
    padding: 12px;
    border-radius: 16px;
  }

  .quick-request-panel {
    padding: 16px;
  }

  .chat-widget {
    left: 8px;
    right: 8px;
    bottom: 78px;
  }

  .chat-launcher {
    width: fit-content;
    max-width: calc(100vw - 16px);
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .chat-panel {
    width: calc(100vw - 16px);
    max-height: min(66vh, 620px);
    padding: 14px;
    border-radius: 20px;
  }

  .chat-form-row,
  .chat-links {
    grid-template-columns: 1fr;
  }

  .chat-form .button {
    width: 100%;
  }

  .quick-ticket-cloud {
    gap: 8px;
  }

  .quick-request-copy p,
  .contact-points li:last-child,
  .site-footer .footer-brand span,
  .footer-links a:nth-child(n + 5) {
    display: none;
  }

  .chip-cloud button {
    min-height: 42px;
    padding: 10px 12px;
  }

  .wizard-option strong {
    font-size: 1rem;
    line-height: 1.25;
  }

  .wizard-option small,
  .wizard-intro,
  .wizard-result-text,
  .wizard-result-contact,
  .hero-text,
  .service-card p,
  .contact-card p,
  .form-heading p:last-child {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  /* Ocultar descripciones secundarias en cards en mobile: */
  .case-card ul,
  .package-card ul,
  .launch-timeline p {
    display: none;
  }

  /* Mostrar solo título y etiqueta en cards para menos info en mobile */
  .why-card p,
  .result-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .wizard-result-meta {
    gap: 10px;
  }

  .wizard-result-meta div,
  .wizard-selection-list div {
    min-width: 0;
  }

  .section {
    padding: 24px 0;
  }

  .section-heading {
    max-width: none;
  }

  .section-heading h2 {
    max-width: 13ch;
  }

  .site-footer,
  .footer-links {
    gap: 12px;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
    min-height: 44px;
    font-size: 0.84rem;
  }

  .panel-topline {
    flex-direction: column;
  }

  .lang-switch {
    width: 100%;
    justify-content: center;
  }

  .mobile-nav {
    padding: 14px;
    border-radius: 20px;
    gap: 10px;
  }

  .mobile-nav a {
    padding: 8px 0;
    line-height: 1.35;
  }

  .app-carousel-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-carousel-inline-bar,
  .app-carousel-inline-bar-start {
    justify-content: flex-start;
  }

  .app-carousel-note {
    display: none;
  }

  .app-carousel-btn {
    width: 38px;
    height: 38px;
  }

  .service-card,
  .result-card,
  .case-card,
  .package-card,
  .why-card,
  .process-list article,
  .contact-card,
  .contact-form,
  .launch-timeline article,
  .launch-card,
  .faq-item {
    border-radius: 18px;
  }

  #resultados .proof-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item {
    padding: 0 16px;
  }

  .faq-item summary {
    padding: 16px 24px 16px 0;
    font-size: 0.92rem;
  }

  .contact-form {
    gap: 12px;
  }

  .contact-card h2,
  .form-heading h3 {
    max-width: 12ch;
  }

  .contact-actions .button {
    min-height: 46px;
  }

  .quick-request-panel {
    gap: 10px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .wizard-result-actions,
  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .app-carousel-track > *,
  #processCarousel > *,
  .app-carousel-track.results-grid > *,
  .app-carousel-track.cases-grid > *,
  .app-carousel-track.packages-grid > * {
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .form-success-card {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .form-success-card strong {
    font-size: 0.88rem;
  }

  .form-success-card span,
  .form-status,
  .form-note {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .bottom-app-nav {
    left: 8px;
    right: 8px;
    bottom: 8px;
    gap: 6px;
    padding: 8px;
    border-radius: 20px;
  }

  .floating-whatsapp {
    right: 8px;
    bottom: 78px;
    width: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 999px;
  }

  .floating-whatsapp-icon {
    width: 18px;
    height: 18px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .bottom-app-link {
    min-height: 42px;
    padding: 0 4px;
    border-radius: 14px;
    font-size: 0.62rem;
    letter-spacing: 0.03em;
  }
}
