/* ============================================================
   OBSIDIAN LUXE — Components
   Buttons, Cards, Forms, Badges, Accordions, etc.
   ============================================================ */

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: var(--fs-btn);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  text-decoration: none;
  border: none;
  isolation: isolate;
  max-width: 100%;
  box-sizing: border-box;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  z-index: -1;
  pointer-events: none;
}

.btn:hover::before {
  opacity: 1;
}

/* Primary — Violet gradient */
.btn--primary {
  background: var(--gradient-violet);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--primary::before {
  background: var(--gradient-violet-hover);
}

.btn--primary:hover {
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

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

/* Secondary — Violet Tint / Outline */
.btn--secondary {
  background: rgba(124, 58, 237, 0.08);
  color: var(--text-white);
  border: 1px solid rgba(139, 92, 246, 0.35);
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  color: var(--text-white);
  background: rgba(124, 58, 237, 0.2);
  border-color: var(--accent-violet-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25);
}

/* Ghost — Minimal */
.btn--ghost {
  background: transparent;
  color: var(--text-white);
  padding: 10px 20px;
}

.btn--ghost:hover {
  color: var(--accent-violet-light);
  background: rgba(124, 58, 237, 0.08);
}

/* White */
.btn--white {
  background: var(--text-white);
  color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn--white:hover {
  color: var(--primary-dark);
  background: var(--text-light);
  transform: translateY(-2px);
}

/* Small */
.btn--sm {
  padding: 10px 20px;
  font-size: var(--fs-small);
}

/* Large */
.btn--lg {
  padding: 18px 40px;
  font-size: var(--fs-body);
}

/* Block / Full-Width */
.btn--block {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  white-space: normal;
  line-height: 1.35;
  padding: 12px 20px;
}

/* Icon inside button */
.btn__icon {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-normal) var(--ease-out);
}

.btn:hover .btn__icon {
  transform: translateX(3px);
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-violet-light), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.card:hover::before {
  opacity: 0.8;
}

/* Card Icon */
.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  color: var(--accent-violet-light);
  transition: var(--transition-base);
}

.card:hover .card__icon {
  background: rgba(124, 58, 237, 0.22);
  border-color: var(--border-medium);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.25);
  color: #ffffff;
}

.card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-violet-light);
  stroke-width: 1.75;
}

.card:hover .card__icon svg {
  stroke: #ffffff;
}

.card__title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
}

.card__desc {
  color: var(--text-muted);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--accent-violet-light);
  font-weight: var(--fw-medium);
  font-size: var(--fs-small);
  margin-top: var(--space-lg);
  transition: var(--transition-fast);
}

.card__link:hover {
  gap: var(--space-sm);
  color: #ffffff;
}

/* Card Variants */
.card--solid {
  background: var(--secondary-dark);
  backdrop-filter: none;
}

.card--bordered {
  background: transparent;
  border: 1px solid var(--border-light);
}

.card--featured {
  border-color: var(--accent-violet);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.1) 0%, var(--glass-bg) 100%);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.15);
}

/* ── Stats Card ──────────────────────────────────────────── */
.stat {
  text-align: center;
  padding: var(--space-xl);
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--accent-violet-light);
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-violet-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: var(--fs-small);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

/* ── Badge ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-full);
  background: rgba(124, 58, 237, 0.12);
  color: var(--accent-violet-light);
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.badge--cyan {
  background: rgba(6, 182, 212, 0.12);
  color: var(--accent-cyan-light);
  border-color: rgba(6, 182, 212, 0.3);
}

.badge--success {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.25);
}

.badge--info {
  background: rgba(59, 130, 246, 0.12);
  color: var(--info);
  border-color: rgba(59, 130, 246, 0.25);
}

/* ── Form Elements ───────────────────────────────────────── */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--secondary-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: var(--fs-body);
  transition: var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-error {
  font-size: var(--fs-xs);
  color: var(--error);
  margin-top: 4px;
  display: none;
}

.form-group.has-error .form-input,
.form-group.has-error .form-textarea {
  border-color: var(--error);
}

.form-group.has-error .form-error {
  display: block;
}

/* ── Accordion ───────────────────────────────────────────── */
.accordion {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accordion__item {
  border-bottom: 1px solid var(--border-subtle);
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  background: transparent;
  color: var(--text-white);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-base);
}

.accordion__trigger:hover {
  background: rgba(124, 58, 237, 0.08);
  color: var(--accent-violet-light);
}

.accordion__icon {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  transition: transform var(--duration-normal) var(--ease-out);
  flex-shrink: 0;
}

.accordion__item.is-active .accordion__icon {
  transform: rotate(180deg);
  stroke: var(--accent-violet-light);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.accordion__item.is-active .accordion__content {
  max-height: 500px;
}

.accordion__body {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

/* ── Testimonial Card ────────────────────────────────────── */
.testimonial {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  position: relative;
}

.testimonial__quote {
  font-size: var(--fs-body-lg);
  color: var(--text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
  font-style: italic;
  position: relative;
}



.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  color: var(--primary-dark);
  font-size: var(--fs-body);
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: var(--fw-semibold);
  color: var(--text-white);
  font-size: var(--fs-body);
}

.testimonial__role {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.testimonial__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
}

/* ── Blog Post Card ──────────────────────────────────────── */
.post-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-lg);
}

