/* ========================================================================== 
   KUDEN HOME — EXECUTIVE OPERATING SYSTEM
   ========================================================================== */

:root {
  --v3-accent: #635bff;
  --v3-accent-rgb: 99, 91, 255;
  --v3-blue: #2678ff;
  --v3-cyan: #17bfe9;
  --v3-gold: #f2ad3d;
  --v3-bg: #f7f9fd;
  --v3-bg-soft: #eef2f8;
  --v3-surface: rgba(255, 255, 255, 0.96);
  --v3-surface-glass: rgba(255, 255, 255, 0.78);
  --v3-title: #101828;
  --v3-text: #475467;
  --v3-muted: #667085;
  --v3-line: rgba(52, 64, 84, 0.12);
  --v3-line-accent: rgba(99, 91, 255, 0.16);
  --v3-shadow: 0 28px 80px rgba(38, 45, 91, 0.13);
  --v3-shadow-soft: 0 16px 44px rgba(38, 45, 91, 0.09);
  --v3-max: 1240px;
  --v3-grid-line: rgba(99, 91, 255, 0.035);
  --v3-grid-pattern:
    linear-gradient(var(--v3-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--v3-grid-line) 1px, transparent 1px);
  --v3-grid-size: 52px 52px;
  --layout-max: var(--v3-max);
  --product-header-accent: var(--v3-accent);
  --product-header-accent-rgb: var(--v3-accent-rgb);
  --bg-primary: var(--v3-bg);
  --bg-secondary: var(--v3-bg-soft);
  --surface-solid: #ffffff;
  --text-title: var(--v3-title);
  --text-secondary: var(--v3-text);
  --text-tertiary: var(--v3-muted);
  --glass-border: var(--v3-line);
  --line-strong: rgba(52, 64, 84, 0.18);
}

html[data-theme="dark"] {
  --v3-bg: #0d1020;
  --v3-bg-soft: #14182a;
  --v3-surface: rgba(28, 32, 53, 0.96);
  --v3-surface-glass: rgba(22, 26, 45, 0.82);
  --v3-title: #f7f8fc;
  --v3-text: #c7cedd;
  --v3-muted: #9da7bb;
  --v3-line: rgba(255, 255, 255, 0.1);
  --v3-line-accent: rgba(156, 150, 255, 0.2);
  --v3-shadow: 0 30px 86px rgba(0, 0, 0, 0.38);
  --v3-shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.27);
  --v3-grid-line: rgba(156, 150, 255, 0.05);
  --surface-solid: #1c2035;
  --line-strong: rgba(255, 255, 255, 0.16);
}

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

html {
  scroll-behavior: smooth;
  background: var(--v3-bg);
}

body.page-home-v3 {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--v3-bg);
  background-image: var(--v3-grid-pattern);
  background-size: var(--v3-grid-size);
  color: var(--v3-text);
  font-family: var(--font-body, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

.page-home-v3 :where(h1, h2, h3, h4, p, ul, ol, dl, dd, blockquote, figure) {
  margin: 0;
}

.page-home-v3 :where(ul, ol) {
  padding: 0;
  list-style: none;
}

.page-home-v3 a {
  color: inherit;
  text-decoration: none;
}

.page-home-v3 button,
.page-home-v3 input,
.page-home-v3 select {
  font: inherit;
}

.page-home-v3 button {
  cursor: pointer;
}

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

.v3-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 4000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--v3-accent);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

/* Header foundations used by the shared premium header layer. */
.hub-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hub-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.hub-logo,
.hub-nav-links,
.hub-nav-actions,
.hub-nav-link,
.hub-theme-btn,
.hub-btn-demo,
.hub-hamburger {
  display: flex;
  align-items: center;
}

.hub-logo {
  color: var(--v3-title);
  font-weight: 800;
}

.hub-nav-links,
.hub-nav-actions {
  gap: 8px;
}

.hub-nav-link,
.hub-theme-btn,
.hub-btn-demo,
.hub-hamburger {
  border: 0;
}

.hub-nav-link,
.hub-theme-btn {
  background: transparent;
  color: var(--v3-text);
}

.hub-btn-demo {
  justify-content: center;
  background: var(--v3-accent);
  color: #fff;
}

.hub-nav-dropdown {
  position: relative;
}

/* Keep the desktop pointer inside each dropdown while it crosses the visual gap. */
@media (hover: hover) and (pointer: fine) {
  .page-home-v3 .hub-nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 1199;
    width: 290px;
    height: 14px;
    transform: translateX(-50%);
  }

  .page-home-v3 .product-v2-actions .hub-nav-dropdown::after {
    right: 0;
    left: auto;
    width: 190px;
    transform: none;
  }
}

.hub-dropdown-toggle {
  gap: 5px;
}

.hub-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1200;
  display: flex;
  min-width: 270px;
  flex-direction: column;
  gap: 4px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.hub-nav-dropdown:hover .hub-dropdown-menu,
.hub-nav-dropdown:focus-within .hub-dropdown-menu,
.hub-nav-dropdown.open .hub-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.hub-dropdown-item {
  display: flex;
  flex-direction: column;
  color: var(--v3-text);
}

.hub-dropdown-item .dd-title {
  color: var(--v3-title);
  font-size: 0.88rem;
  font-weight: 780;
}

.hub-dropdown-item .dd-sub {
  margin-top: 3px;
  color: var(--v3-muted);
  font-size: 0.72rem;
}

.v3-login-menu {
  right: 0;
  left: auto;
  min-width: 170px;
}

.hub-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.hub-hamburger span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 3px;
  background: var(--v3-text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hub-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hub-hamburger.active span:nth-child(2) { opacity: 0; }
.hub-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hub-mobile-menu {
  display: none;
  flex-direction: column;
}

.hub-mobile-menu.open {
  display: flex;
}

/* The Home hero is positioned and can otherwise paint over this sibling menu. */
.page-home-v3 .product-v2-mobile-menu {
  z-index: 990;
  background: color-mix(in srgb, var(--surface-solid) 96%, var(--v3-bg));
}

.hub-mobile-link,
.hub-mobile-demo {
  color: var(--v3-text);
  font-size: 0.9rem;
  font-weight: 650;
}

.hub-mobile-demo {
  border: 0;
  color: #fff;
}

.v3-header-cta {
  display: inline-flex;
}

/* Hero */
.v3-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 80px);
  padding: clamp(92px, 10vh, 128px) 0 clamp(72px, 9vh, 108px);
  place-items: center;
  overflow: hidden;
  background-color: var(--v3-bg);
  background-image: var(--v3-grid-pattern);
  background-size: var(--v3-grid-size);
}

.v3-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--v3-bg));
}

.v3-hero-glow {
  position: absolute;
  top: -390px;
  left: 50%;
  width: 940px;
  height: 940px;
  border: 1px solid rgba(var(--v3-accent-rgb), 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 120px rgba(var(--v3-accent-rgb), 0.025),
    0 0 0 240px rgba(23, 191, 233, 0.018);
  transform: translateX(-50%);
}

.v3-hero-grid {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

.v3-hero-copy {
  width: min(100%, 1120px);
  margin-inline: auto;
  text-align: center;
}

.v3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-inline: auto;
  padding: 8px 12px;
  border: 1px solid rgba(var(--v3-accent-rgb), 0.18);
  border-radius: 999px;
  background: rgba(var(--v3-accent-rgb), 0.07);
  color: var(--v3-accent);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.v3-eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--v3-cyan);
  box-shadow: 0 0 0 6px rgba(23, 191, 233, 0.11);
}

