/* ═══════════════════════════════════════════════════════════
   DATALYSE — styles.css
   Clean White + WOW Tech Design System
   ═══════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  /* Brand colors */
  --indigo: #6366f1;
  --indigo-light: #818cf8;
  --purple: #a855f7;
  --cyan: #06b6d4;
  --emerald: #10b981;
  --amber: #f59e0b;
  --rose: #f43f5e;

  /* Neutrals */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Semantic */
  --color-heading: #0a0a0a;
  --color-text: #4b5563;
  --color-accent: #6366f1;
  --color-bg: #ffffff;

  /* Spacing */
  --section-py: clamp(5rem, 10vw, 9rem);
  --container-max: 1200px;
  --nav-height-mobile: 60px;
  --nav-height-desktop: 72px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 60px rgba(0,0,0,0.12);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection {
  background: rgba(99, 102, 241, 0.15);
  color: var(--color-heading);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* ── CONTAINER ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--color-heading);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* ═══════════════════════════════════════════════════════════
   BLOG PAGE
   ═══════════════════════════════════════════════════════════ */

/* ── Blog Hero ── */
.blog-hero {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
  overflow: hidden;
  background: #fff;
}
.blog-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.blog-hero__glow--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
}
.blog-hero__glow--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.08) 0%, transparent 70%);
  top: 50px;
  right: -100px;
}

/* ── Blog Filters ── */
.blog-filters {
  padding: 0 0 2rem;
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: var(--nav-height-desktop);
  z-index: 90;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.92);
}
@media (max-width: 1024px) {
  .blog-filters {
    top: var(--nav-height-mobile);
  }
}
.blog-filters__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.blog-filters__tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.blog-filter-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-500);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.blog-filter-tag:hover {
  color: var(--color-heading);
  border-color: var(--gray-300);
  background: var(--gray-100);
}
.blog-filter-tag.is-active {
  color: #fff;
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.blog-filters__search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
  transition: border-color 0.2s;
  min-width: 220px;
}
.blog-filters__search:focus-within {
  border-color: var(--color-accent);
}
.blog-filters__search svg {
  flex-shrink: 0;
  color: var(--gray-400);
}
.blog-search-input {
  border: none;
  background: none;
  outline: none;
  font-size: 0.85rem;
  color: var(--color-heading);
  width: 100%;
  font-family: 'Inter', sans-serif;
}
.blog-search-input::placeholder {
  color: var(--gray-400);
}

/* ── Blog Featured ── */
.blog-featured {
  padding: 3rem 0;
  background: #fff;
}
.blog-featured__card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.blog-featured__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-300);
}
.blog-featured__image {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.blog-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-featured__card:hover .blog-featured__image img {
  transform: scale(1.05);
}
.blog-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}
.blog-featured__content {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-400);
}
.blog-featured__date,
.blog-featured__read {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.blog-featured__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.blog-featured__excerpt {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.65;
}
.blog-featured__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.blog-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.blog-author-avatar--sm {
  width: 30px;
  height: 30px;
  font-size: 0.6rem;
}
.blog-author-info {
  display: flex;
  flex-direction: column;
}
.blog-author-info strong {
  font-size: 0.85rem;
  color: var(--color-heading);
}
.blog-author-info span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ── Category badges ── */
.blog-cat-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.blog-cat-badge--indigo {
  background: rgba(99,102,241,0.9);
  color: #fff;
}
.blog-cat-badge--purple {
  background: rgba(168,85,247,0.9);
  color: #fff;
}
.blog-cat-badge--cyan {
  background: rgba(6,182,212,0.9);
  color: #fff;
}
.blog-cat-badge--emerald {
  background: rgba(16,185,129,0.9);
  color: #fff;
}
.blog-cat-badge--amber {
  background: rgba(245,158,11,0.9);
  color: #fff;
}
.blog-cat-badge--rose {
  background: rgba(244,63,94,0.9);
  color: #fff;
}

/* ── Blog Grid ── */
.blog-grid-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--gray-50);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.blog-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}
.blog-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--gray-400);
}
.blog-card__meta-dot {
  color: var(--gray-300);
}
.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.3;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}
.blog-card__author-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-600);
}

/* ── Blog No Results ── */
.blog-no-results {
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.blog-no-results h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-heading);
}
.blog-no-results p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ── Blog Newsletter ── */
.blog-newsletter {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
}
.blog-newsletter__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.blog-newsletter__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.blog-newsletter__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}
.blog-newsletter__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
}
.blog-newsletter__pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 800px;
  pointer-events: none;
}
.blog-newsletter__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.blog-newsletter__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}
.blog-newsletter__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.blog-newsletter__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.blog-newsletter__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.blog-newsletter__input-wrap {
  display: flex;
  width: 100%;
  max-width: 460px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  padding: 0.3rem;
  transition: border-color 0.2s;
}
.blog-newsletter__input-wrap:focus-within {
  border-color: rgba(255,255,255,0.3);
}
.blog-newsletter__input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  padding: 0.65rem 1.2rem;
  font-size: 0.9rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
}
.blog-newsletter__input::placeholder {
  color: rgba(255,255,255,0.35);
}
.blog-newsletter__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  background: #fff;
  color: var(--color-heading);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.blog-newsletter__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.2);
}
.blog-newsletter__hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ── Blog CTA Final ── */
.blog-cta-final {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #fff;
}
.blog-cta-final__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.blog-cta-final__inner h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.75rem;
}
.blog-cta-final__inner p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* ── Blog Responsive ── */
@media (max-width: 1024px) {
  .blog-featured__card {
    grid-template-columns: 1fr;
  }
  .blog-featured__image {
    min-height: 240px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-filters__bar {
    flex-direction: column;
    align-items: stretch;
  }
  .blog-filters__tags {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .blog-filters__tags::-webkit-scrollbar { display: none; }
  .blog-filters__search {
    min-width: 0;
  }
  .blog-newsletter__input-wrap {
    flex-direction: column;
    border-radius: var(--radius-lg);
    gap: 0.5rem;
    padding: 0.5rem;
  }
  .blog-newsletter__btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-nav.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height-desktop);
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-heading);
  z-index: 1002;
  flex-shrink: 0;
}
.nav-logo svg { flex-shrink: 0; }
.nav-logo__img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.3rem, 1.5vw, 1.2rem);
}

.nav-links > a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links > a:hover,
.nav-links > a.active {
  color: var(--color-accent);
}

/* Nav CTA buttons */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.btn--nav-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-full);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn--nav-ghost:hover { color: var(--color-heading); background: var(--gray-100); }

.btn--nav-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(99,102,241,0.25);
}
.btn--nav-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(99,102,241,0.3);
}

/* ── DESKTOP DROPDOWNS ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-dropdown__trigger:hover,
.nav-dropdown.is-open .nav-dropdown__trigger {
  color: var(--color-accent);
}

.nav-dropdown__chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.nav-dropdown.is-open .nav-dropdown__chevron {
  transform: rotate(180deg);
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
  overflow: hidden;
}
.nav-dropdown.is-open .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__panel--mega {
  width: clamp(700px, 75vw, 880px);
}
.nav-dropdown__panel--sm {
  width: 340px;
}

.nav-dropdown__content {
  padding: 0;
}

/* Mega product layout */
.mega-product-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 1.25rem;
}

.mega-product-cats__col {
  padding: 0 0.6rem;
}
.mega-product-cats__col:not(:last-child) {
  border-right: 1px solid var(--gray-100);
}

.mega-product-cats__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding: 0 0.5rem;
}

.mega-product-cats__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.mega-product-cats__icon--indigo { background: rgba(99,102,241,0.1); color: var(--indigo); }
.mega-product-cats__icon--cyan { background: rgba(6,182,212,0.1); color: var(--cyan); }
.mega-product-cats__icon--purple { background: rgba(168,85,247,0.1); color: var(--purple); }
.mega-product-cats__icon--amber { background: rgba(245,158,11,0.1); color: var(--amber); }

.mega-product-cats__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
}

.mega-product-cats__item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
  text-decoration: none;
  position: relative;
}
.mega-product-cats__item:hover {
  background: var(--gray-50);
}

.mega-product-cats__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.mega-product-cats__item-icon--indigo { background: rgba(99,102,241,0.08); color: var(--indigo); }
.mega-product-cats__item-icon--cyan { background: rgba(6,182,212,0.08); color: var(--cyan); }
.mega-product-cats__item-icon--purple { background: rgba(168,85,247,0.08); color: var(--purple); }
.mega-product-cats__item-icon--emerald { background: rgba(16,185,129,0.08); color: var(--emerald); }
.mega-product-cats__item-icon--amber { background: rgba(245,158,11,0.08); color: var(--amber); }
.mega-product-cats__item-icon--rose { background: rgba(244,63,94,0.08); color: var(--rose); }

.mega-product-cats__item-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.mega-product-cats__item-text strong {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega-product-cats__item-text span {
  font-size: 0.7rem;
  color: var(--gray-500);
  line-height: 1.3;
}

.mega-product-cats__badge {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-full);
  background: rgba(99,102,241,0.1);
  color: var(--indigo);
}
.mega-product-cats__badge--new {
  background: rgba(168,85,247,0.1);
  color: var(--purple);
}