.post-card__image {
  width: 100%;
  height: 220px;
  background: var(--gradient-card);
  position: relative;
  overflow: hidden;
}

.post-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--secondary-dark), transparent);
  opacity: 0.5;
}

.post-card__body {
  padding: var(--space-xl);
}

.post-card__category {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--space-sm);
}

.post-card__title {
  font-size: var(--fs-h4);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-sm);
  color: var(--text-white);
  transition: color var(--duration-fast);
}

.post-card:hover .post-card__title {
  color: var(--accent-gold);
}

.post-card__excerpt {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--fs-xs);
  color: var(--text-dim);
}

/* ── Team Card ───────────────────────────────────────────── */
.team-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.team-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}

.team-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-gold);
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--primary-dark);
}

.team-card__name {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: 4px;
}

.team-card__role {
  color: var(--accent-gold);
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
}

.team-card__bio {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: var(--lh-relaxed);
}

/* ── Process / Timeline ──────────────────────────────────── */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
  position: relative;
  margin-top: var(--space-2xl);
}

.process::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.4) 0%, rgba(6, 182, 212, 0.4) 100%);
  z-index: 1;
}

.process__step {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 var(--space-xs);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  background: #0f172a;
  border: 2px solid var(--accent-violet);
  color: var(--accent-violet-light);
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.25);
  transition: all var(--duration-normal) var(--ease-out);
  flex-shrink: 0;
}

.process__step:hover .process__number {
  background: var(--gradient-violet);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.5);
  transform: translateY(-4px);
}

.process__content {
  flex: 1;
  min-width: 0;
}

.process__title {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--text-white);
  margin-bottom: var(--space-xs);
  line-height: var(--lh-snug);
}

.process__desc {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  margin: 0;
}

@media (max-width: 992px) {
  .process {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-sm);
  }

  .process::before {
    top: 36px;
    bottom: 36px;
    left: calc(var(--space-sm) + 27px);
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.5) 0%, rgba(6, 182, 212, 0.5) 100%);
  }

  .process__step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: rgba(18, 24, 40, 0.7);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all var(--duration-normal) var(--ease-out);
    width: 100%;
  }

  .process__step:hover {
    border-color: rgba(124, 58, 237, 0.45);
    transform: translateX(6px);
    background: rgba(24, 32, 54, 0.9);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(124, 58, 237, 0.2);
  }

  .process__number {
    width: 54px;
    height: 54px;
    font-size: 1.2rem;
    margin: 0;
  }

  .process__title {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .process__desc {
    font-size: var(--fs-small);
  }
}

@media (max-width: 540px) {
  .process {
    padding: 0;
    gap: var(--space-md);
  }

  .process::before {
    display: none;
  }

  .process__step {
    gap: var(--space-md);
    padding: var(--space-md);
  }

  .process__number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .process__title {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .process__desc {
    font-size: 0.825rem;
  }
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, var(--secondary-dark) 50%, rgba(6, 182, 212, 0.06) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-5xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section__title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-lg);
  position: relative;
}

.cta-section__desc {
  font-size: var(--fs-body-lg);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  position: relative;
}

.cta-section__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── Trust Bar / Logo Strip ──────────────────────────────── */
.trust-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.trust-bar__header {
  margin-bottom: var(--space-xl);
}

.trust-bar__kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-violet-light);
  margin-bottom: 6px;
}

.trust-bar__title {
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  font-weight: var(--fw-semibold);
  margin-bottom: 0;
}

.trust-bar__marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 12px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.9) 8%, black 15%, black 85%, rgba(0, 0, 0, 0.9) 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.9) 8%, black 15%, black 85%, rgba(0, 0, 0, 0.9) 92%, transparent 100%);
}

.trust-bar__track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: trustMarquee 38s linear infinite;
  will-change: transform;
}

.trust-bar__track:hover {
  animation-play-state: paused;
}

.trust-bar__set {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* Brand Card */
.trust-bar__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  cursor: default;
  white-space: nowrap;
}

.trust-bar__card:hover {
  background: rgba(23, 32, 56, 0.85);
  border-color: rgba(139, 92, 246, 0.45);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px -4px rgba(124, 58, 237, 0.28), 0 0 20px rgba(124, 58, 237, 0.18);
}

.trust-bar__logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.trust-bar__card:hover .trust-bar__logo-icon {
  transform: scale(1.08);
  border-color: rgba(139, 92, 246, 0.35);
}

.trust-bar__logo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.trust-bar__logo-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.trust-bar__brand-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.01em;
  line-height: 1.15;
  transition: color 0.3s ease;
}

.trust-bar__card:hover .trust-bar__brand-name {
  color: #ffffff;
}