.v3-hero h1 {
  max-width: 1080px;
  margin: clamp(22px, 3vh, 32px) auto 0;
  color: var(--v3-title);
  font-family: var(--font-display, Inter, sans-serif);
  font-size: clamp(3.6rem, 7.2vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.v3-hero h1 span,
.v3-section-head h2 span {
  background: linear-gradient(120deg, var(--v3-accent), var(--v3-blue) 58%, var(--v3-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.v3-hero-copy > p {
  max-width: 790px;
  margin: clamp(22px, 3vh, 30px) auto 0;
  color: var(--v3-text);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  text-wrap: balance;
}

.v3-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(26px, 3.5vh, 34px);
}

.v3-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.86rem;
  font-weight: 780;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.v3-btn:hover {
  transform: translateY(-2px);
}

.v3-btn-primary {
  background: linear-gradient(125deg, var(--v3-accent), var(--v3-blue) 72%, var(--v3-cyan));
  color: #fff;
  box-shadow: 0 14px 32px rgba(var(--v3-accent-rgb), 0.25);
}

.v3-btn-secondary {
  border-color: var(--v3-line);
  background: var(--v3-surface);
  color: var(--v3-title);
  box-shadow: var(--v3-shadow-soft);
}

.v3-hero-facts {
  display: flex;
  max-width: 1100px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: clamp(34px, 5vh, 52px) auto 0;
}

.v3-hero-facts > div {
  position: relative;
  display: flex;
  min-height: 96px;
  max-width: 205px;
  flex: 1 1 175px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 15px;
  overflow: hidden;
  border: 1px solid var(--v3-line-accent);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0, rgba(var(--v3-accent-rgb), 0.12), transparent 72%),
    var(--v3-surface-glass);
  box-shadow: var(--v3-shadow-soft);
  transform: translateY(0) scale(1);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .v3-hero-facts > div:hover {
    border-color: rgba(var(--v3-accent-rgb), 0.32);
    box-shadow: 0 16px 34px rgba(var(--v3-accent-rgb), 0.14);
    transform: translateY(-3px) scale(1.02);
  }
}

.v3-hero-facts > div::before {
  content: "";
  position: absolute;
  top: 0;
  right: 24%;
  left: 24%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--v3-cyan), transparent);
}

.v3-hero-facts dt {
  color: var(--v3-title);
  font-family: var(--font-display, Inter, sans-serif);
  font-size: 1.12rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.v3-hero-facts dd {
  margin-top: 6px;
  color: var(--v3-muted);
  font-size: 0.7rem;
  line-height: 1.35;
  text-align: center;
}

/* Jerarquía visual del hero */
.v3-hero .v3-btn-primary {
  min-height: 54px;
  padding: 14px 23px;
  box-shadow: 0 18px 42px rgba(83, 108, 255, 0.28);
}

.v3-hero .v3-btn-primary:hover {
  box-shadow: 0 21px 48px rgba(83, 108, 255, 0.36);
}

/* Trust bar */
.v3-trust {
  border-top: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
  background: var(--v3-surface-glass);
}

.v3-trust .v3-wrap {
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.8fr);
  align-items: center;
  gap: 28px;
  min-height: 94px;
}

.v3-trust p {
  margin: 0;
  max-width: 260px;
  color: var(--v3-title);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.v3-trust-groups {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.v3-trust-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 15px;
}

.v3-trust-group small {
  padding: 5px 8px;
  border: 1px solid color-mix(in srgb, var(--v3-accent) 32%, transparent);
  border-radius: 999px;
  color: var(--v3-accent);
  background: color-mix(in srgb, var(--v3-accent) 7%, transparent);
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.v3-trust span {
  color: var(--v3-muted);
  font-size: 0.76rem;
  font-weight: 760;
  white-space: nowrap;
}

.v3-trust-groups > i {
  width: 1px;
  height: 27px;
  background: var(--v3-line);
}

/* Shared section typography */
.v3-section {
  padding: clamp(86px, 10vw, 142px) 0;
  scroll-margin-top: 90px;
}

.v3-section-head {
  max-width: 860px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.v3-section-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 1vw, 92px);
  align-items: end;
  max-width: none;
}

.v3-kicker {
  color: var(--v3-accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v3-section-head h2 {
  margin-top: 13px;
  color: var(--v3-title);
  font-family: var(--font-display, Inter, sans-serif);
  font-size: clamp(2.45rem, 4.8vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.v3-lead {
  max-width: 720px;
  margin-top: 19px;
  color: var(--v3-text);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.72;
}

.v3-section-head-split > .v3-lead {
  margin: 0;
}

/* Product suite */
.v3-products {
  background-color: var(--v3-bg);
  background-image:
    radial-gradient(circle at 85% 5%, rgba(23, 191, 233, 0.07), transparent 28rem),
    var(--v3-grid-pattern);
  background-size: auto, var(--v3-grid-size), var(--v3-grid-size);
}

.v3-products .v3-section-head {
  margin-bottom: clamp(38px, 4vw, 54px);
}

.v3-suite-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(var(--v3-accent-rgb), 0.2);
  border-radius: 999px;
  background: rgba(var(--v3-accent-rgb), 0.08);
  box-shadow: 0 9px 24px rgba(var(--v3-accent-rgb), 0.08);
  font-size: 0.8rem;
  font-weight: 880;
  letter-spacing: 0.085em;
}

.v3-suite-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--v3-cyan);
  box-shadow: 0 0 0 6px rgba(23, 191, 233, 0.11);
}

.v3-suite-head {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 4vw, 64px);
  align-items: end;
}

.v3-suite-head > .v3-lead {
  max-width: 720px;
  margin: 0;
}

.v3-suite-flow {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.v3-suite-flow span {
  --suite-flow-rgb: 99, 91, 255;
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(var(--suite-flow-rgb), 0.22);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(var(--suite-flow-rgb), 0.13), rgba(var(--suite-flow-rgb), 0.045)),
    var(--v3-surface-glass);
  color: rgb(var(--suite-flow-rgb));
  box-shadow: 0 12px 30px rgba(var(--suite-flow-rgb), 0.1);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  font-weight: 770;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

.v3-suite-flow .is-qa {
  --suite-flow-rgb: 38, 120, 255;
}

.v3-suite-flow .is-academy {
  --suite-flow-rgb: 138, 92, 246;
}

.v3-suite-flow i {
  display: grid;
  min-width: 18px;
  place-items: center;
  color: var(--v3-muted);
  font-size: 0;
  font-style: normal;
}

.v3-suite-flow i::before {
  content: "→";
  font-size: 0.82rem;
}

.v3-product-stack {
  display: grid;
  gap: clamp(28px, 4vw, 46px);
}

.v3-product-showcase {
  --card-accent: #635bff;
  --card-accent-rgb: 99, 91, 255;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(var(--card-accent-rgb), 0.2);
  border-radius: 32px;
  background: var(--v3-surface);
  box-shadow: var(--v3-shadow-soft);
}

.v3-product-showcase::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-accent), transparent);
}

.v3-product-showcase::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -210px;
  right: -170px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(var(--card-accent-rgb), 0.1);
  filter: blur(70px);
  pointer-events: none;
}

