/* ================================================================
   Ai6iX Components
   ================================================================ */

/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--btn-radius);
  font-family: var(--font-display);
  font-size: var(--size-sm);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--ease-normal);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--ease-normal);
  background: rgba(255,255,255,0.1);
  border-radius: inherit;
}

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

/* Primary CTA */
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,0.6), 0 0 40px rgba(0,229,255,0.2);
}
.btn-primary:active { transform: translateY(0); }

/* Secondary Outline */
.btn-secondary {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(0,229,255,0.4);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(0,229,255,0.08);
  border-color: var(--cyan);
  box-shadow: var(--shadow-glow-cyan);
  transform: translateY(-2px);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}

/* Small */
.btn-sm {
  padding: 10px 22px;
  font-size: var(--size-xs);
}

/* Large */
.btn-lg {
  padding: 18px 44px;
  font-size: var(--size-md);
}

/* Icon button */
.btn svg, .btn .btn-icon { flex-shrink: 0; }

/* ─── Glass Card ─── */

.glass-card {
  background: var(--bg-glass);
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--ease-normal);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  opacity: 0;
  transition: opacity var(--ease-normal);
  border-radius: inherit;
  pointer-events: none;
}

.glass-card:hover {
  border-color: rgba(0,229,255,0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-glow-cyan);
}

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

/* Neon border accent variant */
.glass-card.cyan-accent {
  border-top: 1px solid rgba(0,229,255,0.3);
}
.glass-card.purple-accent {
  border-top: 1px solid rgba(139,92,246,0.4);
}
.glass-card.magenta-accent {
  border-top: 1px solid rgba(217,70,239,0.4);
}

/* ─── Service Card ─── */

/* ─── Service Card (Light Elite Style) ─── */

.service-card {
  background: var(--bg-card);
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  position: relative;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), var(--shadow-glow-purple);
  background: var(--bg-card-hover);
}

.service-card-image {
  padding: 12px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* ─── Master HUD Overlay (Uniform for all cards) ─── */
/* 1. Corner Brackets (Glowing Cyan) */
.service-card-image::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid rgba(0, 229, 255, 0.4);
  pointer-events: none;
  z-index: 10;
  border-radius: 4px;
  box-shadow: inset 0 0 10px rgba(0, 229, 255, 0.1);
  clip-path: polygon(
    0 0, 25px 0, 25px 2px, 2px 2px, 2px 25px, 0 25px,
    0 100%, 0 calc(100% - 25px), 2px calc(100% - 25px), 2px calc(100% - 2px), 25px calc(100% - 2px), 25px 100%,
    100% 100%, calc(100% - 25px) 100%, calc(100% - 25px) calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) calc(100% - 25px), 100% calc(100% - 25px),
    100% 0, 100% 25px, calc(100% - 2px) 25px, calc(100% - 2px) 2px, calc(100% - 25px) 2px, calc(100% - 25px) 0
  );
  background: 
    linear-gradient(to right, var(--cyan) 2px, transparent 2px) 0 0,
    linear-gradient(to bottom, var(--cyan) 2px, transparent 2px) 0 0,
    linear-gradient(to left, var(--cyan) 2px, transparent 2px) 100% 0,
    linear-gradient(to bottom, var(--cyan) 2px, transparent 2px) 100% 0,
    linear-gradient(to right, var(--cyan) 2px, transparent 2px) 0 100%,
    linear-gradient(to top, var(--cyan) 2px, transparent 2px) 0 100%,
    linear-gradient(to left, var(--cyan) 2px, transparent 2px) 100% 100%,
    linear-gradient(to top, var(--cyan) 2px, transparent 2px) 100% 100%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

/* 2. Branded Bottom Bar (Reads data-label from HTML) - Hologram Style refined */
.service-card-image::after {
  content: attr(data-label);
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  height: 48px;
  background: rgba(0, 229, 255, 0.12);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  border: 1px solid rgba(0, 229, 255, 0.4);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.4), 
    inset 0 0 20px rgba(0, 229, 255, 0.15);
  border-radius: 4px;
  transition: all var(--ease-normal);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.9);
}

.service-card:hover .service-card-image::after {
  background: rgba(0, 229, 255, 0.25);
  border-color: rgba(0, 229, 255, 0.8);
  box-shadow: 
    0 8px 30px rgba(0, 229, 255, 0.2), 
    0 0 20px rgba(0, 229, 255, 0.2),
    inset 0 0 25px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  text-shadow: 0 0 15px rgba(255, 255, 255, 1);
}
.service-card-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s var(--ease-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.02);
}