/* Dropdown footer */
.nav-dropdown__footer {
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.nav-dropdown__footer-inner {
  padding: 0.85rem 1.25rem;
}
.nav-dropdown__promo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.nav-dropdown__promo-badge {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff;
}
.nav-dropdown__promo-text {
  font-size: 0.78rem;
  color: var(--gray-600);
  flex: 1;
}
.nav-dropdown__promo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--indigo);
  transition: gap 0.2s;
}
.nav-dropdown__promo-link:hover { gap: 0.5rem; }

/* Small dropdown */
.nav-dropdown__main--single {
  padding: 0.75rem;
}

.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.nav-dropdown__item:hover { background: var(--gray-50); }

.nav-dropdown__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.nav-dropdown__icon--indigo { background: rgba(99,102,241,0.08); color: var(--indigo); }
.nav-dropdown__icon--cyan { background: rgba(6,182,212,0.08); color: var(--cyan); }
.nav-dropdown__icon--purple { background: rgba(168,85,247,0.08); color: var(--purple); }
.nav-dropdown__icon--emerald { background: rgba(16,185,129,0.08); color: var(--emerald); }
.nav-dropdown__icon--amber { background: rgba(245,158,11,0.08); color: var(--amber); }

.nav-dropdown__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.nav-dropdown__text strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-heading);
}
.nav-dropdown__text span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ── MOBILE TOGGLE ── */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE OVERLAY ── */
.nav-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 1000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile-overlay__inner {
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-height-mobile) + 1.5rem) 1.5rem 2rem;
  gap: 0;
}

.nav-mobile-overlay__inner > a {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-heading);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
  min-height: 44px;
}
.nav-mobile-overlay__inner > a:hover,
.nav-mobile-overlay__inner > a.active {
  color: var(--color-accent);
}

/* Mobile accordions */
.nav-mobile-accordion {
  border-bottom: 1px solid var(--gray-100);
}
.nav-mobile-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-heading);
  background: none;
  border: none;
  cursor: pointer;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-accordion__trigger svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.nav-mobile-accordion.is-open .nav-mobile-accordion__trigger svg {
  transform: rotate(180deg);
}
.nav-mobile-accordion.is-open .nav-mobile-accordion__trigger {
  color: var(--color-accent);
}

.nav-mobile-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.nav-mobile-accordion.is-open .nav-mobile-accordion__panel {
  max-height: 800px;
}

.nav-mobile-accordion__panel-inner {
  padding: 0 0 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-acc-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  padding: 0.75rem 0 0.3rem;
}

.nav-mobile-accordion__panel-inner a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.15s;
  min-height: 40px;
}
.nav-mobile-accordion__panel-inner a:hover {
  color: var(--color-accent);
}
.nav-mobile-accordion__panel-inner a svg {
  flex-shrink: 0;
}

/* Mobile CTA */
.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

/* ── RESPONSIVE NAV ── */
@media (max-width: 1024px) {
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-mobile-toggle { display: flex; }
  .nav-container { height: var(--nav-height-mobile); padding: 0 1rem; }
  body { padding-top: var(--nav-height-mobile); }
}

@media (min-width: 1025px) {
  .nav-mobile-overlay { display: none !important; }
  .nav-mobile-toggle { display: none !important; }
  body { padding-top: var(--nav-height-desktop); }
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(99,102,241,0.25);
}
.btn--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--color-heading);
  border: 1.5px solid var(--gray-200);
}
.btn--ghost:hover {
  border-color: var(--gray-400);
  background: var(--gray-50);
}

.btn--white {
  background: #fff;
  color: var(--color-heading);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn--ghost-light:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS & TAGS
   ═══════════════════════════════════════════════════════════ */

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  background: rgba(99,102,241,0.06);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}
.section-tag--light {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
}
.section-tag--ai {
  color: var(--purple);
  background: rgba(168,85,247,0.06);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-heading);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — HERO
   ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-glow--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-glow--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.1) 0%, transparent 70%);
  top: 100px;
  right: -100px;
}

.hero-pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  height: auto;
  pointer-events: none;
  opacity: 0.5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.hero-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--color-heading);
}

.hero-title--gradient {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-500);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* ── Hero mockup ── */
.hero-mockup {
  max-width: 920px;
  margin: 0 auto;
  perspective: 1200px;
}

.hero-mockup__browser {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-dot--red { background: #ef4444; }
.browser-dot--yellow { background: #f59e0b; }
.browser-dot--green { background: #10b981; }

.browser-url {
  margin-left: 12px;
  font-size: 0.75rem;
  color: var(--gray-400);
  background: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  flex: 1;
  max-width: 300px;
}

.browser-content {
  padding: 0;
}

/* Dashboard mock */
.mock-dashboard {
  display: flex;
  min-height: 340px;
}

.mock-sidebar {
  width: 56px;
  background: var(--gray-900);
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.mock-sidebar__logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  margin-bottom: 0.5rem;
}
.mock-sidebar__item {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
}
.mock-sidebar__item--active {
  background: rgba(99,102,241,0.3);
}

.mock-main {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--gray-50);
}

.mock-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-topbar__title {
  width: 120px;
  height: 14px;
  background: var(--gray-300);
  border-radius: 4px;
}
.mock-topbar__actions {
  display: flex;
  gap: 0.5rem;
}
.mock-topbar__actions span {
  width: 60px;
  height: 28px;
  background: var(--gray-200);
  border-radius: 6px;
  display: block;
}

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

.mock-stat-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  border: 1px solid var(--gray-200);
}
.mock-stat-card__label {
  width: 60%;
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.mock-stat-card__value {
  width: 50%;
  height: 18px;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.mock-stat-card__value--blue { background: rgba(99,102,241,0.2); }
.mock-stat-card__value--green { background: rgba(16,185,129,0.2); }
.mock-stat-card__value--purple { background: rgba(168,85,247,0.2); }

.mock-stat-card__bar {
  height: 4px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
}
.mock-stat-card__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--indigo), var(--purple));
  border-radius: 4px;
}

.mock-chart {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1rem;
  border: 1px solid var(--gray-200);
}
.mock-chart__svg { width: 100%; height: auto; }

.mock-table {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.mock-table__row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 0.8fr;
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid var(--gray-100);
  gap: 0.5rem;
}
.mock-table__row:last-child { border-bottom: none; }
.mock-table__row--header { background: var(--gray-50); }
.mock-table__row span {
  display: block;
  height: 10px;
  background: var(--gray-200);
  border-radius: 4px;
}
.mock-badge {
  border-radius: var(--radius-full) !important;
  height: 10px !important;
}
.mock-badge--green { background: rgba(16,185,129,0.3) !important; }
.mock-badge--blue { background: rgba(99,102,241,0.3) !important; }
.mock-badge--yellow { background: rgba(245,158,11,0.3) !important; }

/* ═══════════════════════════════════════════════════════════
   LOGOS SECTION
   ═══════════════════════════════════════════════════════════ */

.logos-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.logos-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.logo-item {
  flex-shrink: 0;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}
.logo-item:hover {
  opacity: 0.7;
  filter: grayscale(0%);
}
.logo-item svg {
  width: 100px;
  height: 28px;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════
   SOLUTIONS GRID
   ═══════════════════════════════════════════════════════════ */

.solutions {
  padding: var(--section-py) 0;
}

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

.sol-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.sol-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.sol-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}
.sol-card--ventas .sol-card__icon { background: rgba(99,102,241,0.08); color: var(--indigo); }
.sol-card--telco .sol-card__icon { background: rgba(6,182,212,0.08); color: var(--cyan); }
.sol-card--rrhh .sol-card__icon { background: rgba(16,185,129,0.08); color: var(--emerald); }
.sol-card--brokers .sol-card__icon { background: rgba(245,158,11,0.08); color: var(--amber); }

.sol-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--color-heading);
}

.sol-card__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.sol-card__visual {
  margin-bottom: 1.25rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex: 1;
}

.sol-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}
.sol-card__link:hover { gap: 0.7rem; }