.trust-bar__brand-tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

.trust-bar__card:hover .trust-bar__brand-tag {
  color: var(--accent-violet-light);
}

@keyframes trustMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

@media (max-width: 768px) {
  .trust-bar__card {
    padding: 9px 16px;
    gap: 10px;
  }
  .trust-bar__logo-icon {
    width: 30px;
    height: 30px;
  }
  .trust-bar__brand-name {
    font-size: 0.85rem;
  }
  .trust-bar__brand-tag {
    font-size: 8.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-bar__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .trust-bar__set:last-child {
    display: none;
  }
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

.breadcrumb a:hover {
  color: var(--accent-violet-light);
}

.breadcrumb__sep {
  color: var(--text-dim);
}

.breadcrumb__current {
  color: var(--accent-violet-light);
}

/* ── Pagination ──────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-3xl);
}

.pagination__btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
  transition: var(--transition-base);
  cursor: pointer;
}

.pagination__btn:hover,
.pagination__btn.is-active {
  border-color: var(--accent-violet);
  color: #ffffff;
  background: rgba(124, 58, 237, 0.25);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

/* ── Tag / Category Pill ─────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
}

.tag:hover,
.tag.is-active {
  color: #ffffff;
  border-color: var(--accent-violet-light);
  background: rgba(124, 58, 237, 0.18);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.2);
}

/* ── Floating CTA ────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-overlay);
  display: none;
}

.floating-cta .btn {
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.45);
  border-radius: var(--radius-full);
  padding: 16px 28px;
}

@media (max-width: 768px) {
  .floating-cta {
    display: block;
  }
}

/* ── Modal ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 13, 26, 0.88);
  backdrop-filter: blur(8px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--secondary-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  max-width: 520px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--duration-slow) var(--ease-out);
}

.modal-overlay.is-active .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}

/* ── Carousel ────────────────────────────────────────────── */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform var(--duration-slow) var(--ease-in-out);
}

.carousel__slide {
  flex: 0 0 100%;
  padding: 0 var(--space-md);
}

.carousel__controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.carousel__btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-base);
}

.carousel__btn:hover {
  border-color: var(--accent-violet-light);
  color: #ffffff;
  background: rgba(124, 58, 237, 0.15);
}

.carousel__dots {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: var(--transition-base);
}

.carousel__dot.is-active {
  background: var(--accent-violet);
  box-shadow: 0 0 10px var(--accent-violet-glow);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ── Tech Badge ──────────────────────────────────────────── */
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 10px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: var(--fs-small);
  color: var(--text-light);
  font-weight: var(--fw-medium);
  transition: var(--transition-base);
}

.tech-badge:hover {
  border-color: var(--border-medium);
  background: rgba(124, 58, 237, 0.16);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ── Icon Circle ─────────────────────────────────────────── */
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-violet-light);
  stroke-width: 1.75;
}

.icon-circle--lg {
  width: 80px;
  height: 80px;
}

.icon-circle--lg svg {
  width: 36px;
  height: 36px;
}

/* ============================================================
   INTERACTIVE TABS & DASHBOARD VISUALS
   ============================================================ */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: var(--space-sm);
}

.tab-btn {
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: var(--transition-base);
  position: relative;
}

.tab-btn:hover {
  color: var(--text-white);
}

.tab-btn.is-active {
  color: var(--accent-violet-light);
}

.tab-btn.is-active::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-violet);
  box-shadow: 0 0 10px var(--accent-violet-glow);
}

.tab-content {
  opacity: 0;
  transform: perspective(1200px) rotateX(-12deg) translateY(30px) scale(0.98);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top center;
  backface-visibility: hidden;
}

.tab-content.is-active {
  opacity: 1;
  transform: perspective(1200px) rotateX(0deg) translateY(0) scale(1);
}

