:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #5b6472;
  --line: #e3ebf5;
  --brand: #2563eb;
  --brand-2: #2563eb;
  --brand-soft: #f0fdfa;
  --accent-soft: #eff6ff;
  --shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --content-max-width: 1280px;
  --floating-nav-offset: 18px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}

#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
}

h1, h2, h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
  letter-spacing: 0;
}

p {
  margin: 0;
}

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

.container {
  width: min(var(--content-max-width), 92%);
  margin: 0 auto;
}

.bg-blur {
  position: fixed;
  width: 380px;
  height: 380px;
  filter: blur(80px);
  border-radius: 50%;
  z-index: -2;
  opacity: 0.28;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.bg-blur-a {
  background: #60a5fa;
  top: -120px;
  right: -100px;
}

.bg-blur-b {
  background: #2dd4bf;
  bottom: -120px;
  left: -100px;
}

.site-header {
  position: sticky;
  top: var(--floating-nav-offset);
  background: transparent;
  z-index: 20;
  transform: translateY(0);
  transition: transform 240ms ease;
}

.site-header.header-hidden {
  transform: translateY(0);
}

.nav-container {
  width: min(var(--content-max-width), 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0.8rem 0;
  position: relative;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: min-height 220ms ease, gap 220ms ease, padding 220ms ease, background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1;
  transition: transform 220ms ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.brand-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  transition: height 220ms ease, transform 220ms ease;
}

.brand::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -32%;
  width: 34%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.18) 35%, rgba(255, 255, 255, 0.82) 50%, rgba(255, 255, 255, 0.18) 65%, transparent 100%);
  transform: translateX(-180%) skewX(-22deg);
  opacity: 0;
  pointer-events: none;
}

.brand.is-logo-animating {
  animation: brand-logo-bounce 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand.is-logo-animating .brand-logo {
  animation: brand-logo-pulse 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand.is-logo-animating::after {
  opacity: 1;
  animation: brand-logo-shine 620ms ease-out;
}

@keyframes brand-logo-bounce {
  0% {
    transform: scale(1);
  }
  28% {
    transform: scale(0.92);
  }
  58% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes brand-logo-pulse {
  0% {
    transform: translateY(0) rotate(0deg);
    filter: drop-shadow(0 0 0 rgba(14, 165, 233, 0));
  }
  35% {
    transform: translateY(1px) rotate(-1.2deg);
    filter: drop-shadow(0 8px 14px rgba(14, 165, 233, 0.18));
  }
  62% {
    transform: translateY(-2px) rotate(1.2deg);
    filter: drop-shadow(0 12px 18px rgba(59, 130, 246, 0.24));
  }
  100% {
    transform: translateY(0) rotate(0deg);
    filter: drop-shadow(0 0 0 rgba(14, 165, 233, 0));
  }
}

@keyframes brand-logo-shine {
  0% {
    transform: translateX(-180%) skewX(-22deg);
  }
  100% {
    transform: translateX(420%) skewX(-22deg);
  }
}

.desktop-nav {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 2rem;
  color: #334155;
  font-weight: 600;
  transition: gap 220ms ease;
}

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

.nav-cta {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  transition: gap 220ms ease;
}

.site-header.scrolled {
  top: 10px;
  background: transparent;
}

.site-header.scrolled .nav-wrap {
  min-height: 58px;
  gap: 0.8rem;
  padding: 0.62rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.site-header.scrolled .brand {
  transform: translateY(-0.5px);
}

.site-header.scrolled .brand-logo {
  height: 40px;
}

.site-header.scrolled .desktop-nav {
  gap: 1.6rem;
}

.site-header.scrolled .nav-cta {
  gap: 0.5rem;
}

.site-header.scrolled .lang-switch {
  font-size: 0.74rem;
  padding: 0.12rem;
}

.site-header.scrolled .login-pill-btn {
  padding: 0.4rem 0.82rem;
  font-size: 0.84rem;
}

.link-btn {
  color: #334155;
  font-weight: 700;
  padding: 0.5rem 0.7rem;
}

.solid-btn, .ghost-btn {
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
}

.solid-btn {
  color: #fff;
  background: linear-gradient(120deg, var(--brand), #0d9488);
  box-shadow: 0 10px 26px rgba(15, 118, 110, 0.24);
}

.solid-btn:hover {
  transform: translateY(-1px);
}

.login-pill-btn {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border-color: #dbe3f0;
  background: #ffffff;
  color: #2563eb;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.12);
}

.login-pill-btn:hover {
  transform: none;
  background: #f8fbff;
}

.hero-cta-blue {
  background: linear-gradient(120deg, #2563eb, #1d4ed8);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.28);
}

.ghost-btn {
  color: #0f172a;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.ghost-btn:hover {
  border-color: #cdd5df;
}

.pricing .price-card > a {
  min-width: 140px;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #d9e6f5;
  background: #ffffff;
  color: #0f172a;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.pricing .price-card > a:hover,
.pricing .price-card > a:focus-visible {
  color: #ffffff;
  border-color: #2563eb;
  background: linear-gradient(120deg, #2563eb, #1d4ed8);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.28);
  transform: translateY(-1px);
}

.large {
  padding: 0.9rem 1.35rem;
  font-size: 0.98rem;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  font-size: 1.1rem;
}

.lang-switch {
  --ls-bg: rgba(255, 255, 255, 0.3);
  --ls-border: rgba(203, 213, 225, 0.5);
  --ls-glow: rgba(0, 0, 0, 0);
  --ls-text: #334155;
  --ls-text-strong: #0f172a;
  --ls-sep: #94a3b8;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.14rem;
  padding: 0.14rem;
  border-radius: 999px;
  border: 1px solid var(--ls-border);
  background: var(--ls-bg);
  color: var(--ls-text);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

#langToggleBtn {
  margin-left: -0.7rem;
}

.lang-switch::before {
  content: none;
}

.lang-switch:hover {
  border-color: rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.lang-switch:active {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.lang-switch:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ls-glow), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.lang-switch .lang-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.72rem;
  padding: 0.2rem 0.48rem;
  border-radius: 999px;
  color: var(--ls-text-strong);
  background: transparent;
  transition: background-color 180ms ease, color 180ms ease, transform 240ms ease, opacity 240ms ease; }
  transform: translateY(0) scale(1);
  opacity: 1; }
.lang-switch.is-switching .lang-chip {
  opacity: 0.6;
  transform: translateY(-1px) scale(0.96);
}
}

.lang-switch:hover .lang-chip {
  background: rgba(255, 255, 255, 0.45);
}

.lang-switch .lang-sep {
  color: var(--ls-sep);
  font-weight: 700;
  transform: translateY(-1px);
}

.lang-switch[data-lang="zh"] .lang-chip[data-lang="zh"],
.lang-switch[data-lang="es"] .lang-chip[data-lang="es"] {
  background: #0b1a33;
  color: #ffffff;
}

.lang-switch[data-lang="zh"] .lang-chip[data-lang="es"],
.lang-switch[data-lang="es"] .lang-chip[data-lang="zh"] {
  color: #1e3a5f;
  background: transparent;
}

.lang-switch.mobile {
  width: 100%;
  justify-content: center;
  padding: 0.44rem 0.64rem;
  font-size: 0.76rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 4% 1rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 246, 0.95);
}

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

.hero {
  padding: calc(5rem + 5.5rem) 0 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.18;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  white-space: pre-line;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 62ch;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.trust-row {
  margin-top: 1rem;
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-card {
  position: relative;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.55rem;
  box-shadow: var(--shadow);
}

.hero-panel-image {
  width: 100%;
  height: auto;
  min-height: 340px;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.positive {
  background: #dcfce7;
  color: #15803d;
}

.panel h3 {
  margin-top: 0.4rem;
  font-size: 2rem;
}

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

.bars {
  margin-top: 1rem;
  height: 130px;
  display: flex;
  gap: 0.45rem;
  align-items: flex-end;
}

.bars span {
  flex: 1;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #22c55e, #15803d);
}

.floating-card {
  position: absolute;
  right: -16px;
  bottom: -20px;
  background: var(--accent-soft);
  border: 1px solid #fde9c8;
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.3rem;
}

.section {
  padding: 4.4rem 0;
}

.brand-marquee {
  padding-top: 1rem;
  padding-bottom: 1.2rem;
}

.brand-marquee-title {
  text-align: center;
  font-weight: 800;
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  line-height: 1.2;
  margin-bottom: 1.55rem;
  color: #050505;
}

.brand-marquee-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  isolation: isolate;
}

.brand-marquee-viewport::before,
.brand-marquee-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(56px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}

.brand-marquee-viewport::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.92) 38%, rgba(255, 255, 255, 0) 100%);
}

.brand-marquee-viewport::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0.92) 38%, rgba(255, 255, 255, 0) 100%);
}

.brand-marquee-track {
  --logo-gap: 0.45rem;
  --card-width: 240px;
  display: flex;
  gap: var(--logo-gap);
  width: max-content;
  animation: brand-marquee-scroll 26.2s linear infinite;
}

.brand-logo-card {
  width: var(--card-width);
  height: 96px;
  border-radius: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5b6472;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  user-select: none;
}

.brand-logo-card img {
  max-width: 76%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 1;
  filter: none;
}

.brand-logo-card-wide img {
  max-width: 92%;
}

@keyframes brand-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - (var(--logo-gap) / 2)));
  }
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.advisor-section {
  padding-top: 1.1rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(244, 249, 255, 0.88), rgba(240, 251, 248, 0.62)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 251, 255, 0.82));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.advisor-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(96, 165, 250, 0.12), transparent 36%),
    radial-gradient(circle at 82% 72%, rgba(45, 212, 191, 0.1), transparent 32%),
    radial-gradient(circle at 50% 0%, rgba(191, 219, 254, 0.42), rgba(255, 255, 255, 0) 26%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 42%, rgba(191, 219, 254, 0.12) 100%);
  pointer-events: none;
}