/* Mini pipeline visual */
.mini-pipeline {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}
.mini-pipeline__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mini-pipeline__label {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mini-pipeline__card {
  height: 24px;
  background: rgba(99,102,241,0.12);
  border-radius: 4px;
  border-left: 3px solid var(--indigo);
}
.mini-pipeline__card--won {
  background: rgba(16,185,129,0.12);
  border-color: var(--emerald);
}

/* Mini call visual */
.mini-call {
  background: var(--gray-900);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.mini-call__wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 0.75rem;
  height: 32px;
}
.mini-call__wave span {
  width: 3px;
  background: var(--cyan);
  border-radius: 2px;
  animation: wave-bar 1.2s ease-in-out infinite;
}
.mini-call__wave span:nth-child(1) { height: 40%; animation-delay: 0s; }
.mini-call__wave span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.mini-call__wave span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.mini-call__wave span:nth-child(4) { height: 60%; animation-delay: 0.3s; }
.mini-call__wave span:nth-child(5) { height: 85%; animation-delay: 0.4s; }
.mini-call__wave span:nth-child(6) { height: 50%; animation-delay: 0.5s; }
.mini-call__wave span:nth-child(7) { height: 90%; animation-delay: 0.6s; }
.mini-call__wave span:nth-child(8) { height: 35%; animation-delay: 0.7s; }

@keyframes wave-bar {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

.mini-call__info { display: flex; flex-direction: column; gap: 0.2rem; }
.mini-call__status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: var(--emerald);
  font-weight: 500;
}
.mini-call__number {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Mini schedule */
.mini-schedule {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mini-schedule__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mini-schedule__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mini-schedule__bar {
  height: 8px;
  border-radius: 4px;
}

/* Mini trade */
.mini-trade {
  background: var(--gray-900);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
}
.mini-trade__chart { width: 100%; height: auto; margin-bottom: 0.5rem; }
.mini-trade__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mini-trade__pair {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.mini-trade__value {
  font-size: 0.85rem;
  color: var(--emerald);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   DETAIL SECTIONS
   ═══════════════════════════════════════════════════════════ */

.detail-section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.detail-section--dark {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
}

.section-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.detail-layout--reverse {
  direction: rtl;
}
.detail-layout--reverse > * {
  direction: ltr;
}

.detail-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.detail-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.detail-section--dark .detail-title { color: #fff; }

.detail-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}
.detail-section--dark .detail-desc { color: rgba(255,255,255,0.55); }

.detail-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.detail-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.detail-features li svg { flex-shrink: 0; margin-top: 2px; }

.detail-section--dark .detail-features li { color: rgba(255,255,255,0.75); }
.detail-features--dark li { color: var(--color-text); }

.detail-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.detail-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   AI SECTION
   ═══════════════════════════════════════════════════════════ */

.ai-section {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
}

.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.ai-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.ai-orb {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-orb__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}
.ai-orb__ring--1 {
  width: 100%;
  height: 100%;
  border-color: rgba(168,85,247,0.15);
  animation: orb-spin 20s linear infinite;
}
.ai-orb__ring--2 {
  width: 75%;
  height: 75%;
  border-color: rgba(99,102,241,0.2);
  animation: orb-spin 15s linear infinite reverse;
}
.ai-orb__ring--3 {
  width: 50%;
  height: 50%;
  border-color: rgba(6,182,212,0.25);
  animation: orb-spin 10s linear infinite;
}

@keyframes orb-spin {
  to { transform: rotate(360deg); }
}

.ai-orb__core {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(168,85,247,0.3);
}

/* AI Chat */
.ai-chat-preview {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ai-chat__msg {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.ai-chat__msg--user { justify-content: flex-end; }

.ai-chat__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.ai-chat__text {
  display: inline-block;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  line-height: 1.45;
  max-width: 260px;
}

.ai-chat__msg--bot .ai-chat__text {
  background: var(--gray-50);
  color: var(--color-heading);
  border: 1px solid var(--gray-100);
}
.ai-chat__msg--user .ai-chat__text {
  background: var(--indigo);
  color: #fff;
}

.ai-chat__typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 2.5rem;
}
.ai-chat__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-300);
  animation: typing 1.4s ease-in-out infinite;
}
.ai-chat__typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-chat__typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
  30% { opacity: 1; transform: scale(1.1); }
}

.ai-text {
  display: flex;
  flex-direction: column;
}

.ai-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.ai-stat { display: flex; flex-direction: column; }
.ai-stat__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -0.03em;
}
.ai-stat__label {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════
   ECOSYSTEM SECTION
   ═══════════════════════════════════════════════════════════ */

.ecosystem {
  padding: var(--section-py) 0;
}

.ecosystem-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.eco-hub {
  position: relative;
  width: 400px;
  height: 400px;
}

.eco-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: #fff;
  box-shadow: 0 0 40px rgba(99,102,241,0.3);
  z-index: 2;
}
.eco-center span {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.eco-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}
.eco-node svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.eco-node span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-600);
}

.eco-node--1 { top: 20px; left: 50%; transform: translateX(-50%); }
.eco-node--2 { top: 50%; right: 10px; transform: translateY(-50%); }
.eco-node--3 { bottom: 20px; left: 50%; transform: translateX(-50%); }
.eco-node--4 { top: 50%; left: 10px; transform: translateY(-50%); }

.eco-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.eco-feature {
  text-align: center;
  padding: 1.5rem;
}
.eco-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(99,102,241,0.06);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.eco-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.eco-feature p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════════════════════ */

.stats-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-item__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-heading);
}
.stat-item__label {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIAL SECTION
   ═══════════════════════════════════════════════════════════ */

.testimonial-section {
  padding: var(--section-py) 0;
}

.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-quote {
  margin: 0 auto 1.5rem;
  color: var(--gray-300);
}

.testimonial-text {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--color-heading);
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.testimonial-author__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-author__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author__info {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.testimonial-author__info strong {
  font-size: 0.9rem;
  color: var(--color-heading);
}
.testimonial-author__info span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */

.cta-section {
  position: relative;
  padding: clamp(5rem, 12vw, 10rem) 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  text-align: center;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}

.cta-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.55);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT PAGE — HERO
   ═══════════════════════════════════════════════════════════ */

.prod-hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 5rem);
  text-align: center;
  overflow: hidden;
}

.prod-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.prod-hero__glow--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}
.prod-hero__glow--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
  top: 80px;
  right: -80px;
}

.prod-hero__gradient {
  display: inline;
}
.prod-hero__gradient--purple {
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.prod-hero__gradient--cyan {
  background: linear-gradient(135deg, var(--cyan), #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.prod-hero__gradient--emerald {
  background: linear-gradient(135deg, var(--emerald), #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.prod-hero__gradient--amber {
  background: linear-gradient(135deg, var(--amber), #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.prod-hero__gradient--rose {
  background: linear-gradient(135deg, var(--rose), #e11d48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prod-hero__visual {
  max-width: 800px;
  margin: 3rem auto 0;
}

/* ── Product Stats Strip ── */
.prod-stats-strip {
  padding: 2.5rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT FEATURES GRID
   ═══════════════════════════════════════════════════════════ */

.prod-features {
  padding: var(--section-py) 0;
}

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

.prod-feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.prod-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.prod-feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.prod-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}

.prod-feature-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT CTA
   ═══════════════════════════════════════════════════════════ */

.prod-cta {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════
   AI ASSISTANT PAGE — MOCK
   ═══════════════════════════════════════════════════════════ */

.prod-ai-mock {
  display: flex;
  min-height: 380px;
  background: var(--gray-50);
}

.prod-ai-mock__sidebar {
  width: 180px;
  background: #fff;
  border-right: 1px solid var(--gray-200);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-shrink: 0;
}
.prod-ai-mock__sidebar-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 0.3rem;
}
.prod-ai-mock__sidebar-item {
  font-size: 0.78rem;
  color: var(--gray-500);
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-sm);
  cursor: default;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prod-ai-mock__sidebar-item--active {
  background: rgba(168,85,247,0.08);
  color: var(--purple);
  font-weight: 600;
}

.prod-ai-mock__chat {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.prod-ai-mock__msg {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.prod-ai-mock__msg--user {
  justify-content: flex-end;
}

.prod-ai-mock__msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.prod-ai-mock__msg-bubble {
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 340px;
}
.prod-ai-mock__msg--bot .prod-ai-mock__msg-bubble {
  background: #fff;
  border: 1px solid var(--gray-200);
  color: var(--color-heading);
}
.prod-ai-mock__msg--user .prod-ai-mock__msg-bubble {
  background: var(--purple);
  color: #fff;
}

.prod-ai-mock__input {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* ═══════════════════════════════════════════════════════════
   AGENTS PAGE — MOCK
   ═══════════════════════════════════════════════════════════ */

.prod-agents-mock {
  padding: 1.25rem;
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.prod-agents-mock__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prod-agents-mock__header h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-heading);
}
.prod-agents-mock__live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--emerald);
  font-weight: 500;
}

.prod-agents-mock__grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.prod-agents-mock__card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
}
.prod-agents-mock__avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prod-agents-mock__info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.prod-agents-mock__info strong {
  font-size: 0.8rem;
  color: var(--color-heading);
}
.prod-agents-mock__info span {
  font-size: 0.7rem;
  color: var(--gray-500);
}
.prod-agents-mock__status {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}
.prod-agents-mock__status--active {
  background: rgba(16,185,129,0.1);
  color: var(--emerald);
}

.prod-agents-mock__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.prod-agents-mock__stat {
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
}
.prod-agents-mock__stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-heading);
  display: block;
}
.prod-agents-mock__stat-label {
  font-size: 0.65rem;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════
   CALL CENTER PAGE
   ═══════════════════════════════════════════════════════════ */

/* CC Hero */
.cc-hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 5rem);
  text-align: center;
  overflow: hidden;
}
.cc-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.cc-hero__glow--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}
.cc-hero__glow--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
  top: 80px;
  right: -80px;
}
.cc-hero__gradient {
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cc-hero__visual {
  max-width: 850px;
  margin: 3rem auto 0;
}

/* CC Stats */
.cc-stats-strip {
  padding: 2.5rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

/* CC Features */
.cc-features {
  padding: var(--section-py) 0;
}

/* CC Mock dashboard */
.cc-mock {
  display: flex;
  min-height: 340px;
  background: var(--gray-50);
}
.cc-mock__sidebar {
  width: 48px;
  background: var(--gray-900);
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cc-mock__sidebar-logo {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  margin-bottom: 0.5rem;
}
.cc-mock__sidebar-item {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
}
.cc-mock__sidebar-item--active {
  background: rgba(6,182,212,0.2);
  color: var(--cyan);
}

.cc-mock__main {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cc-mock__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cc-mock__header-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-heading);
}
.cc-mock__header-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: var(--emerald);
  font-weight: 500;
}

.cc-mock__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.cc-mock__metric {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  border: 1px solid var(--gray-200);
}
.cc-mock__metric-label {
  font-size: 0.6rem;
  color: var(--gray-400);
  display: block;
  margin-bottom: 0.2rem;
}
.cc-mock__metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
}
.cc-mock__metric-value--cyan { color: var(--cyan); }
.cc-mock__metric-value--green { color: var(--emerald); }
.cc-mock__metric-value--purple { color: var(--purple); }
.cc-mock__metric-value--amber { color: var(--amber); }