/* Mock Dashboard Window */
.dashboard-mockup {
  background: rgba(12, 17, 34, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(124, 58, 237, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 480px;
  width: 100%;
}

.dashboard-mockup__header {
  height: 44px;
  background: var(--tertiary-dark);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  padding: 0 var(--space-lg);
  gap: 8px;
}

.dashboard-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-mockup__dot--red { background: #ef4444; }
.dashboard-mockup__dot--yellow { background: #f59e0b; }
.dashboard-mockup__dot--green { background: #10b981; }

.dashboard-mockup__search {
  flex: 1;
  max-width: 320px;
  height: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  margin-left: var(--space-xl);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 11px;
  color: var(--text-dim);
}

.dashboard-mockup__body {
  flex: 1;
  display: grid;
  grid-template-columns: 180px 1fr;
  background: var(--secondary-dark);
}

/* Sidebar */
.dashboard-mockup__sidebar {
  border-right: 1px solid var(--border-subtle);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
}

.dashboard-mockup__nav-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-mockup__console {
  margin-top: var(--space-md);
  background: rgba(5, 8, 16, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-family: 'JetBrains Mono', monospace, Consolas;
  font-size: 9px;
  min-height: 140px;
  max-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard-mockup__console-header {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-cyan-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 4px;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.dashboard-mockup__console-body {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.console-line {
  color: #34d399;
  line-height: 1.3;
  word-break: break-all;
}

.console-line.text-muted {
  color: var(--text-dim);
}

.console-line.text-gold,
.console-line.text-violet {
  color: var(--accent-violet-light);
}

.dashboard-mockup__nav-item {
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  padding: 0 var(--space-sm);
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.dashboard-mockup__nav-item.is-active {
  background: rgba(124, 58, 237, 0.15);
  color: var(--accent-violet-light);
  border-left: 2px solid var(--accent-violet);
}

.dashboard-mockup__nav-item svg {
  width: 14px;
  height: 14px;
}

/* Content Area */
.dashboard-mockup__content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  overflow-y: auto;
}

.dashboard-mockup__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.dashboard-mockup__metric-card {
  background: var(--surface-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.dashboard-mockup__metric-title {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dashboard-mockup__metric-val {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--text-white);
  margin-top: 4px;
}

.dashboard-mockup__metric-val span {
  color: var(--success);
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  margin-left: 4px;
}

/* Charts */
.dashboard-mockup__chart-container {
  background: var(--surface-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dashboard-mockup__chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.dashboard-mockup__chart-title {
  font-size: 13px;
  font-weight: 500;
}

.dashboard-mockup__chart-bars {
  display: flex;
  align-items: flex-end;
  gap: var(--space-lg);
  height: 140px;
  padding-top: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}

.dashboard-mockup__chart-bar {
  flex: 1;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 4px 4px 0 0;
  position: relative;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tab-content.is-active .dashboard-mockup__chart-bar,
.reveal.is-visible .dashboard-mockup__chart-bar {
  transform: scaleY(1);
}

.dashboard-mockup__chart-bar:nth-child(1) { transition-delay: 100ms; }
.dashboard-mockup__chart-bar:nth-child(2) { transition-delay: 200ms; }
.dashboard-mockup__chart-bar:nth-child(3) { transition-delay: 300ms; }
.dashboard-mockup__chart-bar:nth-child(4) { transition-delay: 400ms; }
.dashboard-mockup__chart-bar:nth-child(5) { transition-delay: 500ms; }

.dashboard-mockup__chart-bar.is-active {
  background: var(--gradient-violet);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}

.dashboard-mockup__chart-bar::before {
  content: attr(data-val);
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--text-muted);
}

.dashboard-mockup__chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 10px;
  color: var(--text-dim);
}

/* Mock Pipeline Flow */
.dashboard-mockup__pipeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-mockup__deal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--space-md);
  background: var(--surface-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.dashboard-mockup__deal:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 0 12px rgba(124, 58, 237, 0.15);
}

.dashboard-mockup__deal.is-closed::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
  animation: shineSweep 0.8s var(--ease-out) forwards;
}

@keyframes shineSweep {
  0% { left: -100%; }
  100% { left: 150%; }
}

.dashboard-mockup__deal-info {
  display: flex;
  flex-direction: column;
}

.dashboard-mockup__deal-title {
  font-size: 12px;
  font-weight: 500;
}

.dashboard-mockup__deal-client {
  font-size: 10px;
  color: var(--text-dim);
}

.dashboard-mockup__deal-stage {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: rgba(124, 58, 237, 0.15);
  color: var(--accent-violet-light);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Integration Nodes Visual */
.nodes-visual {
  height: 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.nodes-visual__center {
  width: 72px;
  height: 72px;
  background: var(--gradient-violet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  z-index: 2;
  box-shadow: 0 0 24px var(--accent-violet-glow);
  animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.7);
    transform: scale(1.06);
  }
}

.nodes-visual__center svg {
  width: 32px;
  height: 32px;
}

.nodes-visual__node {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary-dark);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan-light);
  z-index: 2;
  transition: var(--transition-base);
}

.nodes-visual__node:hover {
  border-color: var(--accent-violet);
  box-shadow: 0 0 20px var(--accent-violet-glow);
  color: var(--text-white);
  transform: scale(1.12);
}

.nodes-visual__node--1 { top: 30px; left: 60px; }
.nodes-visual__node--2 { top: 30px; right: 60px; }
.nodes-visual__node--3 { bottom: 30px; left: 60px; }
.nodes-visual__node--4 { bottom: 30px; right: 60px; }

.nodes-visual__node svg {
  width: 20px;
  height: 20px;
}

.nodes-visual__line {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--accent-violet-light) 50%, transparent 50%);
  background-size: 16px 2px;
  transform-origin: left center;
  z-index: 1;
  opacity: 0.6;
  animation: flowDashes 1.2s linear infinite;
}

@keyframes flowDashes {
  to {
    background-position: -32px 0;
  }
}

.nodes-visual__line--1 { transform: translate(-50%, -50%) rotate(210deg); width: 120px; }
.nodes-visual__line--2 { transform: translate(-50%, -50%) rotate(330deg); width: 120px; }
.nodes-visual__line--3 { transform: translate(-50%, -50%) rotate(150deg); width: 120px; }
.nodes-visual__line--4 { transform: translate(-50%, -50%) rotate(30deg); width: 120px; }

/* ============================================================
   ROI CALCULATOR WIDGET STYLING
   ============================================================ */
.roi-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

.roi-card__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
}

.roi-card__control {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.roi-card__title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
}

.roi-card__desc {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.roi-card__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.roi-card__label {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.roi-card__label span {
  color: var(--accent-violet-light);
  font-size: var(--fs-body);
}

/* Custom range slider */
.roi-card__slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--tertiary-dark);
  outline: none;
}

.roi-card__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient-violet);
  cursor: pointer;
  box-shadow: 0 0 14px var(--accent-violet-glow);
  transition: transform var(--duration-fast);
}

.roi-card__slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.roi-card__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient-violet);
  cursor: pointer;
  box-shadow: 0 0 14px var(--accent-violet-glow);
  transition: transform var(--duration-fast);
  border: none;
}

.roi-card__slider::-moz-range-thumb:hover {
  transform: scale(1.15);
}

/* ROI Results Display */
.roi-card__results {
  background: var(--secondary-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-xl);
}

.roi-card__result-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.roi-card__result-label {
  font-size: var(--fs-xs);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  font-weight: var(--fw-semibold);
}

.roi-card__result-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--accent-violet-light);
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-violet-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.roi-card__result-desc {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .roi-card__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* ============================================================
   CUSTOM CRM ESTIMATOR MODULES & FILE ATTACHMENT
   ============================================================ */
.estimator-modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xs);
}