.advisor-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(148, 163, 184, 0.12), transparent 42%);
  pointer-events: none;
}

.advisor-section > .container {
  position: relative;
  z-index: 1;
}

.advisor-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 320px;
  gap: 1.6rem;
  align-items: center;
  padding: 1.9rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.14)),
    linear-gradient(120deg, rgba(191, 219, 254, 0.18), rgba(255, 255, 255, 0.08) 42%, rgba(125, 211, 252, 0.14));
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  position: relative;
  overflow: hidden;
  perspective: 1400px;
}

.advisor-card::before {
  content: "";
  position: absolute;
  inset: auto auto -28% -8%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.16), rgba(96, 165, 250, 0) 72%);
}

.advisor-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04) 38%, rgba(255, 255, 255, 0.12) 100%);
  opacity: 0.9;
  pointer-events: none;
}

.advisor-copy h2 {
  max-width: 20ch;
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
}

.advisor-lead {
  max-width: 34ch;
  font-size: 1.02rem;
  color: #5b6472;
}

.advisor-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.advisor-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d9e6f5;
  color: #1e3a5f;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  transform: translateY(0);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.advisor-points span:hover,
.advisor-points span:focus-visible {
  transform: translateY(-6px);
  border-color: #2563eb;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.24);
}

.advisor-profile {
  padding: 1.35rem;
  border-radius: 24px;
  --advisor-tilt-x: 0deg;
  --advisor-tilt-y: 0deg;
  --advisor-lift: 0px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.88)),
    linear-gradient(135deg, rgba(219, 234, 254, 0.3), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(214, 226, 240, 0.92);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  backdrop-filter: blur(8px) saturate(118%);
  -webkit-backdrop-filter: blur(8px) saturate(118%);
  transform-style: preserve-3d;
  transform-origin: center;
  backface-visibility: hidden;
  transform: translateY(var(--advisor-lift)) rotateX(var(--advisor-tilt-x)) rotateY(var(--advisor-tilt-y));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.advisor-profile:hover {
  --advisor-lift: -4px;
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.12);
}

.advisor-profile > * {
  transform: translateZ(12px);
}

@media (prefers-reduced-motion: reduce) {
  .advisor-profile {
    transition: box-shadow 0.2s ease;
  }

  .advisor-profile:hover {
    --advisor-lift: 0px;
  }
}