.cc-mock__metric-bar {
  height: 3px;
  background: var(--gray-100);
  border-radius: 2px;
  overflow: hidden;
}
.cc-mock__metric-bar span {
  display: block;
  height: 100%;
  background: var(--cyan);
  border-radius: 2px;
}
.cc-mock__metric-bar--green span { background: var(--emerald); }
.cc-mock__metric-bar--purple span { background: var(--purple); }
.cc-mock__metric-bar--amber span { background: var(--amber); }

.cc-mock__agents {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.cc-mock__agent-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 0.8fr 1fr;
  padding: 0.45rem 0.7rem;
  font-size: 0.7rem;
  border-bottom: 1px solid var(--gray-100);
  align-items: center;
  color: var(--gray-600);
}
.cc-mock__agent-row:last-child { border-bottom: none; }
.cc-mock__agent-row--header {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 0.04em;
}

.cc-mock__agent-name {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--color-heading);
}
.cc-mock__agent-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cc-mock__agent-status {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
  display: inline-block;
  width: fit-content;
}
.cc-mock__agent-status--call { background: rgba(6,182,212,0.1); color: var(--cyan); }
.cc-mock__agent-status--ready { background: rgba(16,185,129,0.1); color: var(--emerald); }
.cc-mock__agent-status--wrap { background: rgba(245,158,11,0.1); color: var(--amber); }

/* CC Bento grid */
.cc-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 1.25rem;
}

.cc-bento__card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.cc-bento__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.cc-bento__card--large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
}
.cc-bento__card--large .cc-bento__card-content {
  display: flex;
  flex-direction: column;
}

.cc-bento__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cc-bento__icon--cyan { background: rgba(6,182,212,0.1); color: var(--cyan); }
.cc-bento__icon--indigo { background: rgba(99,102,241,0.1); color: var(--indigo); }
.cc-bento__icon--purple { background: rgba(168,85,247,0.1); color: var(--purple); }
.cc-bento__icon--emerald { background: rgba(16,185,129,0.1); color: var(--emerald); }
.cc-bento__icon--amber { background: rgba(245,158,11,0.1); color: var(--amber); }
.cc-bento__icon--rose { background: rgba(244,63,94,0.1); color: var(--rose); }

.cc-bento__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}
.cc-bento__card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* CC Bento visuals */
.cc-bento__visual {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Dialer visual */
.cc-dialer-visual {
  padding: 0.85rem;
  width: 100%;
}
.cc-dialer-visual__queue {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cc-dialer-visual__call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
}
.cc-dialer-visual__call--active {
  background: rgba(6,182,212,0.08);
  color: var(--color-heading);
  border: 1px solid rgba(6,182,212,0.2);
}
.cc-dialer-visual__call--ringing {
  background: rgba(245,158,11,0.06);
  color: var(--gray-600);
  border: 1px solid rgba(245,158,11,0.15);
}
.cc-dialer-visual__call--queued {
  background: var(--gray-100);
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
}
.cc-dialer-visual__timer {
  margin-left: auto;
  font-family: 'Space Grotesk', monospace;
  font-weight: 600;
  color: var(--cyan);
}
.cc-dialer-visual__status {
  margin-left: auto;
  font-size: 0.65rem;
  color: var(--gray-400);
}
.cc-dialer-visual__ring-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse-dot 1s ease-in-out infinite;
}

/* Mini wave */
.cc-bento__mini-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 1rem;
  height: 28px;
}
.cc-bento__mini-wave span {
  width: 3px;
  background: var(--indigo);
  border-radius: 2px;
  animation: wave-bar 1.2s ease-in-out infinite;
}
.cc-bento__mini-wave span:nth-child(1) { height: 30%; animation-delay: 0s; }
.cc-bento__mini-wave span:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.cc-bento__mini-wave span:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.cc-bento__mini-wave span:nth-child(4) { height: 50%; animation-delay: 0.3s; }
.cc-bento__mini-wave span:nth-child(5) { height: 75%; animation-delay: 0.4s; }
.cc-bento__mini-wave span:nth-child(6) { height: 40%; animation-delay: 0.5s; }
.cc-bento__mini-wave span:nth-child(7) { height: 85%; animation-delay: 0.6s; }
.cc-bento__mini-wave span:nth-child(8) { height: 35%; animation-delay: 0.7s; }
.cc-bento__mini-wave span:nth-child(9) { height: 65%; animation-delay: 0.8s; }
.cc-bento__mini-wave span:nth-child(10) { height: 45%; animation-delay: 0.9s; }

/* Flags */
.cc-bento__flags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.cc-bento__flags span {
  font-size: 1.25rem;
}
.cc-bento__flags span:last-child {
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 600;
  background: var(--gray-100);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
}

/* CC AI Chat */
.cc-ai-chat {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.cc-ai-chat__msg {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}
.cc-ai-chat__msg--user { justify-content: flex-end; }
.cc-ai-chat__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.cc-ai-chat__text {
  display: inline-block;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  line-height: 1.4;
  max-width: 220px;
}
.cc-ai-chat__msg--bot .cc-ai-chat__text {
  background: #fff;
  border: 1px solid var(--gray-200);
  color: var(--color-heading);
}
.cc-ai-chat__msg--user .cc-ai-chat__text {
  background: var(--indigo);
  color: #fff;
}

/* CC Workflow */
.cc-workflow {
  position: relative;
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
}
.cc-workflow__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.cc-workflow__step {
  flex: 1;
  text-align: center;
  max-width: 200px;
}
.cc-workflow__step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
.cc-workflow__step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.2);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.cc-workflow__step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.cc-workflow__step p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.cc-workflow__connector {
  display: flex;
  align-items: center;
  padding-top: 3rem;
  flex-shrink: 0;
}

/* CC Benefits */
.cc-benefits {
  padding: var(--section-py) 0;
}

.cc-benefit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 4rem;
}
.cc-benefit:last-child { margin-bottom: 0; }
.cc-benefit--reverse { direction: rtl; }
.cc-benefit--reverse > * { direction: ltr; }

.cc-benefit__text {
  display: flex;
  flex-direction: column;
}
.cc-benefit__visual .detail-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cc-benefit__visual .detail-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* CC Integrations */
.cc-integrations {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.cc-integrations__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.cc-integration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 1rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.cc-integration:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.cc-integration__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
}
.cc-integration span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-heading);
}

/* ═══════════════════════════════════════════════════════════
   PARTNERS PAGE
   ═══════════════════════════════════════════════════════════ */

/* PTR Hero */
.ptr-hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 5rem);
  text-align: center;
  overflow: hidden;
}
.ptr-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.ptr-hero__glow--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}
.ptr-hero__glow--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
  top: 80px;
  right: -80px;
}
.ptr-hero__gradient {
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ptr-hero__visual {
  max-width: 650px;
  margin: 3rem auto 0;
}

/* Partner Network */
.ptr-network {
  position: relative;
  width: 100%;
  height: 320px;
}
.ptr-network__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-heading);
}
.ptr-network__lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.ptr-network__node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
}
.ptr-network__node--1 { top: 5%; left: 5%; }
.ptr-network__node--2 { top: 5%; right: 5%; }
.ptr-network__node--3 { bottom: 5%; left: 5%; }
.ptr-network__node--4 { bottom: 5%; right: 5%; }
.ptr-network__node--5 { top: 50%; left: 0; transform: translateY(-50%); }
.ptr-network__node--6 { top: 50%; right: 0; transform: translateY(-50%); }

/* PTR Stats */
.ptr-stats-strip {
  padding: 2.5rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

/* PTR Benefits */
.ptr-benefits {
  padding: var(--section-py) 0;
}
.ptr-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ptr-benefit-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.ptr-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.ptr-benefit-card--highlight {
  background: linear-gradient(135deg, rgba(168,85,247,0.03), rgba(99,102,241,0.03));
  border-color: rgba(168,85,247,0.15);
}
.ptr-benefit-card--highlight:hover {
  border-color: rgba(168,85,247,0.3);
}

.ptr-benefit-card__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--indigo));
}

.ptr-benefit-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.ptr-benefit-card__icon--purple { background: rgba(168,85,247,0.1); color: var(--purple); }
.ptr-benefit-card__icon--indigo { background: rgba(99,102,241,0.1); color: var(--indigo); }
.ptr-benefit-card__icon--cyan { background: rgba(6,182,212,0.1); color: var(--cyan); }
.ptr-benefit-card__icon--emerald { background: rgba(16,185,129,0.1); color: var(--emerald); }
.ptr-benefit-card__icon--amber { background: rgba(245,158,11,0.1); color: var(--amber); }
.ptr-benefit-card__icon--rose { background: rgba(244,63,94,0.1); color: var(--rose); }

.ptr-benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}
.ptr-benefit-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* PTR Types */
.ptr-types {
  position: relative;
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
}
.ptr-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.ptr-type-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
}
.ptr-type-card:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}

.ptr-type-card--featured {
  border-color: rgba(168,85,247,0.3);
  background: rgba(168,85,247,0.06);
}
.ptr-type-card--featured:hover {
  border-color: rgba(168,85,247,0.5);
}

.ptr-type-card__badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.ptr-type-card__tier {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}

.ptr-type-card__icon {
  margin-bottom: 1rem;
}