.service-card-body {
  padding: 0 24px 24px;
  background: transparent;
  backdrop-filter: none;
  border-top: none;
  transform: none;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 16px 0 8px;
  text-align: left;
  transition: color var(--ease-normal);
}

.service-card:hover .service-card-title {
  color: var(--cyan);
}

.service-card-content {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 20px;
}

.service-card-desc {
  overflow: hidden;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 100px;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(139, 92, 246, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all var(--ease-normal);
  width: 100%;
  margin-bottom: 8px;
  border: 1px solid rgba(0, 229, 255, 0.25);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 0 10px rgba(0, 229, 255, 0.1);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.btn-learn-more:hover {
  background: rgba(0, 229, 255, 0.12);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(0, 229, 255, 0.15), 
    0 0 20px rgba(0, 229, 255, 0.1),
    inset 0 0 15px rgba(255, 255, 255, 0.05);
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.9);
}

.btn-learn-more svg {
  transition: transform var(--ease-normal);
}

.btn-learn-more:hover svg {
  transform: translateX(4px);
}

/* ─── Stat Counter Card ─── */

.stat-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--ease-normal);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 0 0 4px 4px;
}

.stat-card:hover {
  border-color: rgba(0,229,255,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: var(--weight-black);
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: var(--size-sm);
  color: var(--text-secondary);
  font-weight: var(--weight-medium);
  line-height: var(--leading-normal);
}

/* ─── Pricing Card ─── */

.pricing-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 40px 32px;
  position: relative;
  transition: all var(--ease-normal);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: rgba(139,92,246,0.4);
  background: linear-gradient(145deg, #0d1428, #100d24);
  transform: scale(1.03);
  box-shadow: var(--shadow-glow-purple);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: #fff;
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: var(--size-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: var(--size-xl);
  font-weight: var(--weight-black);
  color: var(--text-primary);
  margin-bottom: 8px;
  white-space: nowrap;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: var(--weight-black);
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: var(--size-sm);
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-desc {
  font-size: var(--size-sm);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: var(--size-sm);
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features .check {
  width: 18px;
  height: 18px;
  background: var(--cyan-dark);
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  color: var(--cyan);
}

/* ─── Team / Testimonial Card ─── */

.testimonial-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 32px;
  position: relative;
  transition: all var(--ease-normal);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 80px;
  color: var(--cyan);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: rgba(0,229,255,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial-text {
  font-size: var(--size-md);
  color: var(--text-secondary);
  line-height: var(--leading-loose);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(0,229,255,0.3);
  object-fit: cover;
  overflow: hidden;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-bold);
  color: white;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  font-size: var(--size-sm);
}

.testimonial-role {
  font-size: var(--size-xs);
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

/* ─── Section Label / Eyebrow ─── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--size-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cyan);
  opacity: 0.5;
}

/* ─── Section Title ─── */

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: var(--weight-black);
  color: var(--text-primary);
  line-height: var(--leading-tight);
  margin-bottom: 20px;
}

.section-title .gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title .glow {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0,229,255,0.4);
}

.section-subtitle {
  font-size: var(--size-md);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
  max-width: 640px;
}

/* ─── Approach / Timeline Phase ─── */

.phase-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 24px 16px;
  position: relative;
  transition: all var(--ease-normal);
  text-align: center;
}

.phase-card:hover {
  border-color: rgba(0,229,255,0.25);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.phase-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--size-lg);
  font-weight: var(--weight-black);
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 0 24px rgba(0,229,255,0.25);
}

.phase-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.phase-title {
  font-family: var(--font-display);
  font-size: var(--size-lg);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: 10px;
}

.phase-desc {
  font-size: var(--size-sm);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

/* ─── Nav ─── */

.nav-link {
  font-size: var(--size-sm);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--ease-fast);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width var(--ease-normal);
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--cyan); }
.nav-link.active::after { width: 100%; }

/* ─── Tech / Partner Logo ─── */

/* ─── SOLUTION DRAWER ─── */
.drawer-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-normal);
}

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

.drawer-panel {
  position: absolute;
  top: 0;
  right: -560px;
  width: 560px;
  max-width: 100%;
  height: 100%;
  background: linear-gradient(165deg, #0d111a, #07090f);
  border-left: 1px solid rgba(0, 229, 255, 0.15);
  padding: 80px 48px;
  overflow-y: auto;
  transition: right 0.5s var(--ease-slow);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.8);
}

.drawer-overlay.active .drawer-panel {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.03);
  border: var(--border-subtle);
  border-radius: 50%;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-normal);
  z-index: 10;
}

.drawer-close:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: rotate(90deg);
}

.drawer-header {
  margin-bottom: 40px;
}