.v3-product-showcase.is-qa {
  --card-accent: #2678ff;
  --card-accent-rgb: 38, 120, 255;
}

.v3-product-showcase.is-qa::after {
  right: auto;
  left: -170px;
}

.v3-product-showcase.is-academy {
  --card-accent: #8a5cf6;
  --card-accent-rgb: 138, 92, 246;
}

.v3-product-copy,
.v3-product-media {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.v3-product-copy {
  display: flex;
  order: 1;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 58px);
}

.v3-product-media {
  order: 2;
  padding: clamp(18px, 2.5vw, 30px);
  border-left: 1px solid rgba(var(--card-accent-rgb), 0.14);
  background:
    radial-gradient(circle at 85% 10%, rgba(var(--card-accent-rgb), 0.18), transparent 19rem),
    linear-gradient(145deg, rgba(var(--card-accent-rgb), 0.08), rgba(var(--card-accent-rgb), 0.025));
}

.v3-product-showcase.is-media-first {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
}

.v3-product-showcase.is-media-first .v3-product-media {
  order: 1;
  border-right: 1px solid rgba(var(--card-accent-rgb), 0.14);
  border-left: 0;
}

.v3-product-showcase.is-media-first .v3-product-copy {
  order: 2;
}

.v3-product-brand {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 64px;
  align-items: center;
}

.v3-product-brand-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.v3-product-brand-image.is-dark {
  display: none;
}

html[data-theme="dark"] .v3-product-brand-image.is-light {
  display: none;
}

html[data-theme="dark"] .v3-product-brand-image.is-dark {
  display: block;
}

.v3-product-copy h3 {
  max-width: 560px;
  margin-top: 16px;
  color: var(--v3-title);
  font-family: var(--font-display, Inter, sans-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.v3-product-copy > p {
  max-width: 590px;
  margin-top: 17px;
  color: var(--v3-text);
  font-size: 0.93rem;
  line-height: 1.68;
}

.v3-product-feature {
  min-height: 152px;
  margin-top: 25px;
  padding: 19px 20px;
  border: 1px solid rgba(var(--card-accent-rgb), 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(var(--card-accent-rgb), 0.09), transparent 72%),
    var(--v3-surface-glass);
}

.v3-product-feature.is-updating {
  animation: v3-product-copy-in 360ms ease both;
}

.v3-product-feature > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--card-accent);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.v3-product-feature b {
  display: inline-grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 9px;
  background: rgba(var(--card-accent-rgb), 0.12);
  font-size: 0.68rem;
}

.v3-product-feature h4 {
  margin-top: 12px;
  color: var(--v3-title);
  font-size: 1.1rem;
  line-height: 1.3;
}

.v3-product-feature p {
  margin-top: 7px;
  color: var(--v3-text);
  font-size: 0.84rem;
  line-height: 1.55;
}

.v3-product-copy > a {
  display: inline-flex;
  min-height: 38px;
  padding: 7px 0;
  width: fit-content;
  gap: 8px;
  align-items: center;
  margin-top: 26px;
  color: var(--card-accent);
  font-size: 0.84rem;
  font-weight: 820;
}

.v3-product-copy > a span {
  transition: transform 180ms ease;
}

.v3-product-copy > a:hover span {
  transform: translateX(4px);
}

.v3-window {
  overflow: hidden;
  border: 1px solid rgba(var(--card-accent-rgb), 0.34);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% -80%, rgba(var(--card-accent-rgb), 0.34), transparent 68%),
    #101426;
  box-shadow:
    0 22px 54px rgba(16, 20, 38, 0.2),
    0 16px 42px rgba(var(--card-accent-rgb), 0.14),
    0 0 0 1px rgba(var(--card-accent-rgb), 0.06);
}

.v3-window-bar {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 13px;
  border-bottom: 1px solid rgba(var(--card-accent-rgb), 0.22);
  background: linear-gradient(
    90deg,
    rgba(var(--card-accent-rgb), 0.24),
    rgba(var(--card-accent-rgb), 0.1) 62%,
    rgba(var(--card-accent-rgb), 0.04)
  );
  color: #d4daea;
}

.v3-window-bar > span {
  display: flex;
  gap: 5px;
}

.v3-window-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6b64;
}