.ptr-type-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.ptr-type-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.ptr-type-card__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.ptr-type-card__perks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.ptr-type-card__perks li svg { flex-shrink: 0; }

/* PTR How it works */
.ptr-how {
  padding: var(--section-py) 0;
}
.ptr-how__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.ptr-how__step {
  flex: 1;
  text-align: center;
  max-width: 200px;
}
.ptr-how__step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 0.5rem;
}
.ptr-how__step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.15);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.ptr-how__step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.4rem;
}
.ptr-how__step p {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
}
.ptr-how__connector {
  display: flex;
  align-items: center;
  padding-top: 3rem;
  flex-shrink: 0;
}

/* PTR FAQ */
.ptr-faq {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.ptr-faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ptr-faq__item {
  border-bottom: 1px solid var(--gray-200);
}
.ptr-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading);
  cursor: pointer;
  background: none;
  border: none;
  gap: 1rem;
}
.ptr-faq__question span { flex: 1; }
.ptr-faq__question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gray-400);
}
.ptr-faq__item.is-open .ptr-faq__question svg {
  transform: rotate(45deg);
  color: var(--purple);
}
.ptr-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.ptr-faq__item.is-open .ptr-faq__answer {
  max-height: 300px;
}
.ptr-faq__answer p {
  padding: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* PTR CTA */
.ptr-cta {
  position: relative;
  padding: clamp(5rem, 12vw, 10rem) 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════
   CASOS DE ÉXITO PAGE
   ═══════════════════════════════════════════════════════════ */

/* CE Hero */
.ce-hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 5rem);
  text-align: center;
  overflow: hidden;
}
.ce-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.ce-hero__glow--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}
.ce-hero__glow--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(168,85,247,0.1) 0%, transparent 70%);
  top: 80px;
  right: -80px;
}

/* CE Logos */
.ce-logos {
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.ce-logos__label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.ce-logos__strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}
.ce-logos__item {
  flex-shrink: 0;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}
.ce-logos__item:hover {
  opacity: 0.7;
  filter: grayscale(0%);
}
.ce-logos__item svg {
  width: 110px;
  height: 32px;
  color: var(--gray-500);
}

/* CE Case Sections */
.ce-case {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.ce-case--dark {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
}
.ce-case--alt {
  background: var(--gray-50);
}

.ce-case__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.ce-case__layout--reverse {
  direction: rtl;
}
.ce-case__layout--reverse > * {
  direction: ltr;
}

.ce-case__text {
  display: flex;
  flex-direction: column;
}

.ce-case__visual .detail-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.ce-case__visual .detail-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

.ce-case__metrics {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.ce-case__metric {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.ce-case__metric-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.ce-case__metric-label {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* CE Testimonials */
.ce-testimonials {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.ce-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ce-testimonial-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ce-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.ce-testimonial-card__quote {
  flex-shrink: 0;
}

.ce-testimonial-card__text {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--color-heading);
  flex: 1;
}

.ce-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}
.ce-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.ce-testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ce-testimonial-card__info {
  display: flex;
  flex-direction: column;
}
.ce-testimonial-card__info strong {
  font-size: 0.85rem;
  color: var(--color-heading);
}
.ce-testimonial-card__info span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* CE CTA */
.ce-cta {
  position: relative;
  padding: clamp(5rem, 12vw, 10rem) 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  text-align: center;
  overflow: hidden;
}

/* CE Responsive */
@media (max-width: 1024px) {
  .ce-case__layout,
  .ce-case__layout--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .ce-case__layout--reverse > * {
    direction: ltr;
  }
  .ce-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ce-case__metrics {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   CASOS DE ÉXITO V2 — REDESIGNED
   ═══════════════════════════════════════════════════════════ */

/* ── CE Hero V2 — Immersive Dark ── */
.ce-hero-v2 {
  position: relative;
  padding: clamp(6rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 7rem);
  background: #050510;
  overflow: hidden;
  text-align: center;
}
.ce-hero-v2__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ce-hero-v2__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.ce-hero-v2__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
  top: -15%; left: 25%;
}
.ce-hero-v2__orb--2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 70%);
  bottom: -10%; right: 15%;
}
.ce-hero-v2__orb--3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
  top: 40%; left: -5%;
}
.ce-hero-v2__grid-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.ce-hero-v2__content {
  position: relative;
  z-index: 2;
}
.ce-hero-v2__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.ce-hero-v2__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(16,185,129,0.5);
}
.ce-hero-v2__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}
.ce-hero-v2__title span {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
}
.ce-hero-v2__title--gradient {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 40%, #22d3ee 80%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: ix-gradient-shift 8s ease-in-out infinite;
}
.ce-hero-v2__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.45);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.ce-hero-v2__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Floating metric cards on hero */
.ce-hero-v2__metrics-float {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ce-hero-v2__metric-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  animation: ix-float 6s ease-in-out infinite;
}
.ce-hero-v2__metric-card--1 { animation-delay: 0s; }
.ce-hero-v2__metric-card--2 { animation-delay: 2s; }
.ce-hero-v2__metric-card--3 { animation-delay: 4s; }

.ce-hero-v2__metric-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ce-hero-v2__metric-card strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: block;
}
.ce-hero-v2__metric-card span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

/* ── CE Logos V2 ── */
.ce-logos-v2 {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.ce-logos-v2__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.ce-logos-v2__strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  flex-wrap: wrap;
}
.ce-logos-v2__item {
  flex-shrink: 0;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}
.ce-logos-v2__item:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}
.ce-logos-v2__item svg {
  height: 36px;
  color: var(--gray-500);
}

/* ── CE Case V2 — Case Study Sections ── */
.ce-case-v2 {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.ce-case-v2--dark {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
}
.ce-case-v2--gradient2 {
  background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f1a2e 100%);
}

.ce-case-v2__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.ce-case-v2__layout--reverse {
  direction: rtl;
}
.ce-case-v2__layout--reverse > * {
  direction: ltr;
}

.ce-case-v2__text {
  display: flex;
  flex-direction: column;
}

.ce-case-v2__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-heading);
  margin-bottom: 1rem;
}

.ce-case-v2__desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.ce-case-v2__metrics {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.ce-case-v2__metric {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.ce-case-v2__metric-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.ce-case-v2__metric-label {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.ce-case-v2__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ce-case-v2__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text);
}
.ce-case-v2__features li svg { flex-shrink: 0; margin-top: 2px; }

/* Visual side */
.ce-case-v2__visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ce-case-v2__mockup {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
}
.ce-case-v2__mockup--dark {
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 8px 20px rgba(0,0,0,0.2);
}
.ce-case-v2__mockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating inline quote */
.ce-case-v2__quote-float {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--indigo);
}
.ce-case-v2__quote-float p {
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--gray-600);
}
.ce-case-v2__quote-float strong {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 600;
}
.ce-case-v2__quote-float--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  border-left-color: var(--emerald);
}
.ce-case-v2__quote-float--dark p {
  color: rgba(255,255,255,0.6);
}
.ce-case-v2__quote-float--dark strong {
  color: rgba(255,255,255,0.35);
}

/* ── Results Strip ── */
.ce-results-strip {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.ce-results-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.ce-results-strip__card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ce-results-strip__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ce-results-strip__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.ce-results-strip__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-heading);
  display: block;
  margin-bottom: 0.3rem;
}
.ce-results-strip__label {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ── Testimonials V2 ── */
.ce-testimonials-v2 {
  padding: var(--section-py) 0;
}
.ce-testimonials-v2__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.ce-testimonial-v2 {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.ce-testimonial-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.ce-testimonial-v2__stars {
  font-size: 0.9rem;
  color: var(--amber);
  letter-spacing: 2px;
}
.ce-testimonial-v2__text {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--color-heading);
  flex: 1;
}
.ce-testimonial-v2__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}
.ce-testimonial-v2__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.ce-testimonial-v2__author strong {
  font-size: 0.85rem;
  color: var(--color-heading);
  display: block;
}
.ce-testimonial-v2__author span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ── CE CTA V2 ── */
.ce-cta-v2 {
  position: relative;
  padding: clamp(5rem, 12vw, 10rem) 0;
  background: #050510;
  text-align: center;
  overflow: hidden;
}
.ce-cta-v2__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ce-cta-v2__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.ce-cta-v2__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  top: -20%; left: 30%;
}
.ce-cta-v2__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.12) 0%, transparent 70%);
  bottom: -15%; right: 20%;
}
.ce-cta-v2__content {
  position: relative;
  z-index: 2;
}
.ce-cta-v2__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}
.ce-cta-v2__desc {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: rgba(255,255,255,0.45);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.ce-cta-v2__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.ce-cta-v2__note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── CE V2 Responsive ── */
@media (max-width: 1024px) {
  .ce-case-v2__layout,
  .ce-case-v2__layout--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .ce-case-v2__layout--reverse > * {
    direction: ltr;
  }
  .ce-results-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ce-testimonials-v2__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ce-hero-v2 {
    padding: clamp(5rem, 10vw, 8rem) 0 3rem;
  }
  .ce-hero-v2__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .ce-hero-v2__metrics-float {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .ce-case-v2__metrics {
    flex-direction: column;
    gap: 1rem;
  }
  .ce-results-strip__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .ce-cta-v2__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .ce-results-strip__grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   VENTAS / CONTACTOS PAGE (vta- prefix)
   ═══════════════════════════════════════════════════════════ */

/* ── VTA HERO — Dark Immersive ── */
.vta-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #050510;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
}
.vta-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.vta-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.vta-hero__orb--1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
  top: -15%; left: 20%;
  animation: ix-float-orb 20s ease-in-out infinite;
}
.vta-hero__orb--2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(168,85,247,0.13) 0%, transparent 70%);
  bottom: -10%; right: 10%;
  animation: ix-float-orb 25s ease-in-out infinite reverse;
}
.vta-hero__orb--3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
  top: 50%; left: -8%;
  animation: ix-float-orb 22s ease-in-out infinite 3s;
}
.vta-hero__grid-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.vta-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.vta-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.vta-hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--indigo);
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(99,102,241,0.5);
}
.vta-hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}
.vta-hero__title-line {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: #fff;
}
.vta-hero__title-line:last-child {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 40%, #22d3ee 80%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: ix-gradient-shift 8s ease-in-out infinite;
}
.vta-hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: rgba(255,255,255,0.45);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.vta-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.vta-hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.vta-hero__trust span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