.drawer-eyebrow {
  display: block;
  font-size: var(--size-xs);
  font-weight: var(--weight-bold);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.drawer-title {
  font-family: var(--font-display);
  font-size: var(--size-3xl);
  font-weight: var(--weight-black);
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
}

.drawer-intro {
  font-size: var(--size-md);
  color: var(--text-secondary);
  line-height: var(--leading-loose);
}

.drawer-section {
  margin-bottom: 40px;
}

.drawer-section h4 {
  font-family: var(--font-display);
  font-size: var(--size-xs);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-section h4::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.deliverables-list {
  list-style: none;
  padding: 0;
}

.deliverables-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: var(--size-sm);
  color: var(--text-secondary);
}

.deliverables-list li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: bold;
  font-size: 16px;
  margin-top: -2px;
}

.drawer-roi-card {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.05);
}

.roi-label {
  font-size: var(--size-xs);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--weight-bold);
  margin-bottom: 8px;
  display: block;
}

.roi-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: var(--weight-black);
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(0,229,255,0.3);
}

.roi-desc {
  font-size: var(--size-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

.drawer-footer {
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ─── AUTOMATION SUITES GRID ─── */
.suites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.suite-card {
  perspective: 1000px;
  cursor: pointer;
}

.suite-card-inner {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 40px 32px;
  transition: all var(--ease-slow);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.suite-card:hover .suite-card-inner {
  transform: translateY(-8px) rotateX(2deg);
  border-color: var(--purple);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(139,92,246,0.15);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  background: rgba(10, 15, 30, 0.4);
}

/* Form Validation Styles */
.was-validated .form-input:invalid,
.was-validated .form-textarea:invalid,
.was-validated .form-select:invalid {
  border-color: #ef4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.05);
}
.was-validated .form-input:invalid:focus,
.was-validated .form-textarea:invalid:focus,
.was-validated .form-select:invalid:focus {
  border-color: #ef4444;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.suite-card-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.3s;
}

.suite-card:hover .suite-card-inner::after {
  opacity: 1;
}

.suite-tag {
  font-size: 10px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: block;
}

.suite-icon {
  font-size: 48px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.suite-card h4 {
  font-family: var(--font-display);
  font-size: var(--size-xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.suite-card p {
  font-size: var(--size-sm);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
  margin-bottom: 32px;
  flex: 1;
}

.suite-explore {
  font-size: var(--size-sm);
  font-weight: var(--weight-bold);
  color: var(--purple);
  transition: gap 0.3s;
}

.suite-card:hover .suite-explore {
  color: var(--cyan);
}


/* ─── MODULAR TOOLKITS GRID ─── */
.grid-6up {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.toolkit-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px 16px;
  cursor: pointer;
  transition: all var(--ease-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.toolkit-card:hover {
  background: rgba(0, 229, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2), 0 0 15px rgba(0, 229, 255, 0.1);
}

.tk-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tk-header i {
  font-size: 28px;
  font-style: normal;
  line-height: 1;
}

.tk-header span {
  font-size: 11px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.3s;
}

.toolkit-card:hover .tk-header span {
  color: var(--cyan);
}


/* ─── FAQ ─── */

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  font-size: var(--size-md);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  transition: color var(--ease-fast);
  user-select: none;
}

.faq-question:hover { color: var(--cyan); }

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
  font-size: 18px;
  transition: all var(--ease-normal);
}

.faq-item.open .faq-toggle {
  background: var(--cyan-dark);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ease-slow), padding var(--ease-slow);
  font-size: var(--size-sm);
  color: var(--text-secondary);
  line-height: var(--leading-loose);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE CAROUSEL UTILITIES
════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .mobile-carousel {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px !important;
    padding-bottom: 24px !important; /* Space for hidden scrollbar */
    padding-inline: 20px !important; /* Edge bleed */
    margin-inline: -20px !important; /* Edge bleed */
    scroll-padding-inline: 20px;
    align-items: stretch !important; /* Keep cards same height */
  }

  .mobile-carousel > * {
    scroll-snap-align: center;
    flex: 0 0 85% !important; /* Limit card width to 85% of screen */
    max-width: 85% !important;
  }

  /* Hide scrollbar for a clean native app look */
  .mobile-carousel::-webkit-scrollbar {
    display: none;
  }
  .mobile-carousel {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

  /* Specific fix for org chart wrapping */
  .mobile-scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    margin-inline: -20px;
    padding-inline: 20px;
  }
  .mobile-scroll-container > * {
    min-width: 800px; /* Force minimum width to prevent squashing */
  }

  /* --- Refined Proportional Scaling for Mobile Swipes --- */
  
  /* Stats / Impact */
  .mobile-carousel .stat-card { padding: 30px 20px !important; }
  .mobile-carousel .stat-number { font-size: clamp(2.5rem, 10vw, 3rem) !important; margin-bottom: 8px !important; }
  .mobile-carousel .stat-label { font-size: 0.9rem !important; }
  
  /* Compare (Before / After) */
  .mobile-carousel.compare-wrap > div { padding: 30px 20px !important; }
  .compare-header { font-size: 1.1rem !important; padding: 12px 16px !important; }
  .compare-body { padding: 16px !important; }
  .compare-item { font-size: 0.85rem !important; }
  
  /* Approach (5 Phases) */
  .mobile-carousel .phase-card { padding: 30px 20px !important; }
  .mobile-carousel .phase-svg { height: 110px !important; margin-bottom: 20px !important; }
  .mobile-carousel .hologram-title { font-size: 1.3rem !important; margin-bottom: 12px !important; }
  .mobile-carousel .phase-desc-centered { font-size: 0.85rem !important; line-height: 1.5 !important; }
  .approach-connector { display: none !important; } /* Hide the linking line on mobile since it breaks vertical layout */
  
  /* Pricing */
  .mobile-carousel .pricing-card { padding: 30px 20px !important; }
  .mobile-carousel .pricing-price { font-size: 2.2rem !important; margin: 12px 0 !important; }
  .mobile-carousel .pricing-desc { font-size: 0.9rem !important; }
  
  /* Testimonials */
  .mobile-carousel .testimonial-card { padding: 30px 20px !important; }
  .mobile-carousel .testimonial-text { font-size: 0.95rem !important; line-height: 1.5 !important; margin-bottom: 24px !important; }
}
/* ─── Badge / Tag ─── */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-cyan {
  background: var(--cyan-dark);
  border: var(--border-cyan);
  color: var(--cyan);
}
.badge-purple {
  background: var(--purple-dark);
  border: var(--border-purple);
  color: var(--text-purple);
}

/* ─── Floating CTA ─── */

.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: var(--z-overlay);
  animation: glowPulsePurple 3s ease-in-out infinite;
}

/* ─── Scroll Top Button ─── */

.scroll-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: var(--border-cyan);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--ease-normal);
  z-index: var(--z-overlay);
  font-size: 18px;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--cyan-dark);
  box-shadow: var(--shadow-glow-cyan);
}

/* ─── Before/After Comparison ─── */

.compare-col { flex: 1; }

.compare-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: var(--size-sm);
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.compare-icon-x {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: 11px;
  flex-shrink: 0;
}

.compare-icon-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cyan-dark);
  border: var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 11px;
  flex-shrink: 0;
}