.v3-window-bar i:nth-child(2) { background: #f2ad3d; }
.v3-window-bar i:nth-child(3) { background: #20c997; }

.v3-window-bar strong {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.64rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v3-product-slide[hidden] {
  display: none;
}

.v3-product-slide.is-active {
  animation: v3-product-slide-in 420ms ease both;
}

.v3-image-zoom {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #eef1f7;
}

.v3-image-zoom img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 320ms ease;
}

.v3-product-slide.is-contain .v3-image-zoom img {
  padding: 16px;
  object-fit: contain;
  object-position: center;
}

.v3-image-zoom:hover img {
  transform: scale(1.018);
}

.v3-image-zoom > span {
  position: absolute;
  right: 13px;
  bottom: 13px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(16, 20, 38, 0.82);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.v3-carousel-controls,
.v3-carousel-step,
.v3-carousel-dots {
  display: flex;
  align-items: center;
}

.v3-carousel-controls {
  flex-wrap: wrap;
  min-height: 48px;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
}

.v3-carousel-step {
  gap: 8px;
}

.v3-carousel-step button {
  display: inline-grid;
  min-width: 36px;
  min-height: 36px;
  place-items: center;
  border: 1px solid rgba(var(--card-accent-rgb), 0.24);
  border-radius: 11px;
  background: rgba(var(--card-accent-rgb), 0.08);
  color: var(--card-accent);
  font-size: 0.76rem;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.v3-carousel-step button:hover {
  border-color: rgba(var(--card-accent-rgb), 0.42);
  color: var(--card-accent);
  transform: translateY(-1px);
}

.v3-carousel-step > span {
  min-width: 42px;
  color: var(--v3-muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-align: center;
}

.v3-carousel-dots {
  justify-content: center;
  gap: 7px;
}

.v3-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(var(--card-accent-rgb), 0.25);
  transition: width 180ms ease, background-color 180ms ease;
}

.v3-carousel-dots button[aria-current="true"] {
  width: 24px;
  background: var(--card-accent);
}


.v3-carousel-progress {
  order: 4;
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(var(--card-accent-rgb), 0.14);
}

.v3-carousel-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(var(--card-accent-rgb), 0.72), var(--card-accent));
  transform: scaleX(0);
  transform-origin: left center;
}

.v3-carousel-progress span.is-running {
  animation: v3-carousel-progress var(--v3-carousel-duration, 8000ms) linear forwards;
}

@keyframes v3-carousel-progress {
  to { transform: scaleX(1); }
}

@keyframes v3-product-slide-in {
  from { opacity: 0; transform: translateX(10px) scale(0.992); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes v3-product-copy-in {
  from { opacity: 0.55; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Kimi */
.v3-kimi-section {
  --v3-title: #ffffff;
  --v3-text: #c7cedd;
  --v3-muted: #a6b0c4;
  --v3-line: rgba(255, 255, 255, 0.1);
  position: relative;
  color: #fff;
  background-color: #101426;
  background-image:
    radial-gradient(circle at 10% 15%, rgba(var(--v3-accent-rgb), 0.3), transparent 31rem),
    radial-gradient(circle at 90% 80%, rgba(23, 191, 233, 0.13), transparent 27rem),
    var(--v3-grid-pattern);
  background-size: auto, auto, var(--v3-grid-size), var(--v3-grid-size);
}

.v3-kimi-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.76fr);
  gap: clamp(50px, 7vw, 96px);
  align-items: center;
}

.v3-kimi-copy .v3-kicker {
  font-size: 0.8rem;
  font-weight: 880;
  letter-spacing: 0.085em;
}

.v3-kimi-copy h2 {
  max-width: 700px;
  margin-top: 13px;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.v3-kimi-copy > p:not(.v3-kicker) {
  margin-top: 20px;
  color: #c7cedd;
  font-size: 1rem;
  line-height: 1.72;
}

.v3-kimi-paths {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.v3-kimi-paths article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  align-items: center;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.v3-kimi-paths article:hover {
  border-color: rgba(185, 234, 255, 0.24);
  background: rgba(255, 255, 255, 0.065);
  transform: translateX(4px);
}

.v3-kimi-paths article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(185, 234, 255, 0.18);
  border-radius: 13px;
  background: rgba(23, 191, 233, 0.09);
  color: #b9eaff;
  font-size: 0.9rem;
  font-weight: 860;
}

.v3-kimi-paths strong,
.v3-kimi-paths small {
  display: block;
}

.v3-kimi-paths strong {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.3;
}

.v3-kimi-paths small {
  margin-top: 5px;
  color: #b5bed0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.v3-kimi-card {
  position: relative;
  display: grid;
  min-height: 500px;
  grid-template-columns: 1fr;
  gap: 22px;
  align-content: center;
  justify-items: center;
  padding: clamp(24px, 3vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 22%, rgba(23, 191, 233, 0.13), transparent 18rem),
    radial-gradient(circle at 85% 85%, rgba(var(--v3-accent-rgb), 0.16), transparent 20rem),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.v3-kimi-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(185, 234, 255, 0.07);
  border-radius: 23px;
  pointer-events: none;
}

.v3-kimi-avatar {
  position: relative;
  width: min(100%, 310px);
  height: auto;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(185, 181, 255, 0.22);
  border-radius: 30px;
  background: radial-gradient(circle, rgba(23, 191, 233, 0.18), rgba(var(--v3-accent-rgb), 0.11) 58%, transparent 74%);
  box-shadow:
    0 24px 58px rgba(4, 8, 28, 0.34),
    0 0 40px rgba(75, 207, 255, 0.08);
}

.v3-kimi-state {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.v3-kimi-avatar[data-state="idle"] .v3-kimi-idle,
.v3-kimi-avatar[data-state="thinking"] .v3-kimi-thinking,
.v3-kimi-avatar[data-state="success"] .v3-kimi-success {
  display: block;
}

.v3-kimi-reader-ui {
  position: absolute;
  z-index: 7;
  right: 8%;
  bottom: 12%;
  width: 42%;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(125, 222, 255, 0.3);
  border-radius: 13px;
  background: rgba(9, 17, 48, 0.7);
  box-shadow: 0 14px 34px rgba(4, 8, 28, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: perspective(320px) translateY(8px) rotateY(-8deg);
  backdrop-filter: blur(10px);
  animation: v3-kimi-reader-float 4.6s ease-in-out infinite;
  animation-play-state: paused;
  transition: opacity 240ms ease, visibility 240ms ease, transform 240ms ease;
}

.v3-kimi-reader-ui > span {
  display: block;
  margin-bottom: 8px;
  color: #9fe5ff;
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.v3-kimi-reader-ui i {
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(159, 229, 255, 0.88), rgba(139, 115, 255, 0.28));
  transform-origin: left center;
  animation: v3-kimi-reader-text 2.8s ease-in-out infinite;
}

.v3-kimi-reader-ui i:nth-of-type(2) { width: 78%; animation-delay: -0.7s; }
.v3-kimi-reader-ui i:nth-of-type(3) { width: 90%; animation-delay: -1.4s; }
.v3-kimi-reader-ui i:nth-of-type(4) { width: 58%; animation-delay: -2.1s; }

.v3-kimi-reader-ui b {
  position: absolute;
  right: 8px;
  left: 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #56d5ff, transparent);
  box-shadow: 0 0 10px rgba(86, 213, 255, 0.7);
  animation: v3-kimi-reader-scan 3s linear infinite;
}

.v3-kimi-avatar[data-state="thinking"] .v3-kimi-reader-ui {
  opacity: 1;
  visibility: visible;
  transform: perspective(320px) translateY(0) rotateY(-8deg);
  animation-play-state: running;
  border-color: rgba(125, 222, 255, 0.48);
  box-shadow: 0 16px 38px rgba(4, 8, 28, 0.38), 0 0 24px rgba(75, 207, 255, 0.18);
}

.v3-kimi-card > div {
  position: relative;
  z-index: 2;
  width: min(100%, 370px);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(8, 14, 38, 0.52);
}

.v3-kimi-card > div span,
.v3-kimi-card > div strong {
  display: block;
}

.v3-kimi-card > div span {
  color: #b9eaff;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v3-kimi-card > div strong {
  margin-top: 9px;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.25;
}

.v3-kimi-card > div p {
  margin-top: 9px;
  color: #c7cedd;
  font-size: 0.9rem;
  line-height: 1.58;
}

.v3-kimi-card > div small {
  display: block;
  margin-top: 12px;
  color: #98a4bb;
  font-size: 0.7rem;
}

@keyframes v3-kimi-reader-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -5px; }
}

@keyframes v3-kimi-reader-text {
  0%, 100% { opacity: 0.42; transform: scaleX(0.72); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes v3-kimi-reader-scan {
  0% { top: 30px; opacity: 0; }
  15%, 85% { opacity: 0.9; }
  100% { top: calc(100% - 8px); opacity: 0; }
}

/* DFY */
.v3-dfy {
  background-color: var(--v3-bg-soft);
  background-image:
    radial-gradient(circle at 50% 50%, rgba(99, 91, 255, 0.07), transparent 34rem),
    var(--v3-grid-pattern);
  background-size: auto, var(--v3-grid-size), var(--v3-grid-size);
}

.v3-dfy-manifesto {
  --v3-title: #ffffff;
  --v3-text: rgba(255, 255, 255, 0.84);
  --v3-muted: rgba(255, 255, 255, 0.66);
  --v3-line: rgba(255, 255, 255, 0.18);
  position: relative;
  padding: clamp(34px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: clamp(30px, 4vw, 42px);
  background:
    radial-gradient(circle at 88% 8%, rgba(55, 215, 255, 0.28), transparent 24rem),
    radial-gradient(circle at 8% 94%, rgba(255, 255, 255, 0.12), transparent 28rem),
    linear-gradient(135deg, #635bff 0%, #635bff 42%, #7e5cff 100%);
  box-shadow:
    0 34px 90px rgba(99, 91, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.v3-dfy-manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 82%);
  pointer-events: none;
}

.v3-dfy-manifesto::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 36px rgba(255, 255, 255, 0.035),
    0 0 0 78px rgba(55, 215, 255, 0.025);
  pointer-events: none;
}

.v3-dfy-manifesto > * {
  position: relative;
  z-index: 1;
}

.v3-dfy-head {
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: 0;
  text-align: center;
}

.v3-dfy-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 9px 24px rgba(30, 24, 102, 0.12);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 880;
  letter-spacing: 0.085em;
  backdrop-filter: blur(18px);
}

.v3-dfy-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #37d7ff;
  box-shadow: 0 0 0 6px rgba(55, 215, 255, 0.15);
}

.v3-dfy-head h2 {
  max-width: 940px;
  margin-inline: auto;
  color: #ffffff;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.v3-dfy-head h2 span {
  color: #dcf8ff;
}

.v3-dfy-head .v3-lead {
  max-width: 790px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.84);
}

.v3-dfy-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(42px, 5vw, 60px);
}

.v3-dfy-steps li {
  --dfy-card-accent: #635bff;
  --dfy-card-accent-rgb: 99, 91, 255;
  position: relative;
  min-height: 286px;
  padding: clamp(26px, 3vw, 34px);
  overflow: visible;
  border: 1px solid rgba(var(--dfy-card-accent-rgb), 0.16);
  border-radius: 26px;
  background: #ffffff;
  box-shadow:
    0 24px 56px rgba(34, 27, 111, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.v3-dfy-steps li:nth-child(2) {
  --dfy-card-accent: #00a6ff;
  --dfy-card-accent-rgb: 0, 166, 255;
}

.v3-dfy-steps li:nth-child(3) {
  --dfy-card-accent: #7e5cff;
  --dfy-card-accent-rgb: 126, 92, 255;
}

.v3-dfy-steps li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, var(--dfy-card-accent), transparent);
  opacity: 0.88;
}

.v3-dfy-steps li:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 3;
  top: 50%;
  right: calc(clamp(16px, 2vw, 24px) / -2 - 18px);
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(99, 91, 255, 0.14);
  border-radius: 50%;
  background: rgba(248, 250, 255, 0.96);
  box-shadow: 0 8px 22px rgba(35, 28, 112, 0.18);
  color: #635bff;
  font-size: 0.92rem;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.v3-dfy-steps li:hover {
  border-color: rgba(var(--dfy-card-accent-rgb), 0.34);
  box-shadow:
    0 30px 68px rgba(34, 27, 111, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translateY(-4px) scale(1.01);
}

.v3-dfy-steps li > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(var(--dfy-card-accent-rgb), 0.17);
  border-radius: 18px;
  background: rgba(var(--dfy-card-accent-rgb), 0.09);
  color: var(--dfy-card-accent);
  font-size: 1rem;
  font-weight: 880;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.v3-dfy-steps li > div {
  margin-top: 46px;
}

.v3-dfy-steps strong {
  color: #101828;
  font-family: var(--font-display, Inter, sans-serif);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  letter-spacing: -0.025em;
}

.v3-dfy-steps p {
  max-width: 31ch;
  margin-top: 11px;
  color: #667085;
  font-size: 0.94rem;
  line-height: 1.65;
}

html[data-theme="dark"] .v3-dfy-manifesto {
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

/* Enterprise */
.v3-enterprise {
  background-color: var(--v3-bg);
  background-image:
    radial-gradient(circle at 12% 50%, rgba(var(--v3-accent-rgb), 0.07), transparent 29rem),
    var(--v3-grid-pattern);
  background-size: auto, var(--v3-grid-size), var(--v3-grid-size);
}

.v3-enterprise-panel {
  --v3-title: #101828;
  --v3-text: #667085;
  --v3-muted: #98a2b3;
  --v3-line: rgba(99, 91, 255, 0.1);
  position: relative;
  padding: clamp(30px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(99, 91, 255, 0.12);
  border-radius: clamp(28px, 4vw, 38px);
  background:
    radial-gradient(circle at 88% 12%, rgba(55, 215, 255, 0.13), transparent 27rem),
    radial-gradient(circle at 8% 95%, rgba(99, 91, 255, 0.1), transparent 31rem),
    linear-gradient(145deg, #f8faff, #eef2f9 58%, #f8faff);
  box-shadow: 0 28px 72px rgba(38, 45, 91, 0.12);
  color: var(--v3-text);
}

html[data-theme="dark"] .v3-enterprise-panel {
  --v3-title: #ffffff;
  --v3-text: #a9b0c3;
  --v3-muted: #70768a;
  --v3-line: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 88% 12%, rgba(55, 215, 255, 0.1), transparent 27rem),
    radial-gradient(circle at 8% 95%, rgba(99, 91, 255, 0.14), transparent 31rem),
    linear-gradient(145deg, #1c2035, #171a2f 58%, #0d1020);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.3);
}

.v3-enterprise-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(99, 91, 255, 0.055);
  border-radius: calc(clamp(28px, 4vw, 38px) - 9px);
  pointer-events: none;
}

html[data-theme="dark"] .v3-enterprise-panel::before {
  border-color: rgba(255, 255, 255, 0.04);
}

.v3-enterprise-panel > * {
  position: relative;
  z-index: 1;
}

.v3-enterprise-panel .v3-section-head {
  max-width: 930px;
  margin-bottom: clamp(38px, 5vw, 58px);
}

.v3-enterprise-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(99, 91, 255, 0.16);
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.07);
  box-shadow: 0 9px 24px rgba(99, 91, 255, 0.07);
  color: #635bff;
  font-size: 0.8rem;
  font-weight: 880;
  letter-spacing: 0.085em;
}

.v3-enterprise-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #00a6ff;
  box-shadow: 0 0 0 6px rgba(0, 166, 255, 0.1);
}

html[data-theme="dark"] .v3-enterprise-kicker {
  border-color: rgba(55, 215, 255, 0.18);
  background: rgba(55, 215, 255, 0.07);
  color: #37d7ff;
}

.v3-enterprise-panel .v3-section-head h2 {
  color: var(--v3-title);
}

.v3-enterprise-panel .v3-section-head h2 span {
  color: #635bff;
}

html[data-theme="dark"] .v3-enterprise-panel .v3-section-head h2 span {
  color: #37d7ff;
}

.v3-enterprise-panel .v3-lead {
  color: var(--v3-text);
}

.v3-enterprise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.82fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
}

.v3-connectivity {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(99, 91, 255, 0.11);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 7%, rgba(55, 215, 255, 0.1), transparent 18rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 52px rgba(38, 45, 91, 0.09);
  backdrop-filter: blur(24px);
}

html[data-theme="dark"] .v3-connectivity {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 92% 7%, rgba(55, 215, 255, 0.08), transparent 18rem),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.v3-connectivity > span {
  color: #635bff;
  font-size: 0.8rem;
  font-weight: 880;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

html[data-theme="dark"] .v3-connectivity > span {
  color: #37d7ff;
}

.v3-connectivity h3 {
  max-width: 680px;
  margin-top: 14px;
  color: var(--v3-title);
  font-family: var(--font-display, Inter, sans-serif);
  font-size: clamp(2.15rem, 3.7vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.v3-connectivity > p {
  max-width: 62ch;
  margin-top: 20px;
  color: var(--v3-text);
  font-size: 1rem;
  line-height: 1.72;
}

.v3-connectivity > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.v3-connectivity small {
  padding: 8px 11px;
  border: 1px solid rgba(99, 91, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #667085;
  font-size: 0.75rem;
  font-weight: 740;
}

html[data-theme="dark"] .v3-connectivity small {
  border-color: rgba(255, 255, 255, 0.08);
  background: #23263a;
  color: #a9b0c3;
}

.v3-security-list {
  display: grid;
  gap: 12px;
  align-content: stretch;
}

.v3-security-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(99, 91, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 32px rgba(38, 45, 91, 0.06);
  backdrop-filter: blur(24px);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

html[data-theme="dark"] .v3-security-list article {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.v3-security-list article:hover {
  border-color: rgba(99, 91, 255, 0.24);
  background: rgba(255, 255, 255, 0.86);
  transform: translateX(4px);
}

html[data-theme="dark"] .v3-security-list article:hover {
  border-color: rgba(55, 215, 255, 0.2);
  background: rgba(255, 255, 255, 0.075);
}

.v3-security-list article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(99, 91, 255, 0.15);
  border-radius: 14px;
  background: rgba(99, 91, 255, 0.08);
  color: #635bff;
  font-size: 0.88rem;
  font-weight: 880;
}

html[data-theme="dark"] .v3-security-list article > span {
  border-color: rgba(55, 215, 255, 0.16);
  background: rgba(55, 215, 255, 0.08);
  color: #37d7ff;
}

.v3-security-list h3 {
  color: var(--v3-title);
  font-size: 1.12rem;
  line-height: 1.3;
}

.v3-security-list p {
  margin-top: 6px;
  color: var(--v3-text);
  font-size: 0.88rem;
  line-height: 1.58;
}

/* Industries */
.v3-industries {
  background-color: var(--v3-bg-soft);
  background-image: var(--v3-grid-pattern);
  background-size: var(--v3-grid-size);
}

.v3-industries-kicker {
  font-size: 0.8rem;
  font-weight: 880;
  letter-spacing: 0.085em;
}

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

.v3-industry-grid article {
  position: relative;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(var(--v3-accent-rgb), 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--v3-accent-rgb), 0.045), transparent 11rem),
    var(--v3-surface);
  box-shadow: 0 14px 36px rgba(38, 45, 91, 0.075);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.v3-industry-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 46px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--v3-accent), var(--v3-cyan));
  opacity: 0.78;
}

.v3-industry-grid article:hover {
  border-color: rgba(var(--v3-accent-rgb), 0.23);
  box-shadow: 0 20px 46px rgba(38, 45, 91, 0.11);
  transform: translateY(-3px);
}

.v3-industry-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(var(--v3-accent-rgb), 0.13);
  border-radius: 12px;
  background: rgba(var(--v3-accent-rgb), 0.07);
  color: var(--v3-accent);
  font-size: 0.72rem;
  font-weight: 880;
}

.v3-industry-grid h3 {
  margin-top: 30px;
  color: var(--v3-title);
  font-size: 1.12rem;
  line-height: 1.3;
}

.v3-industry-grid p {
  margin-top: 8px;
  color: var(--v3-text);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* Cases */
.v3-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.v3-case-grid article {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--v3-line);
  border-radius: 28px;
  background: var(--v3-surface);
  box-shadow: var(--v3-shadow-soft);
}

.v3-case-grid article > span {
  color: var(--v3-accent);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.v3-case-grid blockquote {
  margin-top: 24px;
  color: var(--v3-title);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.48;
  letter-spacing: -0.02em;
}

.v3-case-grid dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--v3-line);
  border-radius: 15px;
  background: var(--v3-line);
}

.v3-case-grid dl > div {
  padding: 14px;
  background: var(--v3-bg-soft);
}

.v3-case-grid dt {
  color: var(--v3-title);
  font-size: 1rem;
  font-weight: 820;
}

.v3-case-grid dd {
  margin-top: 4px;
  color: var(--v3-muted);
  font-size: 0.64rem;
  line-height: 1.35;
}

/* FAQ */
.v3-faq {
  background-color: var(--v3-bg-soft);
  background-image: var(--v3-grid-pattern);
  background-size: var(--v3-grid-size);
}

.v3-faq .v3-kicker {
  font-size: 0.8rem;
  font-weight: 880;
  letter-spacing: 0.085em;
}

.v3-faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: start;
}

.v3-faq-layout .v3-section-head {
  position: sticky;
  top: 108px;
  margin: 0;
}

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

.v3-faq-list article {
  overflow: hidden;
  border: 1px solid var(--v3-line);
  border-radius: 18px;
  background: var(--v3-surface);
}

.v3-faq-list h3 {
  margin: 0;
}

.v3-faq-list button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--v3-title);
  text-align: left;
  font-size: 0.92rem;
  font-weight: 730;
}