@media (max-width: 640px) {
  .estimator-modules-grid {
    grid-template-columns: 1fr;
  }
}

.migration-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xs);
}

@media (max-width: 840px) {
  .migration-packages-grid {
    grid-template-columns: 1fr;
  }
}

.migration-package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 18px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  user-select: none;
}

.migration-package-card:hover {
  border-color: var(--border-medium);
  background: rgba(124, 58, 237, 0.06);
  transform: translateY(-2px);
}

.migration-package-card.is-selected,
.migration-package-card:has(input:checked) {
  border-color: var(--accent-violet);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16) 0%, rgba(99, 102, 241, 0.08) 100%);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.25);
}

.migration-package-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.migration-package-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs);
}

.migration-package-card__title {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--text-white);
}

.migration-package-card__price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-violet-light);
}

.migration-package-card.is-selected .migration-package-card__price,
.migration-package-card:has(input:checked) .migration-package-card__price {
  color: #ffffff;
  text-shadow: 0 0 12px var(--accent-violet-glow);
}

.migration-package-card__tag {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: var(--radius-full);
  padding: 2px 8px;
  display: inline-block;
  margin-top: 2px;
}

.migration-package-card__features {
  list-style: none;
  padding: 0;
  margin: var(--space-xs) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.migration-package-card__feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.migration-package-card__feature-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--accent-violet-light);
  flex-shrink: 0;
}

.estimator-module-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: 14px 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  user-select: none;
}

.estimator-module-card:hover {
  border-color: var(--border-medium);
  background: rgba(124, 58, 237, 0.06);
  transform: translateY(-1px);
}

.estimator-module-card.is-selected,
.estimator-module-card:has(input:checked) {
  border-color: var(--accent-violet);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16) 0%, rgba(99, 102, 241, 0.08) 100%);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.estimator-module-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.estimator-module-card__checkbox {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-medium);
  background: var(--tertiary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--duration-fast);
}

.estimator-module-card.is-selected .estimator-module-card__checkbox,
.estimator-module-card:has(input:checked) .estimator-module-card__checkbox {
  background: var(--gradient-violet);
  border-color: transparent;
  box-shadow: 0 0 10px var(--accent-violet-glow);
}

.estimator-module-card__checkbox svg {
  width: 12px;
  height: 12px;
  stroke: #ffffff;
  stroke-width: 3;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--duration-fast);
}

.estimator-module-card.is-selected .estimator-module-card__checkbox svg,
.estimator-module-card:has(input:checked) .estimator-module-card__checkbox svg {
  opacity: 1;
  transform: scale(1);
}

.estimator-module-card__content {
  flex: 1;
  min-width: 0;
}

.estimator-module-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs);
  margin-bottom: 2px;
}

.estimator-module-card__title {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--text-white);
}

.estimator-module-card__price {
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--accent-violet-light);
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-full);
  padding: 2px 8px;
  white-space: nowrap;
}

.estimator-module-card.is-selected .estimator-module-card__price,
.estimator-module-card:has(input:checked) .estimator-module-card__price {
  color: #ffffff;
  background: var(--gradient-violet);
}

.estimator-module-card__desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.35;
  margin: 0;
}

/* File Upload Box */
.estimator-file-zone {
  border: 2px dashed rgba(139, 92, 246, 0.35);
  background: rgba(15, 23, 42, 0.5);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  cursor: pointer;
  transition: all var(--duration-normal);
  position: relative;
}