@media (max-width: 960px) {
  :root {
    --floating-nav-offset: 16px;
  }

  .nav-container {
    width: min(var(--content-max-width), calc(100% - 24px));
  }

  .nav-wrap {
    padding: 0.72rem 1rem;
    border-radius: 24px;
  }

  .hero {
    padding-top: calc(4.5rem + 5.25rem);
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 14px;
  }

  .site-header.scrolled {
    top: 8px;
  }

  .nav-container {
    width: calc(100% - 20px);
  }

  .nav-wrap {
    min-height: 64px;
    padding: 0.7rem 0.9rem;
    border-radius: 22px;
  }

  .site-header.scrolled .nav-wrap {
    min-height: 60px;
    padding: 0.62rem 0.82rem;
  }

  .hero {
    padding-top: calc(4rem + 5rem);
  }
}

.advisor-badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.advisor-badge {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.advisor-badge-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #eaf2ff;
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.advisor-badge-tag:hover {
  background: #dbeafe;
  color: #1d4ed8;
  transform: translateY(-1px);
}

.advisor-badge-tag:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 3px;
}

.advisor-profile-body {
  display: grid;
  gap: 0.35rem;
}

.stats-card-image {
  padding: 0;
  overflow: hidden;
}

.stats-card-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.advisor-profile-body h3 {
  font-size: 1.7rem;
  line-height: 1.05;
}

.advisor-role {
  color: #334155;
  font-weight: 700;
}

.advisor-note {
  color: #5b6472;
  font-size: 0.95rem;
}

#producto .section-head {
  max-width: 100%;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.15;
}

#producto .section-head h2 {
  font-size: clamp(1.45rem, 2.35vw, 2.1rem);
  white-space: nowrap;
}

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

.feature {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.feature h3 {
  position: relative;
  margin-bottom: 0.2rem;
  padding-bottom: 0.7rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.22rem, 1.08rem + 0.32vw, 1.42rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: #14213d;
  text-transform: none;
}

.feature h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.18);
}

.feature-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 14px;
  border: 1px solid #dbe3f0;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}

.feature-image-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 18px;
  cursor: zoom-in;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-image-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.12);
}

.feature-image-trigger:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 4px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.image-lightbox-dialog {
  position: relative;
  width: min(860px, 100%);
  max-height: min(78vh, 760px);
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.94));
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
  transform: translateY(18px) scale(0.96);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.image-lightbox.is-open .image-lightbox-dialog {
  transform: translateY(0) scale(1);
}

.image-lightbox-frame {
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff, #edf4ff);
}

.image-lightbox-img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: calc(78vh - 36px);
  object-fit: contain;
}

.image-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.22);
  transition: transform 180ms ease, background-color 180ms ease;
}

.image-lightbox-close:hover {
  transform: scale(1.05);
  background: rgba(15, 23, 42, 0.92);
}

.image-lightbox-close:focus-visible {
  outline: 3px solid rgba(191, 219, 254, 0.9);
  outline-offset: 3px;
}

.feature p {
  color: var(--muted);
}

#einvoice-region {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(248, 251, 255, 0.5), rgba(247, 253, 251, 0.22));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#einvoice-region::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 30%, rgba(96, 165, 250, 0.07), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(45, 212, 191, 0.06), transparent 30%);
  pointer-events: none;
}

#einvoice-region > .container {
  position: relative;
  z-index: 1;
}

.einvoice-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(165deg, #ffffff, #f8fbff);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  padding: 1.15rem;
  min-height: 236px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "kpi kpi"
    "eu latam";
  gap: 0.9rem;
}

.einvoice-kpi {
  grid-area: kpi;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 0;
}

.einvoice-subtitle {
  display: inline-block;
  margin-left: 0.45rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: #334155;
}

.einvoice-group {
  border: 1px solid #e5edf8;
  border-radius: 14px;
  padding: 0.7rem 0.75rem;
  background: rgba(255, 255, 255, 0.95);
}

.einvoice-region-title {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.38rem;
  color: #0f172a;
  letter-spacing: 0.01em;
}

.einvoice-region-list {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.35;
}

.einvoice-group:nth-of-type(1) {
  grid-area: eu;
}

.einvoice-group:nth-of-type(2) {
  grid-area: latam;
}

.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.7));
  border-bottom: none;
}

#soluciones {
  padding-bottom: 2.15rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
}

.check-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.check-list li::before {
  content: "✓";
  color: var(--brand);
}
  margin-right: 0.45rem;
  font-weight: 800;
}

.stats-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}

.stats-card h3 {
  font-size: 1.55rem;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease, border-color 240ms ease;
}

.price-card-basic {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.price-card-premium {
  background: linear-gradient(180deg, #f2fffb 0%, #e3f9f4 100%);
}

.price-card-enterprise {
  background: linear-gradient(180deg, #fffaf2 0%, #fff1dc 100%);
}

.price-card:hover,
.price-card:focus-within {
  transform: translateY(-8px);
  border-color: #2563eb;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.16);
}

.verifactu-section {
  background: transparent;
}

.verifactu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.02fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  background: transparent;
}

.verifactu-eyebrow {
  color: #2457ff;
  margin-bottom: 1rem;
}
  background:
    radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.28), transparent 34%),
    radial-gradient(circle at 78% 82%, rgba(203, 213, 225, 0.22), transparent 24%);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.verifactu-lead {
  margin-top: 1.35rem;
  max-width: 34rem;
  color: #52607a;
}

.verifactu-points {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.verifactu-points li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 1rem;
  align-items: start;
}

.verifactu-points li::before {
  content: none;
}

.verifactu-star {
  color: #2563eb;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-top: 0.15rem;
}

.verifactu-points h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.15;
  color: #0f172a;
}

.verifactu-points p {
  margin: 0.45rem 0 0;
  color: #52607a;
  line-height: 1.65;
}

.verifactu-actions {
  margin-top: 2.2rem;
}

.verifactu-btn {
  min-width: 13.5rem;
  justify-content: center;
  background: #0f172a;
  box-shadow: none;
}

.verifactu-btn:hover,
.verifactu-btn:focus-visible {
  background: #111f3d;
}