/* ─── Detailed Solutions View ─── */
.detailed-solutions-container {
  width: 100%;
  transition: all 0.6s var(--ease-slow);
  margin-top: 40px;
  transform: translateY(10px);
}

.detailed-header {
  margin-bottom: 32px;
  display: flex;
  justify-content: flex-start;
}

.btn-back {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 12px;
  transition: all var(--ease-normal);
}

.btn-back:hover {
  color: var(--cyan);
  background: var(--cyan-dark);
}

.btn-back svg {
  transition: transform var(--ease-normal);
}

.btn-back:hover svg {
  transform: translateX(-4px);
}

.detailed-grid {
  display: flex;
  justify-content: center;
  width: 100%;
}

.detailed-tile {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 64px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-width); /* Full section width */
  overflow: hidden;
  transition: all 0.5s var(--ease-slow);
  backdrop-filter: blur(20px);
}

.tile-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-primary);
}

.tile-header {
  margin-bottom: 40px;
}

.tile-header h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-cyan {
  color: var(--cyan) !important;
  background: none;
  -webkit-text-fill-color: initial;
}

.tile-tagline {
  font-size: 18px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.5;
  opacity: 0.9;
}

.tile-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 992px) {
  .tile-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.tile-body-left p {
  font-size: 16px;
  color: #cad4e0; /* Brighter gray for better legibility on dark background */
  line-height: 1.8;
  margin-bottom: 24px;
}

.deliverables-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px;
}

.deliverables-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 24px;
}

.deliverables-header svg {
  display: none; /* Removed toggle icon */
}

.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.deliverables-list li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

.outcome-box {
  background: linear-gradient(135deg, var(--bg-dark), #0a0e1a);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 32px;
  margin-top: 32px;
}

.outcome-box strong {
  display: block;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.outcome-box p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.tile-footer {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.cta-label {
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


@media (max-width: 768px) {
  .detailed-tile {
    padding: 32px 24px;
  }
}