.estimator-file-zone:hover,
.estimator-file-zone.is-dragover {
  border-color: var(--accent-violet);
  background: rgba(124, 58, 237, 0.08);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.estimator-file-zone__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 50%;
  color: var(--accent-violet-light);
}

.estimator-file-zone__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.estimator-file-zone__title {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--text-white);
  margin-bottom: 2px;
}

.estimator-file-zone__subtitle {
  font-size: 11px;
  color: var(--text-muted);
}

.estimator-file-preview {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  margin-top: var(--space-sm);
  font-size: var(--fs-small);
  color: #ffffff;
}

.estimator-file-preview.is-visible {
  display: flex;
}

.estimator-file-preview__remove {
  background: none;
  border: none;
  color: var(--accent-violet-light);
  cursor: pointer;
  font-size: 16px;
  padding: 0 4px;
  line-height: 1;
}

.estimator-file-preview__remove:hover {
  color: #ffffff;
}

/* ============================================================
/* ============================================================
   COMPARISON TABLE / MODEL COMPARISON
   ============================================================ */
.comparison-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  margin-top: var(--space-2xl);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  position: relative;
}

.comparison-scroll-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(124, 58, 237, 0.12);
  border-bottom: 1px solid rgba(124, 58, 237, 0.25);
  font-size: 0.8125rem;
  color: var(--accent-violet-light);
  font-weight: 500;
  text-align: center;
}

.comparison-scroll-hint svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  animation: swipeHint 1.8s ease-in-out infinite;
}

@keyframes swipeHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  width: 100%;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  min-width: 780px;
}

.comparison-table thead {
  background: #0a101e;
  position: relative;
}

.comparison-th {
  padding: var(--space-xl) var(--space-lg);
  font-family: var(--font-body);
  color: var(--text-light);
  vertical-align: top;
  position: relative;
  border-bottom: 1px solid var(--border-medium);
  text-transform: none;
  background: #0a101e;
}

.comparison-th.criteria-col {
  width: 25%;
  min-width: 170px;
  padding-left: var(--space-xl);
  vertical-align: bottom;
}

.th-header-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.th-model-icon {
  font-size: 1.5rem;
  margin-bottom: 2px;
  line-height: 1;
}

.th-title {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--text-white);
  letter-spacing: normal;
  text-transform: none;
  line-height: var(--lh-snug);
}

.th-subtitle {
  font-size: var(--fs-xs);
  color: var(--text-dim);
  font-weight: var(--fw-regular);
  text-transform: none;
  line-height: var(--lh-snug);
}

/* Highlight Column (Our Firm) */
.comparison-table .highlight-col {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.14) 0%, rgba(124, 58, 237, 0.05) 100%);
  position: relative;
}

.comparison-th.highlight-col {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.28) 0%, rgba(124, 58, 237, 0.12) 100%);
  border-top: 3px solid var(--accent-violet);
}

.comparison-th.highlight-col .th-title {
  color: #ffffff;
  font-weight: var(--fw-bold);
}

.th-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gradient-violet);
  color: #ffffff;
  font-size: 10px;
  font-weight: var(--fw-bold);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.4);
  margin-bottom: 4px;
}

/* Rows & Cells */
.comparison-table tbody tr {
  transition: background var(--duration-fast);
}

.comparison-table tbody tr:hover {
  background: rgba(124, 58, 237, 0.05);
}

.comparison-table td {
  padding: var(--space-lg) var(--space-lg);
  vertical-align: middle;
  font-size: var(--fs-small);
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td.criteria-cell {
  padding-left: var(--space-xl);
  background: transparent;
}

.criteria-name {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-white);
  font-size: var(--fs-body);
}

.criteria-icon {
  width: 18px;
  height: 18px;
  stroke: var(--accent-violet-light);
  flex-shrink: 0;
}

.cell-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cell-desc {
  font-size: 12px;
  line-height: var(--lh-snug);
  color: var(--text-muted);
}

.highlight-col .cell-desc {
  color: var(--text-light);
}

.highlight-col .cell-desc b {
  color: var(--accent-violet-light);
}

/* Status Chips */
.table-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table-chip--gold,
.table-chip--violet {
  background: rgba(124, 58, 237, 0.18);
  color: var(--accent-violet-light);
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.15);
}

.table-chip--success {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.table-chip--warning {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.table-chip--danger {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.table-chip--neutral {
  background: rgba(148, 163, 184, 0.15);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

/* Card Footer CTA */
.comparison-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  padding: var(--space-xl) var(--space-2xl);
  background: rgba(10, 16, 30, 0.95);
  border-top: 1px solid var(--border-medium);
  flex-wrap: wrap;
}

.comparison-footer__title {
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-semibold);
  color: var(--text-white);
  margin-bottom: 2px;
}

.comparison-footer__desc {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   ENHANCED PROCESS GRID & CARDS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
  margin-top: var(--space-2xl);
}

.process-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--duration-normal) var(--ease-out);
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-violet);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 24px rgba(124, 58, 237, 0.2);
  background: rgba(20, 29, 52, 0.8);
}