.verifactu-visual {
  position: relative;
  aspect-ratio: 535 / 432;
  border-radius: 1.8rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12)),
    radial-gradient(120% 42% at 50% 8%, rgba(255, 255, 255, 0.34), transparent 58%),
    radial-gradient(120% 38% at 50% 92%, rgba(160, 172, 186, 0.18), transparent 54%),
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(215, 221, 229, 0.92) 0%, rgba(196, 204, 214, 0.88) 22%, rgba(184, 193, 204, 0.84) 50%, rgba(193, 202, 212, 0.88) 78%, rgba(210, 217, 225, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 60px rgba(15, 23, 42, 0.18),
    0 10px 24px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.verifactu-visual-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 40%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 14%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.04) 88%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
}

.verifactu-visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.verifactu-invoice-card {
  position: absolute;
  top: 4.6rem;
  left: 6.2rem;
  width: min(100%, 22.5rem);
  background: #f7f7f6;
  border-radius: 0.45rem;
  padding: 1.35rem 1.35rem 1.1rem;
  color: #1f2937;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
}

.verifactu-invoice-head,
.verifactu-summary,
.verifactu-table-head,
.verifactu-table-row,
.verifactu-totals p {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.verifactu-brand,
.verifactu-invoice-label {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}

.verifactu-invoice-side {
  text-align: right;
}

.verifactu-meta,
.verifactu-invoice-meta,
.verifactu-client-name,
.verifactu-section-label,
.verifactu-table-head,
.verifactu-table-row,
.verifactu-totals span,
.verifactu-totals strong {
  margin: 0;
  font-size: 0.42rem;
  line-height: 1.45;
}

.verifactu-divider {
  height: 1px;
  background: #d4d4d4;
  margin: 0.9rem 0 1rem;
}

.verifactu-client-block {
  margin-bottom: 1rem;
}

.verifactu-section-label,
.verifactu-table-head {
  color: #6b7280;
  letter-spacing: 0.08em;
}

.verifactu-client-name {
  font-weight: 600;
  color: #111827;
}

.verifactu-table-head {
  margin-bottom: 0.35rem;
}

.verifactu-table-head span:first-child,
.verifactu-table-row span:first-child {
  flex: 1;
}

.verifactu-table-row {
  padding: 0.28rem 0.35rem;
  border-radius: 0.18rem;
  background: #ececec;
  margin-bottom: 0.22rem;
}

.verifactu-table-row.alt-row {
  background: #e3e3e3;
}

.verifactu-summary {
  margin-top: 0.8rem;
  align-items: flex-end;
}

.verifactu-totals {
  min-width: 6rem;
}

.verifactu-totals p {
  margin: 0 0 0.15rem;
}

.verifactu-total strong {
  font-size: 0.48rem;
}

.verifactu-qr-card {
  position: absolute;
  right: 4.6rem;
  top: 12.8rem;
  width: 7.8rem;
  aspect-ratio: 1;
  background: #f4f4f3;
  border-radius: 0.35rem;
  padding: 0.7rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.verifactu-qr-grid {
  width: 100%;
  height: 100%;
  border-radius: 0.15rem;
  background:
    linear-gradient(90deg, transparent 8%, #111 8%, #111 16%, transparent 16%, transparent 24%, #111 24%, #111 32%, transparent 32%, transparent 40%, #111 40%, #111 48%, transparent 48%, transparent 56%, #111 56%, #111 64%, transparent 64%, transparent 72%, #111 72%, #111 80%, transparent 80%),
    linear-gradient(transparent 8%, #111 8%, #111 16%, transparent 16%, transparent 24%, #111 24%, #111 32%, transparent 32%, transparent 40%, #111 40%, #111 48%, transparent 48%, transparent 56%, #111 56%, #111 64%, transparent 64%, transparent 72%, #111 72%, #111 80%, transparent 80%),
    linear-gradient(45deg, #fff 0%, #fff 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
}

.verifactu-badge {
  position: absolute;
  left: 3rem;
  bottom: 2.7rem;
  width: 8.2rem;
  height: 8.2rem;
  border-radius: 50%;
  background: #0b2f7a;
  color: #dff8ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  font-weight: 700;
}

.verifactu-badge span,
.verifactu-badge strong {
  display: block;
  line-height: 1.05;
}

.verifactu-badge span {
  font-size: 1.05rem;
}

.verifactu-badge strong {
  font-size: 0.95rem;
}

.verifactu-badge-check {
  font-size: 2rem;
  color: #1de9ff;
  margin-bottom: 0.35rem;
}

@media (max-width: 980px) {
  .verifactu-layout {
    grid-template-columns: 1fr;
  }

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

  .verifactu-visual {
    aspect-ratio: 535 / 432;
  }

  .verifactu-invoice-card {
    left: 3rem;
  }

  .verifactu-qr-card {
    right: 2.5rem;
  }
}

@media (max-width: 640px) {
  .verifactu-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .verifactu-title {
    max-width: none;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .verifactu-points h3 {
    font-size: 1.2rem;
  }

  .verifactu-visual {
    aspect-ratio: 535 / 432;
    border-radius: 1.4rem;
  }

  .verifactu-invoice-card {
    top: 2.2rem;
    left: 1.2rem;
    width: calc(100% - 4.2rem);
    padding: 0.9rem;
  }

  .verifactu-meta,
  .verifactu-invoice-meta,
  .verifactu-client-name,
  .verifactu-section-label,
  .verifactu-table-head,
  .verifactu-table-row,
  .verifactu-totals span,
  .verifactu-totals strong {
    font-size: 0.34rem;
  }

  .verifactu-qr-card {
    top: 9.8rem;
    right: 1rem;
    width: 5.4rem;
    padding: 0.45rem;
  }

  .verifactu-badge {
    left: 1rem;
    bottom: 1rem;
    width: 5.8rem;
    height: 5.8rem;
    padding: 0.7rem;
  }

  .verifactu-badge span {
    font-size: 0.8rem;
  }

  .verifactu-badge strong {
    font-size: 0.7rem;
  }

  .verifactu-badge-check {
    font-size: 1.4rem;
  }
}

.premium-title-shine {
  background: linear-gradient(
    120deg,
    #0f172a 0%,
    #2563eb 14%,
    #38bdf8 28%,
    #22c55e 42%,
    #eab308 56%,
    #f97316 70%,
    #ec4899 84%,
    #8b5cf6 92%,
    #0f172a 100%
  );
  background-size: 260% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: premium-title-shine 5.6s linear infinite;
}

@keyframes premium-title-shine {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: -120% 50%;
  }
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 0.5rem;
  color: #334155;
}

.price-card > .solid-btn,
.price-card > .ghost-btn {
  margin-top: auto;
  align-self: flex-start;
}

.price-card:hover > a,
.price-card:focus-within > a {
  color: #ffffff;
  border-color: #2563eb;
  background: linear-gradient(120deg, #2563eb, #1d4ed8);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.28);
}

.price-card ul li::before {
  content: "• ";
  color: var(--brand);
}

.pricing-comparison-block {
  margin-top: 2rem;
}

.compare-toggle-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 28px 0 36px;
}

.pricing-comparison-top-slot {
  width: 100%;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 88px;
  z-index: 12;
  padding: 0.35rem 0 0.75rem;
  pointer-events: none;
}

.pricing-comparison-top-slot:empty {
  display: none;
}

.pricing-comparison-top-slot .compare-gradient-btn {
  pointer-events: auto;
}

.compare-gradient-btn {
  width: auto;
  min-width: min(100%, 320px);
  height: 56px;
  padding: 0 34px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
  transition: all 0.25s ease;
}

.compare-gradient-btn:hover,
.compare-gradient-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.28);
}

.compare-gradient-btn:active {
  transform: translateY(0);
}

.pricing-comparison-panel {
  margin-top: 1.2rem;
  padding: 2rem 1rem 1rem;
  border-radius: 28px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.pricing-comparison-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-comparison-head h3 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.45rem;
}

.pricing-comparison-head p {
  color: #6b7280;
}

.pricing-comparison-table-wrap {
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.pricing-comparison-table {
  width: 100%;
  min-width: 640px;
  table-layout: fixed;
  border-collapse: collapse;
  color: #334155;
}

.pricing-comparison-table th:first-child,
.pricing-comparison-table td:first-child {
  width: 50%;
}

.pricing-comparison-table th:nth-child(2),
.pricing-comparison-table td:nth-child(2),
.pricing-comparison-table th:nth-child(3),
.pricing-comparison-table td:nth-child(3) {
  width: 25%;
}

.pricing-comparison-table th,
.pricing-comparison-table td {
  padding: 0.95rem 0.85rem;
  border-bottom: 1px solid #edf2f7;
  font-size: 0.95rem;
}

.pricing-comparison-table thead th {
  background: #ffffff;
  text-align: center;
  vertical-align: bottom;
  font-weight: 800;
  color: #0f172a;
}

.pricing-comparison-table thead th:first-child,
.pricing-comparison-table tbody td:first-child {
  text-align: left;
  min-width: 0;
}

.plan-name,
.plan-price {
  display: block;
}

.plan-name {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.plan-price {
  font-size: 0.82rem;
  color: #475569;
}

.plan-price s {
  color: #b0b8c5;
  margin-right: 0.25rem;
}

.plan-plus {
  color: #94a3b8;
}

.plan-basic {
  color: #3b82f6;
}

.plan-standard {
  color: #8b5cf6;
}

.plan-advanced {
  color: #10b981;
}

.plan-premium {
  color: #f59e0b;
}

.comparison-group-row td {
  background: #f8fafc;
  font-weight: 800;
  color: #0f172a;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.pricing-comparison-table tbody td:not(:first-child) {
  text-align: center;
  font-weight: 700;
}
.pricing-comparison-table tbody td.comparison-check {
  color: var(--brand);
}

.pricing-comparison-table tbody td.comparison-cross {
  color: #94a3b8;
  font-size: 1.15rem;
}

@media (max-width: 768px) {
  .compare-toggle-wrapper {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    overflow-x: hidden;
  }

  .pricing-comparison-panel {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0.55rem 0.5rem 0.3rem;
    border-radius: 14px;
    overflow-x: hidden;
  }

  .pricing-comparison-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 12px;
    padding-left: 0;
  }

  .pricing-comparison-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }

  .pricing-comparison-table th,
  .pricing-comparison-table td {
    padding: 0.32rem 0.28rem;
    font-size: 0.64rem;
    line-height: 1.1;
    white-space: normal;
    word-break: break-word;
  }

  .pricing-comparison-table tbody tr:not(.comparison-group-row) td {
    font-weight: 400;
  }

  .pricing-comparison-table tbody tr:not(.comparison-group-row) td.comparison-check,
  .pricing-comparison-table tbody tr:not(.comparison-group-row) td.comparison-cross {
    font-weight: 400;
  }

  .comparison-group-row td {
    font-weight: 800;
  }

  .pricing-comparison-table th:first-child,
  .pricing-comparison-table td:first-child {
    width: calc(100% - 180px);
    min-width: 0;
    padding-left: 0.95rem;
    padding-right: 0.5rem;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    text-align: left;
    box-sizing: border-box;
  }

  .pricing-comparison-table th:nth-child(2),
  .pricing-comparison-table td:nth-child(2),
  .pricing-comparison-table th:nth-child(3),
  .pricing-comparison-table td:nth-child(3) {
    width: 90px;
    min-width: 90px;
    max-width: 90px;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
  }

  .pricing-comparison-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .pricing-comparison-table th:first-child,
  .pricing-comparison-table td:first-child {
    position: static;
    box-shadow: none;
  }

  .pricing-comparison-table thead th:first-child {
    z-index: 2;
  }

  .pricing-comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 700;
    background: #f8fafc;
    color: #0f172a;
  }

  .comparison-group-row td {
    background: #eef2f7;
    color: #0f172a;
    font-size: 0.68rem;
    padding-top: 0.24rem;
    padding-bottom: 0.24rem;
  }

  .plan-name {
    font-size: 0.66rem;
    margin-bottom: 0.04rem;
  }

  .plan-price {
    font-size: 0.58rem;
  }

  .compare-toggle-wrapper {
    margin: 12px 0 12px;
  }

  .compare-gradient-btn {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 14px;
    font-size: 0.8rem;
  }

  .pricing-comparison-head h3 {
    font-size: 0.98rem;
    margin-bottom: 0.08rem;
  }

  .pricing-comparison-head {
    margin-bottom: 0.35rem;
  }

  .pricing-comparison-head p {
    font-size: 0.62rem;
    line-height: 1.05;
  }
}

.subscription-band {
  padding-top: 1.2rem;
  position: relative;
}

.subscription-band::before {
  content: "";
  position: absolute;
  inset: 1.5rem 0 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(56, 189, 248, 0.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(244, 114, 182, 0.16), transparent 24%),
    radial-gradient(circle at 68% 78%, rgba(45, 212, 191, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08));
  border-radius: 36px;
  pointer-events: none;
}

.subscription-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.2rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 2rem;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  overflow: hidden;
}

.subscription-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.subscription-copy {
  max-width: 62ch;
}

.subscription-points {
  margin-top: 1.1rem;
}

.subscription-actions {
  margin-top: 1.35rem;
}

.subscription-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  padding: 1.2rem;
  overflow: visible;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.subscription-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.subscription-label {
  font-weight: 800;
  color: #0f172a;
}

.subscription-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.82rem;
  font-weight: 800;
}