.v3-faq-list button span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: rgba(var(--v3-accent-rgb), 0.08);
  color: var(--v3-accent);
}

.v3-faq-answer {
  padding: 0 20px 20px;
}

.v3-faq-answer p {
  padding-top: 17px;
  border-top: 1px solid var(--v3-line);
  color: var(--v3-text);
  font-size: 0.84rem;
  line-height: 1.65;
}

/* CTA and footer */
.v3-next-step {
  color: #ffffff;
  background-color: #292257;
  background-image:
    var(--v3-grid-pattern),
    radial-gradient(circle at 15% 25%, rgba(23, 191, 233, 0.22), transparent 27rem),
    radial-gradient(circle at 88% 76%, rgba(138, 92, 246, 0.3), transparent 28rem),
    linear-gradient(135deg, #292257, #3f34a9 55%, #1b6fc3);
  background-size: var(--v3-grid-size), var(--v3-grid-size), auto, auto, auto;
}

.v3-next-panel {
  position: relative;
}

.v3-next-head {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.v3-next-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #e2dfff;
  font-size: 0.8rem;
  font-weight: 880;
  letter-spacing: 0.085em;
  backdrop-filter: blur(18px);
}

.v3-next-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #37d7ff;
  box-shadow: 0 0 0 6px rgba(55, 215, 255, 0.14);
}