.process-card:hover::before {
  opacity: 1;
}

.process-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.process-card__number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  color: var(--accent-violet-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.process-card__number span {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--text-dim);
  font-weight: var(--fw-semibold);
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.process-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-violet-light);
  transition: var(--transition-base);
}

.process-card:hover .process-card__icon {
  background: var(--gradient-violet);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.4);
  transform: scale(1.08);
}

.process-card__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}

.process-card__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--text-white);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-snug);
}

.process-card__desc {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.process-card__deliverable {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  font-size: var(--fs-xs);
  color: var(--text-light);
  font-weight: var(--fw-medium);
}

.process-card__deliverable svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent-violet-light);
  flex-shrink: 0;
}

.process-banner {
  margin-top: var(--space-3xl);
  padding: var(--space-xl) var(--space-2xl);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(15, 23, 42, 0.92) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
}

.process-banner__content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.process-banner__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-violet);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.process-banner__icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

.process-banner__title {
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-semibold);
  color: var(--text-white);
  margin-bottom: 2px;
}

.process-banner__desc {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Cards & Widgets Mobile Spacing */
  .card,
  .testimonial,
  .team-card,
  .process-card,
  .roi-card {
    padding: var(--space-xl);
  }

  .process-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-xl);
  }

  .process-banner__content {
    flex-direction: column;
    text-align: center;
  }

  .comparison-scroll-hint {
    display: flex;
  }

  .comparison-card .comparison-table {
    min-width: 680px !important;
  }

  .comparison-card .comparison-th.criteria-col,
  .comparison-card .comparison-table td.criteria-cell {
    position: sticky;
    left: 0;
    z-index: 3;
    background: #090e1a;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.4);
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    min-width: 135px;
    max-width: 150px;
  }

  .comparison-card .comparison-th.criteria-col {
    z-index: 4;
    background: #070b14;
  }

  .comparison-card .comparison-th {
    padding: var(--space-md) var(--space-sm);
  }

  .comparison-card .comparison-table td {
    padding: var(--space-md) var(--space-sm);
  }

  .comparison-card .criteria-name {
    font-size: 0.85rem;
    gap: 6px;
  }

  .comparison-card .criteria-icon {
    width: 15px;
    height: 15px;
  }

  .comparison-card .th-title {
    font-size: 0.875rem;
  }

  .comparison-card .th-subtitle {
    font-size: 0.7rem;
  }

  .comparison-card .th-badge {
    font-size: 9px;
    padding: 2px 7px;
  }

  .comparison-card .table-chip {
    font-size: 10px;
    padding: 2px 7px;
  }

  .comparison-card .cell-desc {
    font-size: 11px;
    line-height: 1.35;
  }

  .comparison-card__footer {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-lg);
  }

  .comparison-card__footer .btn {
    width: 100%;
  }

  .tabs-nav {
    gap: 6px;
    flex-wrap: wrap;
    padding-bottom: 4px;
  }

  .tab-btn {
    padding: 8px 14px;
    font-size: var(--fs-small);
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: var(--space-3xl) 0;
  }

  .cta-section__buttons {
    flex-direction: column;
    width: 100%;
    gap: var(--space-sm);
  }

  .cta-section__buttons .btn {
    width: 100%;
  }

  .dashboard-mockup {
    height: auto;
    width: 100%;
    max-width: 100%;
    margin-top: var(--space-xl);
    box-sizing: border-box;
    overflow: hidden;
  }

  .dashboard-mockup__header {
    padding: 10px 14px;
  }

  .dashboard-mockup__search {
    font-size: 10px;
    padding: 3px 10px;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .dashboard-mockup__sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 8px 12px;
  }

  .dashboard-mockup__nav-group {
    flex-direction: row;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .dashboard-mockup__nav-item {
    white-space: nowrap;
    font-size: 11px;
    padding: 0 10px;
    height: 28px;
  }

  .dashboard-mockup__console {
    display: none;
  }

  .dashboard-mockup__content {
    padding: var(--space-md);
    gap: var(--space-md);
  }

  .dashboard-mockup__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .dashboard-mockup__metric-card {
    padding: 8px 6px;
    text-align: center;
  }

  .dashboard-mockup__metric-title {
    font-size: 9.5px;
    letter-spacing: 0;
    margin-bottom: 2px;
  }

  .dashboard-mockup__metric-val {
    font-size: 12px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
  }

  .dashboard-mockup__metric-val span {
    font-size: 8.5px;
  }

  .dashboard-mockup__chart-container {
    padding: 10px 12px;
  }

  .dashboard-mockup__chart-header {
    margin-bottom: 6px;
  }

  .dashboard-mockup__chart-title {
    font-size: 11px;
  }

  .dashboard-mockup__chart-bars {
    gap: 6px;
    height: 80px;
    padding-top: var(--space-md);
  }

  .dashboard-mockup__deal {
    padding: 6px 10px;
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .btn {
    padding: 12px 18px;
    font-size: 0.9375rem;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    max-width: 100%;
    box-sizing: border-box;
  }

  .btn--lg {
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .btn--sm {
    padding: 8px 14px;
    font-size: 0.8125rem;
  }
}

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

  /* Buttons on Small Devices */
  .btn {
    max-width: 100%;
  }

  .btn--lg {
    padding: 14px 20px;
    font-size: 0.95rem;
    width: 100%;
  }

  /* Comparison Table on Small Devices */
  .comparison-card .comparison-table {
    min-width: 620px !important;
  }

  .comparison-card .comparison-th.criteria-col,
  .comparison-card .comparison-table td.criteria-cell {
    min-width: 120px;
    max-width: 135px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .comparison-card .comparison-th,
  .comparison-card .comparison-table td {
    padding: 12px 10px;
  }

  .comparison-card .criteria-name {
    font-size: 0.8125rem;
  }

  .comparison-card .th-title {
    font-size: 0.8125rem;
  }

  .comparison-card .th-subtitle {
    font-size: 0.6875rem;
  }

  /* Integration Nodes Graphic Mobile */
  .nodes-visual {
    height: 200px;
  }

  .nodes-visual__center {
    width: 54px;
    height: 54px;
  }

  .nodes-visual__center svg {
    width: 24px;
    height: 24px;
  }

  .nodes-visual__node {
    width: 36px;
    height: 36px;
  }

  .nodes-visual__node svg {
    width: 16px;
    height: 16px;
  }

  .nodes-visual__node--1 { top: 12px; left: 15px; }
  .nodes-visual__node--2 { top: 12px; right: 15px; }
  .nodes-visual__node--3 { bottom: 12px; left: 15px; }
  .nodes-visual__node--4 { bottom: 12px; right: 15px; }
  .nodes-visual__line { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP CHATBOT CTA WIDGET
   ══════════════════════════════════════════════════════════════ */
.wa-chatbot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--font-body);
  pointer-events: none;
}

.wa-chatbot * {
  box-sizing: border-box;
}

/* Floating Launcher Button */
.wa-chatbot__btn {
  pointer-events: auto;
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 2px rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-chatbot__btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.6), 0 0 24px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.wa-chatbot__btn:active {
  transform: scale(0.96);
}

.wa-chatbot__icon {
  width: 30px;
  height: 30px;
  stroke: #ffffff;
  stroke-width: 2.2;
  transition: transform 0.3s ease;
}

.wa-chatbot__btn:hover .wa-chatbot__icon {
  transform: rotate(-8deg) scale(1.08);
}

/* Animated Ring Pulse */
.wa-chatbot__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.7);
  animation: waPulse 2.4s infinite cubic-bezier(0.25, 0, 0, 1);
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Online Status Dot on Launcher */
.wa-chatbot__badge-dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 14px;
  height: 14px;
  background: #22c55e;
  border: 2.5px solid #090e1a;
  border-radius: 50%;
  z-index: 2;
}