.subscription-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.subscription-metrics h3 {
  margin-top: 0.25rem;
  font-size: 1.8rem;
}

.subscription-stack {
  position: relative;
  height: 260px;
  margin-top: 0;
  perspective: 1200px;
}

.subscription-stack-card {
  --card-rotate: 0deg;
  --card-shift-x: 0px;
  --card-shift-y: 0px;
  --card-scale: 1;
  --card-z: 1;
  position: absolute;
  left: 50%;
  top: 118px;
  width: 86px;
  height: 114px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transform: translateX(-50%) translateX(var(--card-shift-x)) translateY(var(--card-shift-y)) rotate(var(--card-rotate)) scale(var(--card-scale));
  transform-origin: 50% calc(100% + 56px);
  transition: transform 320ms ease, filter 320ms ease, opacity 320ms ease;
  z-index: var(--card-z);
  filter: saturate(0.92);
}

.subscription-stack-card:focus-visible {
  outline: none;
}

.subscription-stack-card:nth-child(1) {
  --card-rotate: -24deg;
  --card-shift-x: -62px;
  --card-shift-y: 22px;
  --card-scale: 0.94;
  --card-z: 1;
}

.subscription-stack-card:nth-child(2) {
  --card-rotate: -12deg;
  --card-shift-x: -31px;
  --card-shift-y: 9px;
  --card-scale: 0.97;
  --card-z: 2;
}