/* VTA Hero Browser */
.vta-hero__visual {
  max-width: 700px;
  margin: 0 auto;
  perspective: 1200px;
}
.vta-hero__browser {
  background: rgba(15,15,30,0.85);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.vta-hero__browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vta-hero__browser-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.vta-hero__browser-url {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.06);
}
.vta-hero__browser-body {
  padding: 1rem;
}

/* VTA Mock Panel */
.vta-mock-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.vta-mock-panel__title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}
.vta-mock-panel__date {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
}
.vta-mock-panel__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.vta-mock-kpi {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 0.6rem;
}
.vta-mock-kpi__val {
  font-family: 'Space Grotesk', monospace;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.15rem;
}
.vta-mock-kpi__label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 0.35rem;
}
.vta-mock-kpi__bar {
  height: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
}
.vta-mock-kpi__bar span {
  display: block;
  height: 100%;
  border-radius: 2px;
}
.vta-mock-panel__chart {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
}
.vta-mock-panel__chart svg { width: 100%; height: auto; }

/* ── VTA Pain Points ── */
.vta-pain {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.vta-pain__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.vta-pain__card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.vta-pain__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.vta-pain__emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.vta-pain__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}
.vta-pain__card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ── VTA Solution Sections ── */
.vta-solution {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.vta-solution--dark {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
}
.vta-solution--dark-alt {
  background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f1a2e 100%);
}
.vta-solution__pattern {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* VTA Feature layout */
.vta-feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.vta-feature--reverse {
  direction: rtl;
}
.vta-feature--reverse > * {
  direction: ltr;
}
.vta-feature__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 0.5rem;
  display: block;
}
.vta-feature__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-heading);
  margin-bottom: 1rem;
}
.vta-feature__desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.vta-feature__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.vta-feature__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text);
}
.vta-feature__list li svg { flex-shrink: 0; margin-top: 2px; }
.vta-feature__list--dark li { color: rgba(255,255,255,0.7); }

/* ── VTA Pipeline Mock ── */
.vta-pipeline-mock {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.vta-pipeline-mock__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
}
.vta-pipeline-mock__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-heading);
}
.vta-pipeline-mock__filters {
  display: flex;
  gap: 0.4rem;
}
.vta-pipeline-mock__filter {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  color: var(--gray-500);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.vta-pipeline-mock__filter--active {
  background: var(--indigo);
  color: #fff;
  border-color: var(--indigo);
}
.vta-pipeline-mock__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0.75rem;
  min-height: 200px;
}
.vta-pipeline-mock__col {
  padding: 0 0.4rem;
}
.vta-pipeline-mock__col:not(:last-child) {
  border-right: 1px dashed var(--gray-200);
}
.vta-pipeline-mock__col-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--indigo);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-heading);
}
.vta-pipeline-mock__count {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
  font-size: 0.6rem;
  font-weight: 700;
}
.vta-pipeline-mock__card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.55rem;
  margin-bottom: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.vta-pipeline-mock__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.vta-pipeline-mock__card strong {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-heading);
}
.vta-pipeline-mock__card > span {
  font-size: 0.62rem;
  color: var(--gray-500);
}
.vta-pipeline-mock__val {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--indigo) !important;
  margin-top: 0.15rem;
}
.vta-pipeline-mock__card--won {
  border-color: rgba(16,185,129,0.25);
  background: rgba(16,185,129,0.04);
}
.vta-pipeline-mock__card--won .vta-pipeline-mock__val {
  color: var(--emerald) !important;
}

/* ── VTA Automation Mock ── */
.vta-auto-mock {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(16px);
}
.vta-auto-mock__trigger {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
}
.vta-auto-mock__trigger-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}
.vta-auto-mock__trigger-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}
.vta-auto-mock__line {
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, rgba(6,182,212,0.4), rgba(6,182,212,0.1));
  margin: 0 auto;
}
.vta-auto-mock__steps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.vta-auto-mock__step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.vta-auto-mock__step:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
}
.vta-auto-mock__step-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* ── VTA Chat Mock ── */
.vta-chat-mock {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.vta-chat-mock__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
}
.vta-chat-mock__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vta-chat-mock__header div {
  display: flex;
  flex-direction: column;
}
.vta-chat-mock__header strong {
  font-size: 0.82rem;
  color: var(--color-heading);
}
.vta-chat-mock__header span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  color: var(--emerald);
  font-weight: 500;
}
.vta-chat-mock__body {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 340px;
  overflow-y: auto;
}
.vta-chat-mock__msg {
  display: flex;
}
.vta-chat-mock__msg--user {
  justify-content: flex-end;
}
.vta-chat-mock__msg span {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 300px;
}
.vta-chat-mock__msg--user span {
  background: var(--indigo);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.vta-chat-mock__msg--bot span {
  background: var(--gray-50);
  color: var(--color-heading);
  border: 1px solid var(--gray-100);
  border-bottom-left-radius: 4px;
}

/* ── VTA Report Mock ── */
.vta-report-mock {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(16px);
}
.vta-report-mock__main-stat {
  margin-bottom: 1.25rem;
}
.vta-report-mock__label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 0.3rem;
}
.vta-report-mock__big-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 0.4rem;
}
.vta-report-mock__change {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.vta-report-mock__progress {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}
.vta-report-mock__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--indigo), var(--purple));
  border-radius: 3px;
}
.vta-report-mock__meta {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
}
.vta-report-mock__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.vta-report-mock__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.vta-report-mock__card-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 0.5rem;
}
.vta-report-mock__card-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vta-report-mock__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.vta-report-mock__card-row strong {
  font-size: 0.78rem;
  color: #fff;
  display: block;
}
.vta-report-mock__card-row span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
}
.vta-report-mock__card-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  display: block;
  letter-spacing: -0.03em;
}
.vta-report-mock__card-change {
  font-size: 0.72rem;
  color: var(--emerald);
  font-weight: 600;
}

/* ── VTA More Features Grid ── */
.vta-more {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.vta-more__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.vta-more__card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.vta-more__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.vta-more__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.vta-more__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}
.vta-more__card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ── VTA Responsive ── */
@media (max-width: 1024px) {
  .vta-feature,
  .vta-feature--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .vta-feature--reverse > * { direction: ltr; }
  .vta-pain__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vta-more__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vta-pipeline-mock__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vta-hero {
    padding: clamp(5rem, 10vw, 8rem) 0 3rem;
  }
  .vta-hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .vta-hero__trust {
    flex-direction: column;
    gap: 0.5rem;
  }
  .vta-pain__grid {
    grid-template-columns: 1fr;
  }
  .vta-more__grid {
    grid-template-columns: 1fr;
  }
  .vta-pipeline-mock__cols {
    grid-template-columns: 1fr;
  }
  .vta-pipeline-mock__col:not(:last-child) {
    border-right: none;
    border-bottom: 1px dashed var(--gray-200);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .vta-mock-panel__kpis {
    grid-template-columns: 1fr;
  }
  .vta-report-mock__row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.site-footer {
  padding: 4rem 0 2rem;
  background: var(--gray-900);
  color: rgba(255,255,255,0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-logo__img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-col__desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.footer-col__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom__links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom__links a {
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-bottom__links a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .detail-layout,
  .detail-layout--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .detail-layout--reverse > * { direction: ltr; }

  .ai-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ai-visual { order: -1; }
  .ai-stats { justify-content: center; }
  .ai-text { align-items: center; }

  .eco-features {
    grid-template-columns: 1fr;
  }

  .prod-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-bento {
    grid-template-columns: 1fr;
  }
  .cc-bento__card--large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .cc-benefit,
  .cc-benefit--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .cc-benefit--reverse > * { direction: ltr; }

  .cc-integrations__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ptr-benefits__grid,
  .ptr-types__grid {
    grid-template-columns: 1fr;
  }

  .cc-workflow__steps,
  .ptr-how__steps {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .cc-workflow__connector,
  .ptr-how__connector {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .prod-features__grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .cc-mock__metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-integrations__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eco-hub {
    width: 300px;
    height: 300px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

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

  .prod-agents-mock__stats {
    grid-template-columns: 1fr;
  }

  .cc-mock {
    flex-direction: column;
  }
  .cc-mock__sidebar {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    padding: 0.5rem;
  }

  .ptr-network {
    height: 250px;
  }
  .ptr-network__node {
    font-size: 0.6rem;
    padding: 0.3rem 0.5rem;
  }

  .prod-ai-mock {
    flex-direction: column;
  }
  .prod-ai-mock__sidebar {
    width: 100%;
    flex-direction: row;
    gap: 0.3rem;
    overflow-x: auto;
    padding: 0.5rem;
  }
  .prod-ai-mock__sidebar-title {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTION DIVIDERS
   ═══════════════════════════════════════════════════════════ */

.detail-section + .detail-section,
.detail-section + .ai-section {
  border-top: none;
}

/* Gradient line divider */
.solutions::after,
.ecosystem::after {
  content: '';
  display: block;
  height: 1px;
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

/* ═══════════════════════════════════════════════════════════
   INDEX — IMMERSIVE REDESIGN (ix- prefix)
   ═══════════════════════════════════════════════════════════ */

/* ── IX SHARED ── */
.ix-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-accent);
  background: rgba(99,102,241,.06);
  padding: .35rem .9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}
.ix-tag--light {
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
}

.ix-section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.ix-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.08;
  color: var(--color-heading);
  margin-bottom: 1rem;
}

.ix-section-desc {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── IX BUTTONS ── */
.ix-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  padding: .75rem 1.6rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  line-height: 1.4;
  border: none;
  cursor: pointer;
}
.ix-btn--primary {
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  color: #fff;
  box-shadow: 0 2px 16px rgba(99,102,241,.35), inset 0 1px 0 rgba(255,255,255,.15);
}
.ix-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99,102,241,.4), inset 0 1px 0 rgba(255,255,255,.2);
}
.ix-btn--ghost {
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.12);
}
.ix-btn--ghost:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}
.ix-btn--white {
  background: #fff;
  color: var(--color-heading);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.ix-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.ix-btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.15);
}
.ix-btn--ghost-light:hover {
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
}

/* ══════════════ IX HERO ══════════════ */
.ix-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #050510;
  overflow: hidden;
  padding: clamp(6rem,12vw,10rem) 0 clamp(3rem,6vw,5rem);
}

/* ── White variant ── */
.ix-hero--white {
  background: #ffffff;
}

.ix-hero__canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.ix-hero__gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}
.ix-hero__gradient-orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,.2) 0%, transparent 70%);
  top: -20%; left: 30%;
  animation: ix-float-orb 20s ease-in-out infinite;
}
.ix-hero__gradient-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,.15) 0%, transparent 70%);
  top: 40%; right: -10%;
  animation: ix-float-orb 25s ease-in-out infinite reverse;
}
.ix-hero__gradient-orb--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,.12) 0%, transparent 70%);
  bottom: -10%; left: -5%;
  animation: ix-float-orb 22s ease-in-out infinite 5s;
}