.v3-next-head h2 {
  margin-top: 14px;
  color: #ffffff;
  font-family: var(--font-display, Inter, sans-serif);
  font-size: clamp(2.55rem, 4.8vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.v3-next-head > p:not(.v3-kicker) {
  max-width: 740px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.72;
}

.v3-next-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(38px, 5vw, 54px);
}

.v3-next-cards li {
  --next-accent: #635bff;
  --next-accent-rgb: 99, 91, 255;
  position: relative;
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(var(--next-accent-rgb), 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 42px rgba(18, 13, 72, 0.18);
  backdrop-filter: blur(24px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.v3-next-cards li:nth-child(2) {
  --next-accent: #00a6ff;
  --next-accent-rgb: 0, 166, 255;
}

.v3-next-cards li:nth-child(3) {
  --next-accent: #7e5cff;
  --next-accent-rgb: 126, 92, 255;
}

.v3-next-cards li:hover {
  border-color: rgba(var(--next-accent-rgb), 0.32);
  box-shadow: 0 24px 54px rgba(18, 13, 72, 0.24);
  transform: translateY(-3px);
}

.v3-next-cards span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(var(--next-accent-rgb), 0.14);
  border-radius: 13px;
  background: rgba(var(--next-accent-rgb), 0.08);
  color: var(--next-accent);
  font-size: 0.78rem;
  font-weight: 880;
}

.v3-next-cards h3 {
  margin-top: 34px;
  color: #101828;
  font-size: 1.2rem;
  line-height: 1.3;
}

.v3-next-cards p {
  margin-top: 10px;
  color: #667085;
  font-size: 0.88rem;
  line-height: 1.62;
}

.v3-next-action {
  display: grid;
  justify-items: center;
  margin-top: 46px;
  text-align: center;
}

.v3-next-action > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v3-next-action > span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #37d7ff;
  box-shadow: 0 0 0 6px rgba(55, 215, 255, 0.12);
}

.v3-next-action .v3-btn {
  min-width: min(100%, 340px);
  min-height: 64px;
  padding: 17px 30px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: linear-gradient(125deg, #00a6ff, #37d7ff);
  color: #ffffff;
  box-shadow:
    0 20px 46px rgba(0, 166, 255, 0.34),
    0 0 0 8px rgba(55, 215, 255, 0.07);
  font-size: 1.02rem;
  font-weight: 880;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.v3-next-action .v3-btn b {
  display: inline-block;
  margin-left: 7px;
  font-size: 1.1em;
  transition: transform 180ms ease;
}

.v3-next-action .v3-btn:hover {
  box-shadow:
    0 25px 58px rgba(0, 166, 255, 0.42),
    0 0 0 10px rgba(55, 215, 255, 0.1);
  filter: saturate(1.06) brightness(1.03);
  transform: translateY(-2px) scale(1.02);
}

.v3-next-action .v3-btn:hover b {
  transform: translateX(4px);
}

.v3-next-action .v3-btn:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 5px;
}

.v3-next-action p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
}

.v3-faq-closer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(34px, 5vw, 54px);
  padding: 22px 24px;
  border: 1px solid var(--v3-line);
  border-radius: 20px;
  background: var(--v3-surface);
  box-shadow: var(--v3-shadow-soft);
}

.v3-faq-closer strong {
  color: var(--v3-title);
  font-size: 1rem;
}

.v3-faq-closer p {
  margin-top: 5px;
  color: var(--v3-text);
  font-size: 0.82rem;
}

.v3-faq-closer .v3-btn {
  flex: 0 0 auto;
}

@media (max-width: 820px) {
  .v3-next-cards {
    max-width: 680px;
    grid-template-columns: 1fr;
    margin-inline: auto;
  }

  .v3-next-cards li {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .v3-faq-closer {
    align-items: stretch;
    flex-direction: column;
  }

  .v3-faq-closer .v3-btn {
    width: 100%;
  }
}


.v3-footer {
  padding: 72px 0 0;
  background-color: #0d1020;
  background-image: var(--v3-grid-pattern);
  background-size: var(--v3-grid-size);
  color: #aeb8cc;
}

.v3-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(150px, 0.72fr));
  gap: 42px;
  padding-bottom: 48px;
}