.subscription-stack-card:nth-child(3) {
  --card-rotate: 0deg;
  --card-shift-x: 0px;
  --card-shift-y: 0px;
  --card-scale: 1;
  --card-z: 5;
}

.subscription-stack-card:nth-child(4) {
  --card-rotate: 12deg;
  --card-shift-x: 31px;
  --card-shift-y: 9px;
  --card-scale: 0.97;
  --card-z: 3;
}

.subscription-stack-card:nth-child(5) {
  --card-rotate: 24deg;
  --card-shift-x: 62px;
  --card-shift-y: 22px;
  --card-scale: 0.94;
  --card-z: 1;
}

.subscription-stack.is-expanded .subscription-stack-card,
.subscription-stack-card:hover,
.subscription-stack-card:focus-visible,
.subscription-stack-card.is-active {
  z-index: 6;
  filter: saturate(1);
}

.subscription-stack.is-expanded .subscription-stack-card:nth-child(1),
.subscription-stack-card:nth-child(1):hover,
.subscription-stack-card:nth-child(1):focus-visible,
.subscription-stack-card:nth-child(1).is-active {
  --card-rotate: -58deg;
  --card-shift-x: -118px;
  --card-shift-y: -8px;
  --card-scale: 1;
}

.subscription-stack.is-expanded .subscription-stack-card:nth-child(2),
.subscription-stack-card:nth-child(2):hover,
.subscription-stack-card:nth-child(2):focus-visible,
.subscription-stack-card:nth-child(2).is-active {
  --card-rotate: -28deg;
  --card-shift-x: -62px;
  --card-shift-y: -42px;
  --card-scale: 1;
}

.subscription-stack.is-expanded .subscription-stack-card:nth-child(3),
.subscription-stack-card:nth-child(3):hover,
.subscription-stack-card:nth-child(3):focus-visible,
.subscription-stack-card:nth-child(3).is-active {
  --card-rotate: 0deg;
  --card-shift-x: 0px;
  --card-shift-y: -56px;
  --card-scale: 1;
}

.subscription-stack.is-expanded .subscription-stack-card:nth-child(4),
.subscription-stack-card:nth-child(4):hover,
.subscription-stack-card:nth-child(4):focus-visible,
.subscription-stack-card:nth-child(4).is-active {
  --card-rotate: 28deg;
  --card-shift-x: 62px;
  --card-shift-y: -42px;
  --card-scale: 1;
}

.subscription-stack.is-expanded .subscription-stack-card:nth-child(5),
.subscription-stack-card:nth-child(5):hover,
.subscription-stack-card:nth-child(5):focus-visible,
.subscription-stack-card:nth-child(5).is-active {
  --card-rotate: 58deg;
  --card-shift-x: 118px;
  --card-shift-y: -8px;
  --card-scale: 1;
}