/* White hero orbs — softer, lighter */
.ix-hero--white .ix-hero__gradient-orb--1 {
  background: radial-gradient(circle, rgba(99,102,241,.08) 0%, transparent 70%);
  width: 800px; height: 800px;
  top: -25%; left: 20%;
}
.ix-hero--white .ix-hero__gradient-orb--2 {
  background: radial-gradient(circle, rgba(168,85,247,.06) 0%, transparent 70%);
  width: 600px; height: 600px;
}
.ix-hero--white .ix-hero__gradient-orb--3 {
  background: radial-gradient(circle, rgba(6,182,212,.05) 0%, transparent 70%);
  width: 500px; height: 500px;
}

@keyframes ix-float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(.95); }
}

.ix-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.ix-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  padding: .4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
}
/* White hero badge */
.ix-hero__badge--light {
  color: var(--gray-600);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  backdrop-filter: blur(8px);
}
.ix-hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(16,185,129,.5);
}

.ix-hero__title {
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}
.ix-hero__title-line {
  display: block;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.05;
  color: #fff;
}
.ix-hero__title-line--dark {
  color: var(--color-heading);
}
.ix-hero__title-line--gradient {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 35%, #06b6d4 70%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: ix-gradient-shift 8s ease-in-out infinite;
}

@keyframes ix-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.ix-hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: rgba(255,255,255,.45);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.ix-hero__subtitle--dark {
  color: var(--gray-500);
}

.ix-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* Outline button for white hero */
.ix-btn--outline {
  background: transparent;
  color: var(--color-heading);
  border: 1.5px solid var(--gray-300);
}
.ix-btn--outline:hover {
  border-color: var(--color-accent);
  background: rgba(99,102,241,.04);
  transform: translateY(-1px);
}

/* ── IX Hero Visual (Browser mock) ── */
.ix-hero__visual {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  perspective: 1200px;
}

.ix-hero__browser {
  background: rgba(15,15,30,.85);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04) inset;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.ix-hero__browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: .65rem 1rem;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ix-hero__browser-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.ix-hero__browser-url {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  font-size: .7rem;
  color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.04);
  padding: .2rem .7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.06);
}

.ix-hero__browser-content {
  padding: 0;
}

/* IX Mock dashboard */
.ix-mock {
  display: flex;
  min-height: 320px;
}
/* White hero browser overrides */
.ix-hero--white .ix-hero__browser {
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: 0 25px 60px rgba(0,0,0,.08), 0 8px 20px rgba(0,0,0,.04);
  backdrop-filter: none;
}
.ix-hero--white .ix-hero__browser-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.ix-hero--white .ix-hero__browser-url {
  color: var(--gray-400);
  background: #fff;
  border: 1px solid var(--gray-200);
}
.ix-hero--white .ix-mock__sidebar {
  background: var(--gray-900);
  border-right: 1px solid rgba(255,255,255,.06);
}
.ix-hero--white .ix-mock__sidebar-item {
  background: rgba(255,255,255,.06);
}
.ix-hero--white .ix-mock__sidebar-item--active {
  background: rgba(99,102,241,.3);
  box-shadow: 0 0 12px rgba(99,102,241,.15);
}
.ix-hero--white .ix-mock__main {
  background: var(--gray-50);
}
.ix-hero--white .ix-mock__topbar-title {
  background: var(--gray-300);
}
.ix-hero--white .ix-mock__topbar-actions span {
  background: var(--gray-200);
}
.ix-hero--white .ix-mock__kpi {
  background: #fff;
  border: 1px solid var(--gray-200);
}
.ix-hero--white .ix-mock__kpi-label {
  background: var(--gray-200);
}
.ix-hero--white .ix-mock__kpi-bar {
  background: var(--gray-100);
}
.ix-hero--white .ix-mock__chart {
  background: #fff;
  border: 1px solid var(--gray-200);
}
.ix-hero--white .ix-mock__rows {
  background: #fff;
  border: 1px solid var(--gray-200);
}
.ix-hero--white .ix-mock__row {
  border-bottom-color: var(--gray-100);
}
.ix-hero--white .ix-mock__row--head {
  background: var(--gray-50);
}
.ix-hero--white .ix-mock__row span {
  background: var(--gray-200);
}
.ix-mock__sidebar {
  width: 48px;
  background: rgba(255,255,255,.02);
  border-right: 1px solid rgba(255,255,255,.06);
  padding: .75rem .5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.ix-mock__sidebar-logo {
  margin-bottom: .5rem;
}
.ix-mock__sidebar-item {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: rgba(255,255,255,.04);
}
.ix-mock__sidebar-item--active {
  background: rgba(99,102,241,.25);
  box-shadow: 0 0 12px rgba(99,102,241,.2);
}

.ix-mock__main {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.ix-mock__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ix-mock__topbar-title {
  width: 110px; height: 12px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
}
.ix-mock__topbar-actions {
  display: flex; gap: .4rem;
}
.ix-mock__topbar-actions span {
  width: 50px; height: 24px;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  display: block;
}

.ix-mock__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}
.ix-mock__kpi {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: .7rem;
}
.ix-mock__kpi-label {
  width: 55%; height: 7px;
  background: rgba(255,255,255,.08);
  border-radius: 3px;
  margin-bottom: .4rem;
}
.ix-mock__kpi-val {
  font-family: 'Space Grotesk', monospace;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.ix-mock__kpi-bar {
  height: 3px;
  background: rgba(255,255,255,.05);
  border-radius: 2px;
  overflow: hidden;
}
.ix-mock__kpi-bar span {
  display: block;
  height: 100%;
  border-radius: 2px;
}

.ix-mock__chart {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: .75rem;
}
.ix-mock__chart svg { width: 100%; height: auto; }

.ix-mock__rows {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.ix-mock__row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr .8fr;
  padding: .5rem .75rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
  gap: .4rem;
}
.ix-mock__row:last-child { border-bottom: none; }
.ix-mock__row--head { background: rgba(255,255,255,.02); }
.ix-mock__row span {
  display: block;
  height: 8px;
  background: rgba(255,255,255,.08);
  border-radius: 3px;
}
.ix-mock__badge {
  border-radius: var(--radius-full) !important;
  height: 8px !important;
}
.ix-mock__badge--green { background: rgba(16,185,129,.3) !important; }
.ix-mock__badge--blue { background: rgba(99,102,241,.3) !important; }
.ix-mock__badge--amber { background: rgba(245,158,11,.3) !important; }

/* ── IX Hero floating cards ── */
.ix-hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .85rem;
  background: rgba(15,15,30,.8);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  z-index: 3;
  animation: ix-float 6s ease-in-out infinite;
}
/* White variant floating cards */
.ix-hero__float--white {
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 32px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
}
.ix-hero__float-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ix-hero__float-text {
  display: flex;
  flex-direction: column;
}
.ix-hero__float-text strong {
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
}
.ix-hero__float-text span {
  font-size: .62rem;
  color: rgba(255,255,255,.45);
}
.ix-hero__float--white .ix-hero__float-text strong {
  color: var(--color-heading);
}
.ix-hero__float--white .ix-hero__float-text span {
  color: var(--gray-500);
}

.ix-hero__float--1 {
  top: 15%; left: -4%;
  animation-delay: 0s;
}
.ix-hero__float--2 {
  top: 30%; right: -5%;
  animation-delay: 2s;
}
.ix-hero__float--3 {
  bottom: 8%; left: 3%;
  animation-delay: 4s;
}

@keyframes ix-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── IX Hero scroll hint ── */
.ix-hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.2);
  animation: ix-bounce 2s ease-in-out infinite;
  z-index: 2;
}
.ix-hero__scroll-hint--dark {
  color: var(--gray-300);
}
@keyframes ix-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════ IX LOGOS ══════════════ */
.ix-logos {
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.ix-logos__label {
  text-align: center;
  font-size: .75rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.5rem;
}
.ix-logos__strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem,5vw,4rem);
  flex-wrap: wrap;
}
.ix-logos__item {
  flex-shrink: 0;
  opacity: .3;
  filter: grayscale(100%);
  transition: opacity .3s, filter .3s;
}
.ix-logos__item:hover { opacity: .65; filter: grayscale(0%); }
.ix-logos__item svg { width: 100px; height: 28px; color: var(--gray-500); }