.v3-footer-brand > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.07em;
}

.v3-footer-brand img { width: 36px; height: 36px; object-fit: contain; }
.v3-footer-brand p { max-width: 340px; margin-top: 17px; color: #98a4bb; font-size: 0.82rem; line-height: 1.65; }
.v3-footer h3 { margin-bottom: 17px; color: #fff; font-size: 0.82rem; }
.v3-footer ul { display: grid; gap: 11px; }
.v3-footer li, .v3-footer a { color: #aeb8cc; font-size: 0.78rem; }
.v3-footer a:hover { color: #fff; }
.v3-footer button { margin-top: 17px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgba(255,255,255,.06); color: #fff; font-size: .74rem; font-weight: 750; }

.v3-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #7f8aa1;
  font-size: .7rem;
}

.v3-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: #147f5b;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  font-size: .75rem;
  font-weight: 800;
}

.v3-whatsapp span { width: 8px; height: 8px; border-radius: 50%; background: #7cf0bd; box-shadow: 0 0 0 5px rgba(124,240,189,.14); }

/* Lightbox */
.v3-lightbox {
  width: min(96vw, 1440px);
  max-width: none;
  max-height: 94vh;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: #101426;
  color: #fff;
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}

.v3-lightbox::backdrop,
.v3-modal::backdrop { background: rgba(8, 10, 20, .76); backdrop-filter: blur(8px); }
.v3-lightbox-panel { display: grid; grid-template-rows: auto minmax(0,1fr) auto; max-height: 94vh; }
.v3-lightbox-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 18px; border-bottom: 1px solid rgba(255,255,255,.09); }
.v3-lightbox-head span, .v3-lightbox-head strong { display: block; }
.v3-lightbox-head span { color: #9da7bb; font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; }
.v3-lightbox-head strong { margin-top: 3px; font-size: .84rem; }
.v3-lightbox-head button { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; background: rgba(255,255,255,.06); color: #fff; font-size: 1.25rem; }
.v3-lightbox-canvas { overflow: auto; background: #090c18; }
.v3-lightbox-canvas img { display: block; width: auto; min-width: 100%; max-width: none; height: auto; min-height: 100%; object-fit: contain; }
.v3-lightbox-panel > p { padding: 12px 18px; border-top: 1px solid rgba(255,255,255,.09); color: #aeb8cc; font-size: .72rem; }
.v3-modal-open { overflow: hidden; }

/* Demo modal */
.v3-modal {
  width: min(calc(100% - 32px), 700px);
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 1px solid var(--v3-line-accent);
  border-radius: 26px;
  background: var(--v3-surface);
  color: var(--v3-text);
  box-shadow: 0 40px 120px rgba(0,0,0,.42);
}

.v3-modal-panel { position: relative; padding: clamp(26px, 5vw, 42px); }
.v3-modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border: 1px solid var(--v3-line); border-radius: 11px; background: var(--v3-bg-soft); color: var(--v3-title); font-size: 1.2rem; }
.v3-modal h2 { max-width: 520px; margin-top: 10px; color: var(--v3-title); font-size: clamp(1.9rem, 4vw, 2.65rem); line-height: 1.08; letter-spacing: -.04em; }
.v3-modal form > p:not(.v3-kicker):not(.v3-form-status) { margin-top: 13px; color: var(--v3-text); font-size: .88rem; line-height: 1.6; }
.v3-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 24px; }
.v3-form-grid label { color: var(--v3-title); font-size: .72rem; font-weight: 750; }
.v3-form-grid input, .v3-form-grid select { width: 100%; min-height: 46px; margin-top: 7px; padding: 10px 12px; border: 1px solid var(--v3-line); border-radius: 11px; background: var(--v3-bg); color: var(--v3-title); }
.v3-modal-submit { width: 100%; min-height: 49px; margin-top: 16px; border: 0; border-radius: 13px; background: linear-gradient(125deg,var(--v3-accent),var(--v3-blue)); color: #fff; font-weight: 800; }
.v3-form-status { min-height: 20px; margin-top: 10px; color: #b42318; font-size: .74rem; }
.v3-modal-success { padding: 26px 0; text-align: center; }
.v3-modal-success > span { display: grid; width: 56px; height: 56px; margin: 0 auto; place-items: center; border-radius: 18px; background: rgba(32,201,151,.1); color: #168d69; font-size: 1.4rem; font-weight: 850; }
.v3-modal-success h2 { margin-inline: auto; }
.v3-modal-success p { margin-top: 13px; color: var(--v3-text); }

/* Responsive */
@media (max-width: 1100px) {
  .hub-nav-links { display: none; }
  .hub-hamburger { display: flex; }
  .v3-industry-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 920px) {
  .v3-section-head-split,
  .v3-kimi-grid,
  .v3-enterprise-grid,
  .v3-faq-layout { grid-template-columns: 1fr; }
  .v3-section-head-split > .v3-lead { margin-top: 0; }
  .v3-suite-flow { margin-top: 0; }
  .v3-suite-flow span { white-space: normal; }
  .v3-product-showcase,
  .v3-product-showcase.is-media-first { grid-template-columns: 1fr; }
  .v3-product-showcase .v3-product-copy,
  .v3-product-showcase.is-media-first .v3-product-copy { order: 1; }
  .v3-product-showcase .v3-product-media,
  .v3-product-showcase.is-media-first .v3-product-media {
    order: 2;
    border-top: 1px solid rgba(var(--card-accent-rgb), 0.14);
    border-right: 0;
    border-left: 0;
  }
  .v3-kimi-card { max-width: 660px; }
  .v3-faq-layout .v3-section-head { position: static; }
  .v3-footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 720px) {
  .v3-wrap { width: min(calc(100% - 32px), var(--v3-max)); }
  .v3-hero { min-height: calc(100svh - 72px); padding: 72px 0 64px; }
  .v3-hero h1 { font-size: clamp(2.8rem, 12vw, 4.7rem); }
  .v3-hero-copy > p { max-width: 650px; }
  .v3-trust .v3-wrap { grid-template-columns: 1fr; gap: 13px; padding-block: 20px; }
  .v3-trust .v3-wrap > div { justify-content: flex-start; }
  .v3-trust i { display: none; }
  .v3-dfy-steps { max-width: 680px; grid-template-columns: 1fr; margin-inline: auto; }
  .v3-dfy-steps li { min-height: 0; }
  .v3-dfy-steps li:not(:last-child)::after { display: none; }
  .v3-dfy-steps li > div { margin-top: 28px; }
  .v3-case-grid { grid-template-columns: 1fr; }
  .v3-form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .hub-nav-actions > .hub-nav-dropdown,
  .hub-nav-actions > .hub-btn-demo { display: none; }
}

@media (max-width: 560px) {
  .v3-actions { flex-direction: column; }
  .v3-suite-kicker { font-size: 0.75rem; }
  .v3-suite-flow { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 0; padding: 0; }
  .v3-suite-flow span { justify-content: center; text-align: center; white-space: normal; }
  .v3-suite-flow i { display: none; }
  .v3-actions > * { width: 100%; }
  .v3-hero-facts > div { min-height: 88px; max-width: none; flex-basis: calc(50% - 6px); }
  .v3-section { padding: 76px 0; }
  .v3-section-head h2, .v3-final-cta h2 { font-size: clamp(2.15rem, 11vw, 3rem); }
  .v3-product-showcase, .v3-connectivity, .v3-case-grid article { border-radius: 22px; }
  .v3-product-copy { padding: 26px 22px; }
  .v3-product-media { padding: 15px; }
  .v3-product-feature { min-height: 0; padding: 17px; }
  .v3-image-zoom { aspect-ratio: 4 / 3; }
  .v3-carousel-controls { flex-wrap: wrap; }
  .v3-carousel-dots { order: 3; width: 100%; }
  .v3-kimi-card { min-height: 0; grid-template-columns: 1fr; padding: 20px; }
  .v3-kimi-avatar { width: min(100%, 280px); height: auto; border-radius: 24px; }
  .v3-kimi-card > div { padding: 16px 17px; }
  .v3-kimi-paths article { grid-template-columns: 44px 1fr; padding: 15px; }
  .v3-kimi-paths strong { font-size: 1rem; }
  .v3-kimi-paths small { font-size: 0.84rem; }
  .v3-industry-grid { grid-template-columns: 1fr; }
  .v3-industry-grid article { min-height: 160px; }
  .v3-industry-grid h3 { margin-top: 35px; }
  .v3-case-grid dl { grid-template-columns: 1fr; }
  .v3-footer-grid { grid-template-columns: 1fr; }
  .v3-footer-bottom { align-items: flex-start; flex-direction: column; }
  .v3-whatsapp { right: 14px; bottom: 14px; }
}

@media (max-width: 390px) {
  .v3-hero-facts > div { max-width: 300px; flex-basis: 100%; }
  .v3-kimi-card { grid-template-columns: 1fr; }
  .v3-kimi-avatar { width: min(100%, 250px); height: auto; }
}

/* FULL HD DESKTOP DENSITY
   Keeps each content chapter readable within a shorter vertical rhythm. */
@media (min-width: 1180px) and (max-height: 1200px) {
  .v3-hero {
    min-height: calc(100svh - 84px);
    padding: clamp(56px, 6.5vh, 72px) 0;
  }

  .v3-hero h1 {
    margin-top: 18px;
    font-size: clamp(4rem, 6.2vw, 6.6rem);
  }

  .v3-hero-copy > p { margin-top: 18px; line-height: 1.62; }
  .v3-actions { margin-top: 24px; }
  .v3-hero-facts { margin-top: 30px; }
  .v3-hero-facts > div { min-height: 90px; }

  .v3-section {
    padding: clamp(58px, 6.5vh, 72px) 0;
  }

  .v3-section-head {
    margin-bottom: clamp(28px, 3.6vh, 40px);
  }

  .v3-section-head h2,
  .v3-final-cta h2 {
    font-size: clamp(2.35rem, 3.45vw, 3.85rem);
  }

  .v3-lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .v3-dfy-steps li {
    min-height: 250px;
    padding: 26px;
  }

  .v3-dfy-steps li > div { margin-top: 36px; }

  .v3-connectivity {
    padding: 36px;
  }

  .v3-industry-grid article {
    min-height: 158px;
    padding: 20px;
  }

  .v3-industry-grid h3 { margin-top: 34px; }

  .v3-case-grid article { padding: 30px; }
  .v3-case-grid blockquote { margin-top: 18px; }
  .v3-case-grid dl { margin-top: 24px; }

  .v3-faq-list { gap: 8px; }
  .v3-faq-list button {
    min-height: 64px;
    padding: 14px 18px;
  }

  .v3-final-cta { padding: 72px 0; }
  .v3-final-cta p:not(.v3-kicker) { margin-top: 18px; }
  .v3-btn-light { margin-top: 24px; }

  .v3-footer { padding-top: 54px; }
  .v3-footer-grid { padding-bottom: 36px; }
}

/* Product modules retain equal prominence on wide desktop screens. */
@media (min-width: 1500px) and (max-height: 1200px) {
  .v3-product-stack { gap: 26px; }
  .v3-product-copy { padding: 32px 38px; }
  .v3-product-copy h3 { font-size: clamp(1.9rem, 2.3vw, 2.55rem); }
  .v3-product-feature { min-height: 138px; margin-top: 20px; padding: 17px 18px; }
  .v3-product-copy > a { margin-top: 20px; }
  .v3-product-media { padding: 20px; }
  .v3-image-zoom { aspect-ratio: 16 / 9; }
}

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


/* Logos de producto en el home */
@media (max-width: 560px) {
  .v3-product-brand {
    min-height: 56px;
  }

  .v3-product-brand-image {
    height: 56px;
  }
}

/* Refinamientos hero y productos 2026-07-24 */
@media (max-width: 720px) {
  .v3-trust-groups { justify-content: flex-start; }
  .v3-trust-group { width: 100%; }
}

@media (max-width: 560px) {
  .v3-hero-facts {
    display: flex;
    width: 100%;
  }

  .v3-hero-facts > div {
    width: 100%;
    max-width: calc(50% - 6px);
    flex: 1 1 calc(50% - 6px);
    min-height: 86px;
  }
}

@media (max-width: 390px) {
  .v3-hero-facts > div {
    max-width: none;
    flex-basis: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v3-carousel-progress span {
    animation: none !important;
    transform: scaleX(1) !important;
  }
}