.subscription-stack-surface {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.plan-surface-silver {
  background: linear-gradient(160deg, #d8dee9, #8ea0b8);
}

.plan-surface-blue {
  background: linear-gradient(160deg, #7dd3fc, #2563eb);
}

.plan-surface-violet {
  background: linear-gradient(160deg, #c084fc, #7c3aed);
}

.plan-surface-green {
  background: linear-gradient(160deg, #34d399, #0f766e);
}

.plan-surface-orange {
  background: linear-gradient(160deg, #fbbf24, #f97316);
}

.subscription-stack-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.65rem 0.52rem;
  color: #ffffff;
}

.subscription-stack-content strong {
  display: block;
  font-size: 0.7rem;
  margin-bottom: 0;
}

.price {
  font-size: 2rem;
  font-family: "Space Grotesk", sans-serif;
  margin-top: 0.35rem;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.highlighted {
  border-color: #14b8a6;
  box-shadow: 0 18px 40px rgba(20, 184, 166, 0.14);
}

.badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0f766e;
  background: #ccfbf1;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
}

.contact-section {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 1.08fr) minmax(420px, 1.42fr);
  gap: 2.8rem;
  padding: 1.35rem;
  border-radius: 32px;
  background: linear-gradient(135deg, #c9ecfb 0%, #e7e8dc 100%);
  box-shadow: 0 20px 48px rgba(148, 163, 184, 0.12);
}

.contact-shell::before,
.contact-shell::after {
  content: none;
}

.contact-copy,
.contact-panel {
  position: relative;
  z-index: 1;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  padding: 2.8rem 1.8rem 2.8rem 2.2rem;
}

.contact-copy .eyebrow {
  color: #2458ff;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
}

.contact-copy h2 {
  font-size: clamp(2.8rem, 4.2vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #0b1b53;
}

.contact-copy .lead {
  max-width: 25rem;
  color: #6b7a99;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-copy-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

.contact-copy-image {
  width: min(100%, 160px);
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 32px rgba(148, 163, 184, 0.16);
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem 1.35rem 1.35rem 0;
  border-radius: 28px;
  background: transparent;
}

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

.contact-map-card {
  display: block;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28)),
    linear-gradient(135deg, rgba(214, 232, 255, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(148, 163, 184, 0.12);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
}

.contact-map-embed {
  min-height: 180px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.72);
}

.contact-map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  border: 0;
}

.contact-tile {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  padding: 1.15rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28)),
    linear-gradient(135deg, rgba(214, 232, 255, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -10px 18px rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(148, 163, 184, 0.12);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.contact-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.52), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 48%);
  opacity: 0.9;
  pointer-events: none;
}

.contact-tile::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 12px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.contact-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -10px 18px rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(148, 163, 184, 0.15);
}

.contact-label {
  position: relative;
  z-index: 1;
  margin-bottom: 0.65rem;
  color: #2458ff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.contact-value {
  position: relative;
  z-index: 1;
  color: #10245c;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-value-multiline {
  max-width: 12rem;
}

.contact-value a {
  color: inherit;
  text-decoration: none;
}

.contact-tile-qr {
  align-items: center;
  justify-content: center;
}

.contact-tile-qr .contact-label {
  width: 100%;
  text-align: left;
}

.contact-tile-qr img {
  position: relative;
  z-index: 1;
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 18px rgba(148, 163, 184, 0.12);
}

@media (max-width: 980px) {
  .contact-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
  }

  .contact-copy {
    padding: 2.2rem 1.4rem 0.8rem;
  }

  .contact-panel {
    padding: 0 1.4rem 1.5rem;
  }

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

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

@media (max-width: 768px) {
  .contact-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .contact-shell {
    padding: 0.9rem;
    border-radius: 24px;
  }

  .contact-copy h2 {
    font-size: 2.8rem;
  }

  .contact-copy .lead {
    font-size: 1.05rem;
    max-width: none;
  }

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

  .contact-map-card {
    padding: 0.9rem;
  }

  .contact-tile {
    min-height: auto;
  }
}

.cta-band {
  padding-top: 2rem;
}

#cases {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 7rem;
}

#cases::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: -0.2rem;
  top: 0.35rem;
  border-radius: 30px;
  background: linear-gradient(90deg, rgba(182, 205, 212, 0.98) 0%, rgba(191, 210, 216, 0.98) 52%, rgba(207, 212, 202, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 18px 34px rgba(72, 96, 108, 0.16);
  z-index: 0;
}

#cases .container {
  position: relative;
  z-index: 1;
}

.cta-inner {
  border: 1px solid #d8ece8;
  border-radius: 22px;
  background: linear-gradient(120deg, #ecfeff, #fffbeb);
  padding: 1.8rem;
  text-align: center;
}

.cta-inner h2 {
  margin-bottom: 0.8rem;
}

.cases-carousel {
  text-align: left;
}

.cases-head {
  text-align: center;
  margin-bottom: 0.9rem;
}

.cases-head .eyebrow {
  display: inline-block;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.cases-head h2 {
  margin-bottom: 0;
}

.cases-stage {
  position: relative;
  border-radius: 16px;
  border: 1px solid #d8e6ff;
  background: #f8fbff;
  padding: 1rem 2.75rem;
}

.cases-track-wrap {
  overflow: hidden;
}

.cases-track {
  display: flex;
  gap: 0.9rem;
  transition: transform 420ms ease;
}

.cases-card {
  min-width: calc((100% - 1.8rem) / 3);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d5e3ff;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.08);
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.42);
  color: rgba(15, 23, 42, 0.62);
  box-shadow: 0 8px 18px rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  font-size: 1.15rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(255, 255, 255, 0.9);
  color: rgba(15, 23, 42, 0.82);
  box-shadow: 0 10px 22px rgba(148, 163, 184, 0.22);
}

.carousel-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(191, 219, 254, 0.7), 0 10px 22px rgba(148, 163, 184, 0.22);
}

.carousel-btn.prev {
  left: 8px;
}

.carousel-btn.next {
  right: 8px;
}