/* ══════════════ IX SOLUTIONS ══════════════ */
.ix-solutions {
  padding: var(--section-py) 0;
}

.ix-sol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.ix-sol-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s, border-color .35s;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.ix-sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  border-color: var(--gray-300);
}

.ix-sol-card__glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s;
}
.ix-sol-card:hover .ix-sol-card__glow { opacity: 1; }

.ix-sol-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.ix-sol-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: .5rem;
}
.ix-sol-card p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.ix-sol-card__visual {
  margin-bottom: 1.25rem;
  flex: 1;
}

.ix-sol-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap .2s;
  margin-top: auto;
}
.ix-sol-card:hover .ix-sol-card__link { gap: .7rem; }

/* Mini visuals in sol cards */
.ix-mini-pipeline {
  display: flex;
  gap: .4rem;
  padding: .6rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}
.ix-mini-pipeline__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.ix-mini-pipeline__label {
  font-size: .55rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.ix-mini-pipeline__item {
  height: 20px;
  background: rgba(99,102,241,.1);
  border-radius: 3px;
  border-left: 3px solid var(--indigo);
}
.ix-mini-pipeline__item--won {
  background: rgba(16,185,129,.1);
  border-color: var(--emerald);
}

.ix-mini-wave-wrap {
  background: var(--gray-900);
  border-radius: var(--radius-sm);
  padding: .75rem;
}
.ix-mini-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 28px;
  margin-bottom: .5rem;
}
.ix-mini-wave span {
  width: 3px;
  background: var(--cyan);
  border-radius: 2px;
  animation: wave-bar 1.2s ease-in-out infinite;
}
.ix-mini-wave span:nth-child(1) { height: 35%; animation-delay: 0s; }
.ix-mini-wave span:nth-child(2) { height: 65%; animation-delay: .1s; }
.ix-mini-wave span:nth-child(3) { height: 100%; animation-delay: .2s; }
.ix-mini-wave span:nth-child(4) { height: 55%; animation-delay: .3s; }
.ix-mini-wave span:nth-child(5) { height: 80%; animation-delay: .4s; }
.ix-mini-wave span:nth-child(6) { height: 45%; animation-delay: .5s; }
.ix-mini-wave span:nth-child(7) { height: 90%; animation-delay: .6s; }
.ix-mini-wave span:nth-child(8) { height: 30%; animation-delay: .7s; }
.ix-mini-wave-info {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  color: var(--emerald);
  font-weight: 500;
}

.ix-mini-chat {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: .6rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.ix-mini-chat__msg {
  display: flex;
  align-items: flex-start;
  gap: .35rem;
  font-size: .68rem;
  line-height: 1.35;
}
.ix-mini-chat__msg--user {
  justify-content: flex-end;
}
.ix-mini-chat__msg--user span:last-child {
  background: var(--purple);
  color: #fff;
  padding: .35rem .55rem;
  border-radius: var(--radius-sm);
}
.ix-mini-chat__msg--bot span:last-child {
  background: #fff;
  border: 1px solid var(--gray-200);
  color: var(--color-heading);
  padding: .35rem .55rem;
  border-radius: var(--radius-sm);
}
.ix-mini-chat__dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  flex-shrink: 0;
}

.ix-mini-team {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: .6rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.ix-mini-team__row {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.ix-mini-team__avatar {
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ix-mini-team__bar {
  height: 7px;
  border-radius: 4px;
}

/* ══════════════ IX SHOWCASE (DARK CANVAS) ══════════════ */
.ix-showcase {
  position: relative;
  padding: var(--section-py) 0;
  background: #050510;
  overflow: hidden;
}
.ix-showcase__canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.ix-showcase__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,16,.3) 0%, rgba(5,5,16,.8) 100%);
  z-index: 1;
  pointer-events: none;
}
.ix-showcase__content {
  position: relative;
  z-index: 2;
}

.ix-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ix-showcase__card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: border-color .3s, background .3s, transform .3s;
}
.ix-showcase__card:hover {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  transform: translateY(-4px);
}
.ix-showcase__card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.ix-showcase__card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}
.ix-showcase__card p {
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  line-height: 1.55;
}

/* ══════════════ IX STATS ══════════════ */
.ix-stats {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.ix-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.ix-stats__item {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.ix-stats__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--color-heading);
}
.ix-stats__label {
  font-size: .82rem;
  color: var(--gray-500);
}

/* ══════════════ IX AI SECTION ══════════════ */
.ix-ai {
  padding: var(--section-py) 0;
}
.ix-ai__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.ix-ai__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.ix-ai__orb-canvas {
  width: 200px;
  height: 200px;
}
.ix-ai__chat-preview {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.ix-ai__chat-msg {
  display: flex;
  gap: .45rem;
  align-items: flex-start;
}
.ix-ai__chat-msg--user { justify-content: flex-end; }
.ix-ai__chat-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.ix-ai__chat-text {
  display: inline-block;
  padding: .55rem .8rem;
  border-radius: var(--radius-md);
  font-size: .78rem;
  line-height: 1.45;
  max-width: 260px;
}
.ix-ai__chat-msg--bot .ix-ai__chat-text {
  background: var(--gray-50);
  color: var(--color-heading);
  border: 1px solid var(--gray-100);
}
.ix-ai__chat-msg--user .ix-ai__chat-text {
  background: var(--indigo);
  color: #fff;
}
.ix-ai__chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 2.2rem;
}
.ix-ai__chat-typing span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gray-300);
  animation: typing 1.4s ease-in-out infinite;
}
.ix-ai__chat-typing span:nth-child(2) { animation-delay: .2s; }
.ix-ai__chat-typing span:nth-child(3) { animation-delay: .4s; }

.ix-ai__text {
  display: flex;
  flex-direction: column;
}
.ix-ai__stats {
  display: flex;
  gap: 2rem;
}
.ix-ai__stat { display: flex; flex-direction: column; }
.ix-ai__stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -.03em;
}
.ix-ai__stat-label {
  font-size: .78rem;
  color: var(--gray-500);
}

/* ══════════════ IX TESTIMONIAL ══════════════ */
.ix-testimonial {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.ix-testimonial__card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.ix-testimonial__quote {
  margin: 0 auto 1.5rem;
  color: var(--gray-300);
}
.ix-testimonial__text {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--color-heading);
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}
.ix-testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
}
.ix-testimonial__author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.ix-testimonial__author div {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.ix-testimonial__author strong {
  font-size: .9rem;
  color: var(--color-heading);
}
.ix-testimonial__author span {
  font-size: .78rem;
  color: var(--gray-500);
}

/* ══════════════ IX CTA ══════════════ */
.ix-cta {
  position: relative;
  padding: clamp(5rem, 12vw, 10rem) 0;
  background: #050510;
  text-align: center;
  overflow: hidden;
}
.ix-cta__canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.ix-cta__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(5,5,16,.7) 70%);
  z-index: 1;
  pointer-events: none;
}
.ix-cta__content {
  position: relative;
  z-index: 2;
}
.ix-cta__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}
.ix-cta__desc {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: rgba(255,255,255,.45);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.ix-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.ix-cta__note {
  font-size: .78rem;
  color: rgba(255,255,255,.25);
}

/* ══════════════ IX RESPONSIVE ══════════════ */
@media (max-width: 1024px) {
  .ix-sol-grid {
    grid-template-columns: 1fr;
  }
  .ix-showcase__grid {
    grid-template-columns: 1fr;
  }
  .ix-ai__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ix-ai__visual { order: -1; }
  .ix-ai__text { align-items: center; }
  .ix-ai__stats { justify-content: center; }
  .ix-ai__text .ix-section-desc { text-align: center !important; }
  .ix-hero__float--1 { left: 2%; top: 10%; }
  .ix-hero__float--2 { right: 2%; }
  .ix-hero__float--3 { left: 5%; }
}

@media (max-width: 768px) {
  .ix-hero {
    padding: clamp(5rem,10vw,8rem) 0 3rem;
  }
  .ix-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .ix-hero__float {
    display: none;
  }
  .ix-hero__actions,
  .ix-cta__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .ix-mock__kpis {
    grid-template-columns: 1fr;
  }
}