/* Desktop Hover Tooltip */
.wa-chatbot__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: var(--fw-semibold);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.wa-chatbot__btn:hover .wa-chatbot__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Proactive Greeting Popup */
.wa-chatbot__popup {
  pointer-events: auto;
  position: relative;
  width: 320px;
  max-width: calc(100vw - 40px);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: 20px;
  padding: 16px 18px 18px;
  margin-bottom: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(37, 211, 102, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.94);
  transform-origin: bottom right;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-chatbot__popup.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-chatbot__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: color 0.2s ease, transform 0.2s ease;
}

.wa-chatbot__close:hover {
  color: #ffffff;
  transform: scale(1.15);
}

.wa-chatbot__popup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-chatbot__avatar {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  flex-shrink: 0;
}

.wa-chatbot__avatar svg {
  width: 20px;
  height: 20px;
  stroke: #25D366;
}

.wa-chatbot__status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border: 2px solid #0f172a;
  border-radius: 50%;
}

.wa-chatbot__agent-info {
  display: flex;
  flex-direction: column;
}

.wa-chatbot__agent-name {
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: var(--text-white);
  line-height: 1.2;
}

.wa-chatbot__agent-status {
  font-size: 11px;
  color: #25D366;
  font-weight: var(--fw-medium);
  margin-top: 2px;
}

.wa-chatbot__popup-body {
  padding-top: 12px;
}

.wa-chatbot__msg {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0 0 14px 0;
}

.wa-chatbot__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: var(--fw-bold);
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.wa-chatbot__action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .wa-chatbot {
    bottom: 18px;
    right: 18px;
  }

  .wa-chatbot__btn {
    width: 52px;
    height: 52px;
  }

  .wa-chatbot__icon {
    width: 26px;
    height: 26px;
  }

  .wa-chatbot__tooltip {
    display: none;
  }

  .wa-chatbot__popup {
    width: calc(100vw - 36px);
    right: 0;
    padding: 14px 16px 16px;
  }
}