.carousel-dots {
  display: none;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.active {
  background: #2563eb;
}

.site-footer {
  margin-top: 2.2rem;
  background: linear-gradient(180deg, #3a3a3a 0%, #171717 45%, #000000 100%);
  color: #d6e4ff;
  border-top: 1px solid rgba(125, 153, 204, 0.16);
}

.footer-main {
  padding: 3rem 0 2.3rem;
  display: grid;
  grid-template-columns: minmax(200px, 270px) 1fr;
  gap: 2.4rem;
}

.footer-logo {
  display: inline-flex;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: #f8fbff;
  margin-bottom: 0.95rem;
}

.footer-logo-img {
  display: block;
  width: auto;
  height: 56px;
  max-width: 240px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
}

.footer-social {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.95rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(151, 174, 221, 0.4);
  color: #d7e8ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a[aria-label="Facebook"] svg,
.footer-social a[aria-label="YouTube"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-social a[aria-label="小红书"] svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a[aria-label="小红书"] svg text {
  fill: currentColor;
  stroke: none;
  font-size: 8.2px;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-downloads {
  display: flex;
  gap: 0.62rem;
}

.store-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.store-btn {
  border: 1px solid rgba(151, 174, 221, 0.38);
  border-radius: 10px;
  padding: 0.4rem 0.72rem;
  min-height: 34px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #dbe8ff;
  background: rgba(10, 19, 36, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.store-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: currentColor;
  stroke: none;
}

.store-icon.multicolor {
  fill: none;
}

.store-btn span {
  line-height: 1;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 1.25rem;
}

.footer-links-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links-grid h4 {
  margin: 0 0 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  color: #e9f1ff;
}

.footer-links-grid a,
.footer-links-grid span {
  display: block;
  color: #b5c8e9;
  margin-bottom: 0.52rem;
  font-size: 0.94rem;
}

.footer-links-grid .footer-text-item {
  display: block;
  color: #b5c8e9;
  margin-bottom: 0.52rem;
  font-size: 0.94rem;
}

.footer-links-grid a:hover,
.footer-bottom-links a:hover,
.footer-social a:hover,
.store-btn:hover {
  color: #ffffff;
  border-color: rgba(175, 196, 235, 0.8);
}

.footer-social a[aria-label="小红书"]:hover {
  color: #ff2442;
  border-color: rgba(255, 36, 66, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(125, 153, 204, 0.2);
}

.footer-bottom-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #a9bfdf;
}

.footer-bottom-links {
  display: flex;
  gap: 1.1rem;
}

.footer-bottom-links a {
  color: #b9cdec;
  font-weight: 600;
}

.cookie-preferences-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  z-index: 130;
}

.cookie-preferences-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-preferences-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.28), rgba(15, 23, 42, 0.42));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cookie-preferences-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.24);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.24s ease;
}

.cookie-preferences-modal.is-open .cookie-preferences-dialog {
  transform: translateY(0) scale(1);
}

.cookie-preferences-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-preferences-header {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cookie-preferences-eyebrow {
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-preferences-header h3 {
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  color: #0f172a;
}

.cookie-preferences-intro {
  color: #475569;
  max-width: 58ch;
}

.cookie-preferences-groups {
  display: grid;
  gap: 1rem;
}

.cookie-group {
  padding: 1.15rem 1.2rem;
  border: 1px solid #dbe7f5;
  border-radius: 20px;
  background: #ffffff;
}

.cookie-group.is-required {
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
}

.cookie-group-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-group h4 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: #0f172a;
}

.cookie-group p {
  color: #64748b;
  max-width: 54ch;
}

.cookie-status-badge {
  flex-shrink: 0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.82rem;
  font-weight: 800;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch-track {
  position: relative;
  width: 56px;
  height: 32px;
  border-radius: 999px;
  background: #cbd5e1;
  transition: background 0.2s ease;
}

.cookie-switch-track::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s ease;
}

.cookie-switch input:checked + .cookie-switch-track {
  background: linear-gradient(120deg, #2563eb, #0d9488);
}

.cookie-switch input:checked + .cookie-switch-track::after {
  transform: translateX(24px);
}

.cookie-preferences-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cookie-action-btn {
  min-width: 150px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 980px) {

  #soluciones {
    padding-bottom: 1.8rem;
  }

  .advisor-card {
    grid-template-columns: 1fr;
    padding: 1.3rem;
  }

  .advisor-copy h2,
  .advisor-lead {
    max-width: none;
  }

  .advisor-profile {
    max-width: 420px;
  }
  .image-lightbox {
    padding: 14px;
  }

  .image-lightbox-dialog {
    width: 100%;
    padding: 12px;
    border-radius: 20px;
  }

  .image-lightbox-frame {
    border-radius: 14px;
  }

  .image-lightbox-img {
    max-height: calc(82vh - 24px);
  }

  .image-lightbox-close {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  .cookie-preferences-modal {
    padding: 1rem;
  }

  .cookie-preferences-dialog {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .cookie-group-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-switch,
  .cookie-status-badge {
    align-self: flex-end;
  }

  .cookie-preferences-actions {
    flex-direction: column;
  }

  .cookie-action-btn {
    width: 100%;
  }

  .desktop-nav, .nav-cta {
    display: none;
  }

  .menu-btn {
    display: inline-block;
  }

  .hero,
  .split,
  .subscription-layout,
  .grid-3,
  .pricing {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .brand-marquee {
    padding-top: 0.4rem;
    padding-bottom: 0.8rem;
  }

  .brand-marquee-title {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .brand-marquee-track {
    --card-width: 170px;
    --logo-gap: 0.75rem;
    animation-duration: 28s;
  }

  .brand-logo-card {
    height: 68px;
    font-size: 0.9rem;
  }

  .brand-logo-card img {
    max-width: 66%;
    max-height: 30px;
  }

  .region-marquee-viewport {
    padding-bottom: 0.25rem;
  }

  .region-marquee-track {
    --region-card-width: 178px;
    --region-gap: 0.65rem;
    padding-bottom: 0.2rem;
  }

  .region-card {
    min-height: 88px;
    border-radius: 14px;
  }

  .region-card h3 {
    font-size: 1rem;
  }

  .subscription-stack {
    display: none;
  }

  .subscription-stack-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 92px;
    transform: none;
  }

  .subscription-stack-card:nth-child(1),
  .subscription-stack-card:nth-child(2),
  .subscription-stack-card:nth-child(3),
  .subscription-stack-card:nth-child(4),
  .subscription-stack-card:nth-child(5),
  .subscription-stack.is-expanded .subscription-stack-card:nth-child(1),
  .subscription-stack.is-expanded .subscription-stack-card:nth-child(2),
  .subscription-stack.is-expanded .subscription-stack-card:nth-child(3),
  .subscription-stack.is-expanded .subscription-stack-card:nth-child(4),
  .subscription-stack.is-expanded .subscription-stack-card:nth-child(5) {
    --card-rotate: 0deg;
    --card-shift-x: 0px;
    --card-shift-y: 0px;
    --card-scale: 1;
  }

  .subscription-stack-content {
    align-items: flex-start;
    text-align: left;
    padding: 1rem;
  }

  .floating-card {
    display: none;
  }

  .mobile-nav .lang-switch {
    width: 100%;
    justify-content: center;
    padding: 0.62rem 0.9rem;
    font-size: 0.84rem;
  }

  .cases-image {
    height: 180px;
  }

  .cases-stage {
    padding: 0.75rem 2.45rem;
  }


  .cases-card {
    min-width: 100%;
  }

  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 2.4rem 0 2rem;
    gap: 1.6rem;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 1rem;
  }

  .footer-bottom-wrap {
    min-height: auto;
    padding: 1rem 0 1.2rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
