/* ============================================================
   UNIVERSE AI FUTURE SOLUTION - MAIN STYLESHEET
   Premium Light Theme | MNC Corporate | Mobile-First
   ============================================================ */

/* ---- 1. CSS Variables / Design Tokens ---- */
:root {
  /* Colors */
  --clr-primary: #6366f1;
  --clr-primary-dark: #4f46e5;
  --clr-primary-light: #e0e7ff;
  --clr-secondary: #8b5cf6;
  --clr-accent: #06b6d4;
  --clr-success: #10b981;
  --clr-warning: #f59e0b;
  --clr-error: #ef4444;

  /* Grays */
  --clr-white: #ffffff;
  --clr-bg: #f8f9fe;
  --clr-bg2: #f1f5ff;
  --clr-surface: #ffffff;
  --clr-border: #e5e7f0;
  --clr-text: #1a1d3a;
  --clr-text-light: #5b6180;
  --clr-text-muted: #8b92b0;
  --clr-heading: #0f1135;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --grad-hero: linear-gradient(135deg, #f8f9fe 0%, #eef2ff 40%, #f5f3ff 100%);
  --grad-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 254, 0.8) 100%);
  --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 249, 254, 0.5) 100%);

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(99, 102, 241, 0.06);
  --shadow-sm: 0 2px 8px rgba(99, 102, 241, 0.08);
  --shadow-md: 0 4px 20px rgba(99, 102, 241, 0.12);
  --shadow-lg: 0 8px 40px rgba(99, 102, 241, 0.15);
  --shadow-xl: 0 20px 60px rgba(99, 102, 241, 0.18);
  --shadow-card: 0 4px 24px rgba(15, 17, 53, 0.08);

  /* Border Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.8rem;
  --space-md: 1.2rem;
  --space-lg: 2rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 5.5rem;

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.4rem;
  --fs-2xl: 1.7rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.5rem;
  --fs-5xl: 3.2rem;
  --fs-6xl: 3.8rem;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Header Height */
  --header-h: 80px;

  /* Z-index */
  --z-header: 1000;
  --z-overlay: 1100;
  --z-modal: 1200;
  --z-toast: 1300;
  --z-float: 900;
}

/* ========================================= */
/* HOME SERVICES: Expandable Interaction     */
/* ========================================= */
.home-services-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 20%, rgba(6, 182, 212, 0.12), transparent 38%),
    radial-gradient(circle at 88% 10%, rgba(236, 72, 153, 0.12), transparent 35%),
    linear-gradient(180deg, #f7fbff 0%, #f6f8ff 100%);
}

.home-services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.4rem;
}

.home-service-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(79, 70, 229, 0.22);
  background: rgba(6, 16, 40, 0.88);
  color: #d9e8ff;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.1), rgba(168, 85, 247, 0.08), rgba(236, 72, 153, 0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.home-service-card:hover,
.home-service-card.is-open,
.home-service-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(6, 16, 40, 0.24);
  border-color: rgba(56, 189, 248, 0.55);
}

/* ---- HERO DASHBOARD PREVIEW ---- */
.hero-dashboard-preview {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
    z-index: 5;
}

.dash-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.dashboard-mockup {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 100px rgba(15, 17, 53, 0.15);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
}

.mock-header {
    background: var(--clr-bg);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--clr-border);
}

.mock-dots { display: flex; gap: 0.5rem; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; background: #e5e7f0; }
.mock-search { flex: 1; text-align: center; font-family: var(--font-mono); font-size: 0.7rem; color: var(--clr-text-muted); opacity: 0.6; }

.mock-body { flex: 1; display: flex; }
.mock-sidebar { width: 60px; background: var(--clr-bg); border-right: 1px solid var(--clr-border); padding: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.mock-item { height: 10px; background: #e5e7f0; border-radius: 2px; }
.mock-item.active { background: var(--clr-primary); opacity: 0.6; }

.mock-content { flex: 1; padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.mock-row { background: var(--clr-bg); height: 15px; border-radius: 4px; overflow: hidden; }
.mock-bar { height: 100%; background: var(--grad-primary); border-radius: 0 4px 4px 0; }
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; flex: 1; }
.mock-grid div { background: var(--clr-bg); border-radius: 12px; }

/* Floating Points */
.float-data-point {
    position: absolute;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.fp-dot { width: 10px; height: 10px; border-radius: 50%; background: #10b981; animation: pulse 2s infinite; }
.fp-label { font-size: 0.85rem; font-weight: 700; color: var(--clr-text); }
.fp-label span { color: var(--clr-primary); }

.fp-1 { top: 15%; left: -5%; }
.fp-2 { bottom: 25%; right: -5%; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { transform: scale(1.2); opacity: 0.8; box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.home-service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  height: auto;
  position: relative;
}

.home-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--clr-primary-light);
}

.service-card-shell {
    position: relative;
    z-index: 5;
}

.service-card-top {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 2rem; /* Increased gap */
  align-items: center;
  padding: 2rem; /* Increased padding */
}

.service-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100px;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  flex-shrink: 0;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-media-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--clr-primary);
  background: var(--clr-primary-light);
}

.service-headline h3 {
  color: var(--clr-heading);
  font-size: 1.6rem; /* Slightly larger */
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.service-subtitle {
  color: var(--clr-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: block;
}

.service-headline p {
  color: var(--clr-text-light);
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.service-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.service-btn {
  border-color: rgba(125, 211, 252, 0.5) !important;
  color: #e0f2fe !important;
}

.service-btn:hover {
  border-color: rgba(167, 139, 250, 0.85) !important;
  color: #fff !important;
}

.service-card-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-service-card:hover .service-card-expand {
  max-height: 800px;
  opacity: 1;
}

.expand-grid {
  padding: 1rem 1.2rem 1.25rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.expand-grid h4 {
  color: var(--clr-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.expand-grid p {
  color: var(--clr-text);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--clr-border);
  background: var(--clr-bg);
  color: var(--clr-primary);
}

.expand-grid ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.expand-grid li {
  color: var(--clr-text-light);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.expand-grid li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--clr-primary);
  font-size: 0.9rem;
}

.service-demo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 180px;
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.service-demo-link:hover {
  background: var(--clr-primary-dark);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.home-service-card.accent-cosmic-purple {
  border-color: rgba(167, 139, 250, 0.45);
}

.home-service-card.accent-neon-green {
  border-color: rgba(74, 222, 128, 0.45);
}

.home-service-card.accent-sunset-orange {
  border-color: rgba(251, 146, 60, 0.46);
}

.home-service-card.accent-crimson {
  border-color: rgba(244, 114, 182, 0.5);
}

.home-service-card.accent-ocean-teal {
  border-color: rgba(45, 212, 191, 0.46);
}

/* ========================================= */
/* PROBLEM VS SOLUTION: 3D Flip Grid         */
/* ========================================= */
.problem-solution-section {
  background: var(--clr-bg2) !important;
  border-bottom: 1px solid var(--clr-border);
}

.problem-solution-section .section-title,
.problem-solution-section .section-subtitle,
.problem-solution-section .section-label,
.problem-solution-section .problem-hint {
  color: var(--clr-heading);
}

.problem-solution-section .section-label {
  background: var(--clr-primary-light);
  border-color: rgba(59, 130, 246, 0.2);
  color: var(--clr-primary);
}

.problem-solution-section .section-title {
  max-width: 940px;
  margin-inline: auto;
}

.problem-hint {
  font-size: 0.85rem;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.ps-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
}

.ps-flip-card {
  perspective: 1400px;
  min-height: 180px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.ps-flip-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(0.2, 0.75, 0.2, 1);
  min-height: 180px;
}

.ps-flip-card.is-flipped .ps-flip-inner {
  transform: rotateY(180deg);
}

.ps-flip-card:hover,
.ps-flip-card:focus-within {
  transform: translateY(-4px);
  filter: drop-shadow(0 18px 34px rgba(2, 6, 23, 0.35));
}

.ps-face {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.ps-flip-card:hover .ps-face {
  border-color: var(--clr-primary-light);
  box-shadow: var(--shadow-md);
}

.ps-face-back {
  transform: rotateY(180deg);
  background: var(--clr-bg);
}

.ps-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.ps-face-front .ps-icon {
  background: #fef2f2;
  color: #ef4444;
  border: 1px solid #fee2e2;
}

.ps-face-back .ps-icon {
  background: #f0fdf4;
  color: #22c55e;
  border: 1px solid #dcfce7;
}

.ps-face h4 {
  color: var(--clr-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.ps-face p {
  color: #000000 !important;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
  margin: 0;
}

.ps-face span {
  margin-top: 0.48rem;
  font-size: 0.68rem;
  color: rgba(125, 211, 252, 0.88);
}

.ps-flip-card .ps-face-back .ps-icon {
  color: #86efac;
  border-color: rgba(74, 222, 128, 0.45);
  background: rgba(6, 78, 59, 0.3);
}

.ps-flip-card.accent-electric-blue .ps-face {
  border-color: rgba(56, 189, 248, 0.35);
}

.ps-flip-card.accent-success-green .ps-face {
  border-color: rgba(74, 222, 128, 0.34);
}

.ps-flip-card.accent-sunset-orange .ps-face {
  border-color: rgba(251, 146, 60, 0.35);
}

.ps-flip-card.accent-violet .ps-face {
  border-color: rgba(167, 139, 250, 0.34);
}

.ps-flip-card.accent-ocean-teal .ps-face {
  border-color: rgba(45, 212, 191, 0.34);
}

.ps-cta-wrap {
  margin-top: 2rem;
  text-align: center;
}

.ps-cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  margin-bottom: 0.85rem;
  background: rgba(14, 165, 233, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.45);
  color: #7dd3fc;
  font-weight: 700;
  font-size: 0.8rem;
}

.ps-cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .service-card-top {
    grid-template-columns: 115px 1fr;
  }

  .service-meta {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .expand-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card .service-card-expand {
    max-height: 0;
  }

  .home-service-card.is-open .service-card-expand {
    max-height: 560px;
  }

  .ps-grid {
    grid-template-columns: repeat(2, minmax(210px, 1fr));
  }
}

@media (max-width: 640px) {
  .service-card-top {
    grid-template-columns: 1fr;
  }

  .service-media {
    height: 150px;
  }

  .service-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .ps-grid {
    grid-template-columns: 1fr;
  }

  .ps-face {
    min-height: 170px;
  }
}

/* /* ---- TESTIMONIAL PREMIUM ---- */
.testimonial-premium-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.testimonial-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-primary-light);
}

.testi-quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 3.5rem;
    color: var(--clr-primary);
    opacity: 0.08;
}

.testi-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
    font-size: 0.9rem;
}

.testi-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--clr-text); /* Darker text */
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    font-weight: 500;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
}

.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--clr-primary-light);
    border: 3px solid var(--clr-white);
    box-shadow: var(--shadow-sm);
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-init {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--clr-primary);
}

.testi-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--clr-heading);
}

.testi-info span {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* ---- FAQ ACCORDION ---- */
.faq-accordion-custom {
    max-width: 900px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-acc-item {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
  /* CHALLENGE VS SOLUTION STYLES */
.ps-face {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ps-flip-card:hover .ps-face {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.ps-face-back {
  transform: rotateY(180deg);
  background: #f8fafc;
}

.ps-face h4 {
  color: var(--clr-heading) !important;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.ps-face p {
  color: #1e293b !important; /* Dark Slate for visibility */
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.ps-face span {
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-primary);
  opacity: 0.8;
}

.ps-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.ps-face-front .ps-icon { background: #fef2f2; color: #ef4444; border: 1px solid #fee2e2; }
.ps-face-back  .ps-icon { background: #f0fdf4; color: #22c55e; border: 1px solid #dcfce7; }
    box-shadow: var(--shadow-sm);
}

.faq-acc-item.active {
    border-color: var(--clr-primary);
    box-shadow: var(--shadow-md);
}

.faq-acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1.5rem;
}

.faq-acc-count {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--clr-primary);
    opacity: 0.5;
}

.faq-acc-title {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-heading);
}

.faq-acc-icon {
    font-size: 1rem;
    color: var(--clr-text-muted);
    transition: transform 0.3s ease;
}

.faq-acc-item.active .faq-acc-icon {
    transform: rotate(180deg);
    color: var(--clr-primary);
}

.faq-acc-item.active .faq-acc-title {
    color: var(--clr-primary);
}

.faq-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-acc-item.active .faq-acc-content {
    max-height: 500px;
}

.faq-acc-inner {
    padding: 0 2rem 2rem 4.5rem;
    color: var(--clr-text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-footer-cta {
    text-align: center;
    margin-top: 4rem;
}

.faq-footer-cta p {
    margin-bottom: 1.5rem;
    color: var(--clr-text-muted);
}

/* ---- 2. Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

::selection {
  background: var(--clr-primary);
  color: #fff;
}

/* ---- 3. Container ---- */
.container-xl {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width:1400px) {
  .container-xl {
    max-width: 1440px;
  }
}

/* ---- 4. Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--clr-heading);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.1rem, 2vw, var(--fs-xl));
}

h5 {
  font-size: var(--fs-lg);
}

p {
  color: var(--clr-text-light);
  line-height: 1.75;
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- 5. Section Utilities ---- */
.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-xl) 0;
}

.section-lg {
  padding: calc(var(--space-3xl) * 1.3) 0;
}

.section-bg {
  background: var(--clr-bg);
}

/* Removed duplicate home-service-card block */

/* FAQ Home Item */
.faq-item-home {
  position: relative;
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  border-radius: var(--radius-lg) !important;
  padding: 1.75rem !important;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease !important;
}

.faq-item-home:hover {
  border-color: var(--clr-primary-light);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.faq-item-home h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-item-home h4::before {
  content: '\f059';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--clr-primary);
  font-size: 1.2rem;
}

/* Better Table Quality in Admin */
.adm-table {
  border-spacing: 0 10px !important;
}

.adm-table tr {
  background: var(--adm-surface);
  border-radius: 8px;
  overflow: hidden;
}

.section-bg2 {
  background: var(--clr-bg2);
}

.section-dark {
  background: var(--clr-heading);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 640px;
  font-size: var(--fs-md);
  margin-bottom: var(--space-lg);
}

.section-header {
  margin-bottom: var(--space-lg);
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin-inline: auto;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--grad-primary);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.divider.center {
  margin-inline: auto;
}

/* ---- 6. Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.66rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity var(--transition-fast);
  border-radius: inherit;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.45);
  transform: translateY(-2px);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--grad-card);
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary-light);
}

.btn-secondary:hover {
  border-color: var(--clr-primary);
  background: var(--clr-primary-light);
}

.btn-outline-primary {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}

.btn-outline-primary:hover {
  background: var(--grad-primary);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--clr-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--clr-primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: var(--clr-primary);
}

.btn-dark {
  background: var(--clr-heading);
  color: #fff;
}

.btn-dark:hover {
  background: #2d3068;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.86rem 1.9rem;
  font-size: 0.96rem;
}

.btn-sm {
  padding: 0.48rem 1.02rem;
  font-size: 0.78rem;
}

.btn-xs {
  padding: 0.35rem 0.85rem;
  font-size: var(--fs-xs);
}

.w-100 {
  width: 100%;
  justify-content: center;
}

/* ---- 7. Cards ---- */
.card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--clr-primary-light);
}

.card-glass {
  background: var(--grad-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.card-body {
  padding: var(--space-lg);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--clr-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--clr-primary);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
  flex-shrink: 0;
}

.card:hover .card-icon {
  background: var(--grad-primary);
  color: #fff;
}

.card-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* ---- 8. HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  background: rgba(255, 255, 255, 0);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 24px rgba(15, 17, 53, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo .logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: var(--fs-md);
  font-weight: 800;
  color: var(--clr-heading);
}

.logo-main strong {
  color: var(--clr-primary);
}

.logo-sub {
  font-size: 0.6rem;
  color: var(--clr-text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .site-logo .logo-icon {
    width: 32px;
    height: 32px;
  }

  .logo-main {
    font-size: 0.95rem;
  }

  .logo-sub {
    display: none;
  }
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.desktop-nav li {
  position: relative;
}

.desktop-nav li.has-dropdown {
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.desktop-nav li.has-dropdown>a {
  display: inline-flex;
  align-items: center;
}

.desktop-nav a {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text);
  transition: all var(--transition-fast);
  position: relative;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--clr-primary);
  background: var(--clr-primary-light);
}

.nav-caret {
  margin-left: 0.35rem;
  font-size: 0.72rem;
  opacity: 0.7;
  transition: transform 0.25s ease;
}

.desktop-nav li.has-dropdown:hover .nav-caret,
.desktop-nav li.has-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: min(460px, 74vw);
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(99, 102, 241, 0.18);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 48px rgba(2, 6, 23, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  z-index: 1200;
}

.desktop-nav li.has-dropdown:hover .nav-dropdown,
.desktop-nav li.has-dropdown:focus-within .nav-dropdown,
.desktop-nav li.has-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.desktop-nav li.has-dropdown.open .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown-list {
  display: grid;
  gap: 0.38rem;
  max-height: none;
  overflow: visible;
}

.nav-dropdown.cols-2 {
  width: min(760px, 86vw);
}

.nav-dropdown.cols-2 .nav-dropdown-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.55rem;
}

.nav-dropdown.compact .nav-dd-item {
  align-items: center;
  padding: 0.62rem 0.68rem;
}

.nav-dropdown.compact .nav-dd-icon {
  width: 28px;
  height: 28px;
  margin-top: 0;
}

.nav-dropdown.compact .nav-dd-text strong {
  font-size: 1rem;
}

.nav-dd-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  border-radius: 12px;
  padding: 0.6rem 0.65rem;
  color: var(--clr-heading);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-dd-item:hover {
  background: rgba(99, 102, 241, 0.08);
  transform: translateX(2px);
}

.nav-dd-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border: 1px solid rgba(99, 102, 241, 0.24);
  background: rgba(99, 102, 241, 0.12);
  color: var(--clr-primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.nav-dd-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.nav-dd-text strong {
  font-size: 0.98rem;
  line-height: 1.25;
  color: var(--clr-heading);
}

.nav-dd-text small {
  font-size: 0.74rem;
  color: var(--clr-text-muted);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nav-dd-view-all {
  margin-top: 0.55rem;
  border-top: 1px dashed rgba(99, 102, 241, 0.28);
  padding-top: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--clr-primary-dark);
  text-decoration: none;
}

.nav-dd-view-all:hover {
  color: var(--clr-primary);
}

/* Global page polish for all internal pages */
.page-hero .page-hero-inner {
  max-width: 860px;
  margin-inline: auto;
}

.page-hero h1 {
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.section-subtitle,
.page-hero p {
  color: #4b5563;
  line-height: 1.72;
}

.section .card,
.section .feature-card,
.section .product-card,
.section .solution-card,
.section .why-card,
.section .integration-card,
.section .career-card,
.section .partner-type-card {
  border-radius: 16px;
}

.section .btn {
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.07);
}

.section .btn-outline-primary,
.section .btn-secondary {
  box-shadow: none;
}

.contact-page-section .form-card,
.quote-page-section .form-card {
  border: 1px solid rgba(99, 102, 241, 0.16);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.08);
  border-radius: 18px;
}

.contact-page-section .contact-info-item,
.quote-page-section [style*="display:flex;align-items:flex-start;gap:1rem"] {
  border-radius: 12px;
}

.legal-hero {
  padding-bottom: calc(var(--space-2xl) - 0.5rem);
}

.legal-page-section {
  padding-top: 0;
}

.legal-doc-card {
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(99, 102, 241, 0.14);
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.08);
}

.legal-doc-card h1,
.legal-doc-card h2,
.legal-doc-card h3,
.legal-doc-card h4 {
  color: var(--clr-heading);
  margin-top: 1.1rem;
  margin-bottom: 0.5rem;
}

.legal-doc-card p,
.legal-doc-card li {
  color: #334155;
  line-height: 1.82;
}

[id^="feature-"],
[id^="integration-"],
[id^="solution-"] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-xs);
  transition: background var(--transition-fast);
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--clr-heading);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-overlay) - 1);
  background: rgba(15, 17, 53, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-nav-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100dvh;
  background: var(--clr-white);
  z-index: var(--z-overlay);
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
  transition: right var(--transition);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  color: var(--clr-text);
  transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
  background: var(--clr-error);
  color: #fff;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav ul li a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--clr-text);
  transition: all var(--transition-fast);
}

.mobile-nav ul li a:hover {
  background: var(--clr-primary-light);
  color: var(--clr-primary);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-social {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--clr-border);
}

.mobile-nav-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  transition: all var(--transition-fast);
}

.mobile-nav-social a:hover {
  background: var(--grad-primary);
  color: #fff;
}

/* ---- 9. HERO SECTION ---- */
.hero-section {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: var(--space-3xl);
  background: var(--grad-hero);
}

/* Animated background canvas */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: blob1 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  animation: blob2 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes blob1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(-30px, 20px) scale(1.05)
  }

  66% {
    transform: translate(20px, -20px) scale(0.97)
  }
}

@keyframes blob2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(30px, -20px) scale(1.03)
  }

  66% {
    transform: translate(-20px, 30px) scale(0.98)
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--clr-primary);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-success);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4)
  }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s ease both 0.1s;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, var(--fs-md));
  color: var(--clr-text-light);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.9s ease both 0.2s;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
  animation: fadeInUp 0.9s ease both 0.3s;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-border);
  animation: fadeInUp 0.9s ease both 0.4s;
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-num {
  font-size: var(--fs-2xl);
  font-weight: 900;
  color: var(--clr-heading);
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease both 0.3s;
}

.hero-mockup {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(99, 102, 241, 0.15);
}

.hero-mockup-inner {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--clr-border);
  overflow: hidden;
}

.mockup-header {
  background: var(--clr-heading);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) {
  background: #ef4444;
}

.mockup-dot:nth-child(2) {
  background: #f59e0b;
}

.mockup-dot:nth-child(3) {
  background: #10b981;
}

.mockup-title {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.5rem;
  font-weight: 500;
}

.mockup-body {
  padding: 1.5rem;
  background: var(--clr-bg);
}

.mockup-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mockup-stat-card {
  background: var(--clr-white);
  border-radius: var(--radius-sm);
  padding: 1rem;
  border: 1px solid var(--clr-border);
}

.mockup-stat-card .msn {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--clr-heading);
}

.mockup-stat-card .msl {
  font-size: 0.65rem;
  color: var(--clr-text-muted);
  font-weight: 500;
  margin-top: 0.2rem;
}

.mockup-stat-card .msbadge {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.6rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.msbadge.up {
  background: rgba(16, 185, 129, 0.1);
  color: var(--clr-success);
}

.msbadge.down {
  background: rgba(239, 68, 68, 0.1);
  color: var(--clr-error);
}

.mockup-chart {
  height: 80px;
  background: var(--clr-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 0.75rem;
}

.mockup-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--grad-primary);
  opacity: 0.8;
  animation: barGrow 1.5s ease both var(--delay);
  transform-origin: bottom;
}

@keyframes barGrow {
  from {
    transform: scaleY(0)
  }

  to {
    transform: scaleY(1)
  }
}

/* Floating cards around mockup */
.floating-card {
  position: absolute;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-heading);
  white-space: nowrap;
  animation: float1 4s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  animation: float2 5s ease-in-out infinite;
}

.floating-card:nth-child(3) {
  animation: float3 6s ease-in-out infinite;
}

.floating-card-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.fc-1 {
  top: 10%;
  left: -80px;
}

.fc-2 {
  bottom: 20%;
  left: -60px;
}

.fc-3 {
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(10px)
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(-50%) translateX(0)
  }

  50% {
    transform: translateY(-50%) translateX(8px)
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* ---- 10. TRUSTED BY ---- */
.trusted-section {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-white);
  overflow: hidden;
}

.trusted-label {
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.logo-ticker {
  overflow: hidden;
  position: relative;
}

.logo-ticker::before,
.logo-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logo-ticker::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.logo-ticker::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.logo-track:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 50px;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-sm);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: all var(--transition);
  white-space: nowrap;
}

.logo-item:hover {
  border-color: var(--clr-primary-light);
  color: var(--clr-primary);
  background: var(--clr-primary-light);
}

.logo-item img {
  max-height: 28px;
  width: auto;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.logo-item:hover img {
  opacity: 1;
}

/* ---- 11. WHY CHOOSE US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

.why-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--clr-primary-light);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.16), rgba(139, 92, 246, 0.14));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--clr-primary);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
  border: 1px solid rgba(99, 102, 241, 0.18);
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.10);
}

.why-card:hover .why-card-icon {
  background: var(--grad-primary);
  color: #fff;
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.45);
}

.why-card h4 {
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

/* ---- 12. PRODUCTS SECTION ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-top: var(--space-lg);
}

.product-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  border-color: var(--clr-primary-light);
}

.product-card-banner {
  height: 180px;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0.08;
}

.product-card-banner-icon {
  font-size: 3.5rem;
  color: var(--clr-primary);
  position: relative;
  z-index: 1;
}

.product-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-category {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.product-card-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-card-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.65;
  flex: 1;
}

.product-card-footer {
  padding: 1rem var(--space-md);
  border-top: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.benefit-pill {
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--clr-bg);
  color: var(--clr-text-muted);
  font-size: 0.65rem;
  font-weight: 600;
  border: 1px solid var(--clr-border);
}

/* ---- 13. FEATURES SECTION ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: var(--space-md);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: default;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--clr-primary-light);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition);
}

/* Color variants */
.icon-blue {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.icon-purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.icon-green {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.icon-orange {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.icon-teal {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
}

.icon-red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.icon-gray {
  background: rgba(107, 114, 128, 0.1);
  color: #6b7280;
}

.feature-card:hover .feature-card-icon {
  background: var(--grad-primary);
  color: #fff;
}

.feature-card-content h4 {
  font-size: var(--fs-base);
  margin-bottom: 0.35rem;
}

.feature-card-content p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ---- 14. INTEGRATIONS SECTION ---- */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: var(--space-lg);
}

.integration-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.integration-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--clr-primary-light);
}

.integration-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.6rem;
  transition: all var(--transition);
}

.integration-card:hover .integration-logo {
  background: var(--clr-primary-light);
}

.integration-name {
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.integration-cat {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* ---- 15. SOLUTIONS SECTION ---- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

.solution-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 18% 12%, rgba(99, 102, 241, 0.18), transparent 42%),
    radial-gradient(circle at 86% 50%, rgba(139, 92, 246, 0.18), transparent 44%),
    radial-gradient(circle at 55% 105%, rgba(6, 182, 212, 0.14), transparent 54%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.solution-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.solution-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.25);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card:hover::after {
  transform: scaleX(1);
}

.solution-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--clr-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--clr-primary);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.solution-card:hover .solution-icon {
  background: var(--grad-primary);
  color: #fff;
}

.solution-card h4 {
  margin-bottom: 0.6rem;
}

.solution-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: 1.25rem;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: -0.25rem 0 1.05rem;
}

.solution-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(15, 17, 53, 0.78);
  background: rgba(99, 102, 241, 0.10);
  border: 1px solid rgba(99, 102, 241, 0.16);
}

.solution-icon,
.solution-card h4,
.solution-card p,
.solution-tags,
.solution-benefits,
.solution-card .btn {
  position: relative;
  z-index: 1;
}

.solution-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.solution-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: var(--clr-text);
}

.solution-benefit i {
  color: var(--clr-success);
}

/* ---- 16. HOW WE WORK (Workflow) ---- */
.workflow-section {
  background: var(--clr-bg);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: var(--space-lg);
  position: relative;
}

.workflow-step {
  text-align: center;
  padding: var(--space-md);
  position: relative;
}

.workflow-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: var(--fs-xl);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
  transition: all var(--transition);
}

.workflow-step:hover .workflow-step-num {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
}

.workflow-step h4 {
  font-size: var(--fs-md);
  margin-bottom: 0.4rem;
}

.workflow-step p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.workflow-connector {
  display: none;
  position: absolute;
  top: 30px;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: linear-gradient(to right, var(--clr-primary), var(--clr-secondary));
  opacity: 0.4;
}

/* ---- 17. TESTIMONIALS ---- */
.testimonials-section {
  background: var(--clr-bg);
  overflow: hidden;
}

.testimonial-swiper {
  padding: 1rem 0 3.5rem !important;
}

.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  height: auto !important;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: var(--fs-sm);
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: var(--fs-md);
  color: var(--clr-text);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  position: relative;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 4rem;
  line-height: 0;
  vertical-align: -0.4em;
  color: var(--clr-primary);
  opacity: 0.3;
  margin-right: 0.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--fs-lg);
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-author-info h5 {
  font-size: var(--fs-sm);
  margin-bottom: 0.1rem;
}

.testimonial-author-info span {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.swiper-pagination-bullet {
  background: var(--clr-primary);
}

.swiper-pagination-bullet-active {
  background: var(--clr-primary);
  width: 24px;
  border-radius: 3px;
}

/* ---- 18. STATS SECTION ---- */
.stats-section {
  background: var(--clr-heading);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.2), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.15), transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-suffix {
  font-size: 1.5rem;
}

.stat-label {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: rgba(99, 102, 241, 0.8);
}

/* ---- 19. CTA BANNER ---- */
.cta-banner {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: var(--space-2xl) auto;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-md);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.cta-glow-1 {
  top: -100px;
  right: -80px;
}

.cta-glow-2 {
  bottom: -100px;
  left: -80px;
}

/* ---- 20. CONTACT FORM ---- */
.contact-section {
  background: var(--clr-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--clr-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  font-size: var(--fs-md);
}

.contact-info-item h5 {
  font-size: var(--fs-sm);
  margin-bottom: 0.2rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.contact-info-item a:hover {
  color: var(--clr-primary);
}

.form-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}

.form-label.required::after {
  content: ' *';
  color: var(--clr-error);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  background: var(--clr-bg);
  font-size: var(--fs-sm);
  color: var(--clr-text);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--clr-primary);
  background: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.form-control.is-invalid {
  border-color: var(--clr-error);
}

.form-control::placeholder {
  color: var(--clr-text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-notice {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.honeypot {
  display: none !important;
}

/* ---- 21. PAGE HERO (Inner Pages) ---- */
.page-hero {
  background: var(--grad-hero);
  padding: calc(var(--header-h) + 3rem) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.1), transparent 60%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--clr-primary);
}

.breadcrumb-sep {
  opacity: 0.4;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: var(--fs-md);
  color: var(--clr-text-light);
  max-width: 640px;
  margin-inline: auto;
}

/* ---- 22. FOOTER ---- */
.footer-newsletter {
  background: var(--grad-primary);
  padding: var(--space-xl) 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  color: #fff;
  font-size: var(--fs-2xl);
  margin-bottom: 0.4rem;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-sm);
}

.newsletter-form {
  flex-shrink: 0;
}

.newsletter-input-group {
  display: flex;
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.newsletter-input-group input {
  flex: 1;
  min-width: 260px;
  padding: 0.85rem 1.5rem;
  border: none;
  outline: none;
  font-size: var(--fs-sm);
  border-radius: var(--radius-full) 0 0 var(--radius-full);
}

.newsletter-input-group .btn {
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  padding: 0.85rem 1.75rem;
}

.site-footer {
  background: var(--clr-heading);
  color: rgba(255, 255, 255, 0.8);
}

.footer-main {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.footer-brand .logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text-footer {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text-footer .logo-main {
  color: #fff;
}

.logo-text-footer .logo-sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer-about {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--grad-primary);
  color: #fff;
}

.footer-heading {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  transition: opacity var(--transition-fast);
  margin-right: -0.4rem;
}

.footer-links a:hover::before {
  opacity: 0.6;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-list li i {
  color: var(--clr-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-list a:hover {
  color: #fff;
}

.mt-4 {
  margin-top: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: #fff;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: var(--z-float);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: waFloat 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  color: #fff;
}

@keyframes waFloat {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4)
  }

  50% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6)
  }
}

.wa-tooltip {
  position: absolute;
  left: 110%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--clr-heading);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

/* Scroll to Top */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-float);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Cookies Notice */
.cookies-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 17, 53, 0.97);
  z-index: var(--z-toast);
  padding: 1rem 2rem;
  display: none;
  backdrop-filter: blur(10px);
}

.cookies-notice.show {
  display: block;
}

.cookies-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookies-inner p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.cookies-inner a {
  color: var(--clr-primary);
}

/* ---- 23. ADMIN LINK ---- */
.admin-float {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: var(--z-float);
}

.admin-float a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-heading);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: var(--fs-xs);
  font-weight: 600;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-lg);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ---- 24. PARTNER PAGE ---- */
.partner-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

.partner-type-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all var(--transition);
  text-align: center;
}

.partner-type-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: var(--clr-primary-light);
}

.partner-type-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: var(--clr-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--clr-primary);
  margin: 0 auto 1.25rem;
  transition: all var(--transition);
}

.partner-type-card:hover .partner-type-icon {
  background: var(--grad-primary);
  color: #fff;
}

.partner-type-card h4 {
  margin-bottom: 0.6rem;
}

.partner-type-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}

.partner-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
  margin-bottom: 1.25rem;
}

.partner-benefit {
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--clr-text);
}

.partner-benefit i {
  color: var(--clr-success);
}

/* ---- 25. CAREERS ---- */
.career-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: var(--space-lg);
}

.career-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all var(--transition);
  flex-wrap: wrap;
}

.career-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary-light);
  transform: translateX(4px);
}

.career-info h4 {
  margin-bottom: 0.4rem;
}

.career-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.6rem;
}

.career-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-text-muted);
}

.career-tag.highlight {
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  border-color: var(--clr-primary-light);
}

/* ---- 26. ALERTS ---- */
.alert {
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-left: 4px solid;
  margin-bottom: 1rem;
}

.alert-success {
  background: rgba(16, 185, 129, 0.08);
  border-color: var(--clr-success);
  color: #065f46;
}

.alert-error {
  background: rgba(239, 68, 68, 0.08);
  border-color: var(--clr-error);
  color: #991b1b;
}

.alert-info {
  background: rgba(99, 102, 241, 0.08);
  border-color: var(--clr-primary);
  color: #3730a3;
}

/* ---- 27. UTILITY ---- */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--clr-text-muted);
}

.text-primary {
  color: var(--clr-primary);
}

.fw-bold {
  font-weight: 700;
}

.fw-heavy {
  font-weight: 900;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  background: var(--clr-primary-light);
  color: var(--clr-primary);
}

.divider-line {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: var(--space-lg) 0;
}

/* ---- 28. LOADING / SKELETON ---- */
.skeleton {
  background: linear-gradient(90deg, var(--clr-bg) 0%, var(--clr-border) 50%, var(--clr-bg) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  from {
    background-position: 200% 0
  }

  to {
    background-position: -200% 0
  }
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero-inner {
    gap: 2.5rem;
  }
}

@media (max-width: 992px) {
  :root {
    --header-h: 64px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .fc-1,
  .fc-2,
  .fc-3 {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner-centered {
    padding: 0 1rem;
  }

  .colossal-title {
    font-size: 2.5rem;
  }

  .centered-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .section-lg {
    padding: var(--space-2xl) 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .integrations-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .cta-banner {
    padding: var(--space-xl) var(--space-md);
  }

  .newsletter-input-group {
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .newsletter-input-group input {
    border-radius: var(--radius-md);
    min-width: unset;
  }

  .newsletter-input-group .btn {
    border-radius: var(--radius-md);
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container-xl {
    padding-inline: 1rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
  }

  .products-grid,
  .features-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .career-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    bottom: 1rem;
    left: 1rem;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  .scroll-top-btn {
    bottom: 1rem;
    right: 1rem;
  }

  .partner-types-grid {
    grid-template-columns: 1fr;
  }
}

/* AOS customizations */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ========================================= */
/* ========================================= */
/* ✨ VIBRANT MAXIMUM-IMPACT SAAS OVERRIDE ✨ */
/* ========================================= */
:root {
  /* High-energy vibrant palette */
  --clr-primary: #8b5cf6;
  /* Electric Violet */
  --clr-primary-dark: #6d28d9;
  --clr-primary-light: #ede9fe;
  --clr-secondary: #ec4899;
  /* Hot Pink */
  --clr-accent: #06b6d4;
  /* Cyan */

  --clr-bg: #fafafa;
  --clr-bg2: #ffffff;
  --clr-surface: rgba(255, 255, 255, 0.7);
  --clr-border: rgba(139, 92, 246, 0.15);

  --clr-text: #334155;
  --clr-text-light: #64748b;
  --clr-heading: #0f172a;

  --grad-primary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --grad-accent: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  --grad-hero: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(139, 92, 246, 0.1);
  --shadow-lg: 0 20px 40px -10px rgba(139, 92, 246, 0.2);
  --shadow-xl: 0 30px 60px -15px rgba(236, 72, 153, 0.25);
  --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.4);

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

body,
html {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background: #f8fafc;
  color: var(--clr-text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--clr-heading);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



/* Vibrant Floating Buttons */
.btn {
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  isolation: isolate;
  border: none;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 10px 20px -5px rgba(236, 72, 153, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px -5px rgba(139, 92, 246, 0.5);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  color: var(--clr-primary);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.btn-glass:hover {
  background: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-md);
}

/* Card Glassmorphism Vibe */
.card,
.bento-box,
.product-zz-content,
.product-zz-visual {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl) !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.card:hover,
.bento-box:hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-8px) !important;
  border-color: rgba(139, 92, 246, 0.5) !important;
}

/* Centered Spectacular Hero */
.center-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-glows {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-glows .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 15s infinite alternate ease-in-out;
}

.hero-bg-glows .blob-1 {
  width: 600px;
  height: 600px;
  background: rgba(139, 92, 246, 0.3);
  top: -10%;
  left: -10%;
}

.hero-bg-glows .blob-2 {
  width: 500px;
  height: 500px;
  background: rgba(236, 72, 153, 0.3);
  top: 20%;
  right: -5%;
  animation-delay: -5s;
}

.hero-bg-glows .blob-3 {
  width: 800px;
  height: 400px;
  background: rgba(6, 182, 212, 0.2);
  bottom: -20%;
  left: 20%;
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

.hero-inner-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.pulsing-badge {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--clr-primary-dark);
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.pulsing-badge i {
  color: var(--clr-secondary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.colossal-title {
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.centered-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--clr-text-light);
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.btn-giant {
  font-size: 1.1rem;
  padding: 1.1rem 2.5rem;
}

/* The Hovering Dashboard */
.hero-dashboard-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  perspective: 1200px;
  z-index: 10;
}

.dashboard-mockup-frame {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.8);
  overflow: hidden;
  backdrop-filter: blur(20px);
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transform: rotateX(8deg) translateY(20px);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: top center;
}

.hero-dashboard-container:hover .dashboard-mockup-frame {
  transform: rotateX(0deg) translateY(0);
  box-shadow: var(--shadow-glow);
}

.mockup-header-bar {
  background: rgba(241, 245, 249, 0.8);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.d-red {
  background: #ef4444;
}

.d-yellow {
  background: #f59e0b;
}

.d-green {
  background: #10b981;
}

.mockup-url {
  flex-grow: 1;
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.mockup-body-image img {
  width: 100%;
  display: block;
  border-bottom: none;
}

/* Hero 'Patti' marquee (highly visible, light theme) */
.hero-patti {
  width: min(920px, 92vw);
  margin: 0 auto 0;
  padding: 0.7rem 0;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(99, 102, 241, 0.18);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.hero-patti::before,
.hero-patti::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.hero-patti::before {
  left: 0;
  background: linear-gradient(90deg, rgba(248, 249, 254, 1), rgba(248, 249, 254, 0));
}

.hero-patti::after {
  right: 0;
  background: linear-gradient(270deg, rgba(248, 249, 254, 1), rgba(248, 249, 254, 0));
}

.hero-patti-track {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.25rem;
  white-space: nowrap;
  animation: heroPattiScroll 16s linear infinite;
}

.hero-patti-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(15, 17, 53, 0.86);
  font-size: 0.88rem;
}

.hero-patti-track i {
  color: var(--clr-primary-dark);
}

@keyframes heroPattiScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-patti-track {
    animation: none;
  }
}

/* Floating Chips */
.floating-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 1);
  animation: float 6s infinite alternate ease-in-out;
}

.fc-left {
  top: 20%;
  left: -5%;
  animation-delay: -2s;
}

.fc-right {
  bottom: 30%;
  right: -5%;
  animation-delay: -4s;
}

.fc-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(6, 182, 212, 0.4);
}

.fc-right .fc-icon {
  background: var(--grad-primary);
  box-shadow: 0 4px 10px rgba(236, 72, 153, 0.4);
}

.fc-text small {
  display: block;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.fc-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--clr-heading);
}

/* Distinct Diffs Backgrounds */
#products-preview {
  background: radial-gradient(circle at 100% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%), #f8fafc !important;
}

#features-preview {
  background: radial-gradient(circle at 0% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%), #ffffff !important;
}

.workflow-section {
  background: radial-gradient(circle at 50% 100%, rgba(236, 72, 153, 0.05) 0%, transparent 50%), #f8fafc !important;
}

/* Structural Fixes */
.section-label {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--clr-primary-dark);
  font-weight: 800;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.divider {
  height: 6px;
  width: 80px;
  border-radius: 3px;
  background: var(--grad-primary);
  margin: 1.5rem 0;
  border: none;
  box-shadow: 0 4px 10px rgba(236, 72, 153, 0.3);
}

.divider.center {
  margin: 1.5rem auto;
}

/* Product Zig Zag Improvements */
.product-zz-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  transform: scale(1);
  transition: transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: saturate(1.05) contrast(1.02);
}

.product-zz-visual {
  isolation: isolate;
}

.product-visual-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.22), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.18), transparent 58%),
    radial-gradient(circle at 10% 85%, rgba(6, 182, 212, 0.16), transparent 55%);
  opacity: 0.95;
}

.product-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.08) 0%, rgba(2, 6, 23, 0.18) 100%),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), transparent 52%);
  pointer-events: none;
}

.product-zigzag {
  transition: transform 0.5s ease, filter 0.5s ease;
}

.product-zigzag:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 22px 46px rgba(2, 6, 23, 0.14));
}

.product-zigzag:hover .product-zz-visual img {
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.05);
}

/* Core Ecosystem (Redesigned) */
.core-ecosystem-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(6, 182, 212, 0.08), transparent 35%),
    radial-gradient(circle at 90% 15%, rgba(99, 102, 241, 0.09), transparent 38%),
    #f7faff !important;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2.5rem;
}

.ecosystem-card {
  background: #fff;
  border: 1px solid rgba(99, 102, 241, 0.16);
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ecosystem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(2, 6, 23, 0.12);
  border-color: rgba(99, 102, 241, 0.28);
}

.ecosystem-media {
  display: block;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #ecfeff 0%, #eef2ff 100%);
  position: relative;
  overflow: hidden;
}

.ecosystem-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ecosystem-card:hover .ecosystem-media img {
  transform: scale(1.05);
}

.ecosystem-media-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
  color: rgba(79, 70, 229, 0.72);
  background:
    radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.25), transparent 45%),
    radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.22), transparent 48%);
}

.ecosystem-body {
  padding: 1.05rem 1rem 1.1rem;
}

.ecosystem-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.ecosystem-category {
  display: inline-flex;
  align-items: center;
  padding: 0.26rem 0.68rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #334155;
  background: rgba(148, 163, 184, 0.18);
}

.ecosystem-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary-dark);
  background: rgba(99, 102, 241, 0.12);
}

.ecosystem-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  color: var(--clr-heading);
}

.ecosystem-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--clr-text-light);
  margin-bottom: 0.75rem;
}

.ecosystem-points {
  list-style: none;
  padding: 0;
  margin: 0 0 0.95rem;
  display: grid;
  gap: 0.42rem;
}

.ecosystem-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.46rem;
  font-size: 0.83rem;
  color: #334155;
}

.ecosystem-points li i {
  margin-top: 0.15rem;
  color: #16a34a;
}

.product-zz-content ul li i {
  font-size: 1.2rem;
}

/* Sleek Header */
.site-header {
  border-bottom: 1px solid transparent;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.desktop-nav a {
  padding: 0.6rem 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s;
  color: var(--clr-text);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: var(--clr-primary-light);
  color: var(--clr-primary-dark);
}

/* ========================================= */
/* 📱 MOBILE RESPONSIVENESS OVERRIDE        */
/* ========================================= */

@media (max-width: 991px) {

  .ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Zig Zag Layout Mobile */
  .product-zigzag {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .product-zigzag[data-aos="fade-left"] .product-zz-visual,
  .product-zigzag[data-aos="fade-right"] .product-zz-visual {
    order: -1;
  }

  /* Bento Grid Mobile */
  .bento-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .bento-box {
    grid-column: span 1 !important;
    padding: 2rem !important;
  }

  .bento-box:nth-child(1),
  .bento-box:nth-child(3) {
    grid-column: span 2 !important;
  }

  /* Timeline Layout Mobile */
  .workflow-timeline {
    margin-left: 0 !important;
  }

  .workflow-timeline>div[style*="position:absolute"] {
    left: 30px !important;
  }

  .timeline-step {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: stretch !important;
    padding-left: 5rem !important;
  }

  .timeline-step>div:first-child {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px !important;
  }

  .timeline-step .card {
    margin-left: 0 !important;
  }

  /* Hero Visual Mobile */
  .hero-dashboard-container {
    transform: scale(0.9);
  }

  .floating-chip {
    padding: 0.75rem 1rem !important;
  }

  .fc-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.1rem !important;
  }

  .fc-text small {
    font-size: 0.65rem !important;
  }

  .fc-text strong {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 768px) {

  /* Container restraints */
  .container-xl {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    width: 100% !important;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  /* Hero Section Mobile */
  .center-hero {
    padding-top: calc(var(--header-h) + 2rem);
    align-items: flex-start;
  }

  .hero-inner-centered {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }

  .pulsing-badge {
    font-size: 0.75rem !important;
    padding: 0.5rem 1rem !important;
    text-align: center;
    white-space: normal;
  }

  .colossal-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    width: 100%;
    word-break: break-word;
  }

  .centered-subtitle {
    font-size: 1rem !important;
    text-align: center !important;
    padding: 0 !important;
    width: 100%;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 0 !important;
    margin-bottom: 2rem !important;
  }

  .btn-giant {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 1rem !important;
    font-size: 1rem !important;
  }

  /* Hero Blob Hide on tiny screens to prevent scroll */
  .hero-bg-glows .blob-1,
  .hero-bg-glows .blob-2,
  .hero-bg-glows .blob-3 {
    width: 300px;
    height: 300px;
    opacity: 0.3;
  }

  /* Dashboard & Floating Chips Mobile */
  .hero-dashboard-container {
    perspective: none;
    transform: scale(1);
    padding: 0 !important;
    width: 100%;
    margin: 0;
  }

  .dashboard-mockup-frame {
    transform: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    width: 100%;
  }

  .floating-chip {
    display: none !important;
  }

  /* Bento & Grid Extra Small */
  .bento-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .bento-box:nth-child(1),
  .bento-box:nth-child(3) {
    grid-column: span 1 !important;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  @media (max-width: 768px) {
    .section {
      padding: 3rem 0 !important;
    }

    .card,
    .bento-box,
    .product-zz-content {
      padding: 1.25rem !important;
    }

    h2.section-title {
      font-size: 1.8rem !important;
      text-align: left !important;
    }

    .section-header {
      text-align: left !important;
      align-items: flex-start !important;
    }

    .section-subtitle {
      text-align: left !important;
      font-size: 0.95rem !important;
    }

    .divider.center {
      margin: 1rem 0 !important;
    }

    /* Inner Pages Mobile Grids */
    .product-detail-grid,
    .features-grid,
    .contact-grid,
    .careers-culture-grid {
      grid-template-columns: 1fr !important;
      gap: 2rem !important;
    }

    .page-hero {
      padding: calc(var(--header-h) + 2rem) 0 3rem !important;
    }

    div[style*="grid-template-columns"] {
      grid-template-columns: 1fr !important;
      gap: 1.5rem !important;
    }

    .feature-card {
      margin-bottom: 0.5rem;
    }

    .bento-grid {
      grid-template-columns: 1fr !important;
    }

    .bento-box {
      grid-column: span 1 !important;
      padding: 2rem !important;
    }

    /* Product Zig-Zag fix */
    .product-zigzag {
      grid-template-columns: 1fr !important;
      gap: 2rem !important;
    }

    .product-zigzag:nth-child(even) .product-zz-content {
      order: 2;
    }

    .product-zigzag:nth-child(even) .product-zz-visual {
      order: 1;
    }

    .ecosystem-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    /* Integrative & Career cards */
    .integrations-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
      gap: 0.75rem !important;
    }

    .career-card {
      flex-direction: column;
      gap: 1.5rem;
      align-items: flex-start !important;
    }

    .career-card .btn {
      width: 100%;
    }

    .workflow-timeline {
      padding-left: 0 !important;
    }

    .timeline-step {
      flex-direction: column !important;
      gap: 1rem !important;
    }

    .timeline-step>div:first-child {
      width: 100% !important;
      justify-content: flex-start !important;
    }

    .workflow-timeline::before {
      left: 30px !important;
    }
  }

  @media (max-width: 480px) {
    .colossal-title {
      font-size: 2.2rem !important;
    }

    .hero-btn-group {
      flex-direction: column;
      width: 100%;
    }

    .hero-btn-group .btn {
      width: 100%;
    }

    .integrations-grid {
      grid-template-columns: repeat(2, 1fr) !important;
    }

    .footer-grid {
      grid-template-columns: 1fr !important;
      gap: 3rem !important;
    }

    .footer-brand {
      text-align: center;
      align-items: center;
    }

    .social-links {
      justify-content: center;
    }
  }

  /* ---- COOKIES NOTICE COMPACT ---- */
  .cookies-notice {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    pointer-events: none;
  }

  .cookies-inner {
    pointer-events: auto;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 700px;
    width: 100%;
  }

  .cookies-content p {
    color: #fff;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
  }

  .cookies-content a {
    color: #06b6d4;
    text-decoration: underline;
    margin-left: 0.3rem;
  }

  .cookies-btns {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
  }

  .btn-cookie-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
  }

  .btn-cookie-link:hover {
    color: #fff;
  }

  @media (max-width: 640px) {
    .cookies-inner {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
      padding: 1.25rem;
    }

    .cookies-btns {
      width: 100%;
      justify-content: space-between;
    }
  }
}

/* ========================================= */
/* PROFESSIONAL FIT & ZOOM SAFETY FIXES      */
/* ========================================= */
html {
  font-size: clamp(14px, 0.85vw + 9px, 16px);
}

body {
  line-height: 1.65;
}

.header-inner {
  gap: 0.9rem;
}

.logo-main {
  font-size: clamp(0.95rem, 0.6vw + 0.7rem, 1.12rem);
}

.desktop-nav ul {
  gap: 0.12rem;
}

.desktop-nav a {
  padding: 0.5rem 0.78rem;
  font-size: 0.82rem;
}

.header-cta {
  gap: 0.5rem;
}

.header-cta .btn {
  padding: 0.6rem 0.95rem;
  font-size: 0.76rem;
  font-weight: 650;
}

.btn {
  padding: 0.75rem 1.35rem;
  font-size: 0.86rem;
}

.btn-giant {
  font-size: 0.96rem;
  padding: 0.9rem 1.7rem;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.9rem);
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
}

.colossal-title {
  font-size: clamp(2rem, 4.2vw, 3.75rem) !important;
}

.centered-subtitle {
  font-size: clamp(0.96rem, 1.35vw, 1.12rem) !important;
}

.hero-orbits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.orbit-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255, 255, 255, 0.15));
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.65);
  animation: heroOrbit 18s linear infinite;
}

.orbit-dot.dot-1 {
  top: 16%;
  left: 18%;
}

.orbit-dot.dot-2 {
  top: 24%;
  right: 14%;
  animation-duration: 24s;
  animation-direction: reverse;
}

.orbit-dot.dot-3 {
  bottom: 18%;
  left: 54%;
  animation-duration: 20s;
}

@keyframes heroOrbit {
  0% {
    transform: translate3d(0, 0, 0) scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: translate3d(42px, -26px, 0) scale(1.15);
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(0.9);
    opacity: 0.6;
  }
}

@media (max-width: 1320px) {
  .desktop-nav a {
    padding: 0.45rem 0.64rem;
    font-size: 0.79rem;
  }

  .header-cta .btn {
    padding: 0.56rem 0.8rem;
    font-size: 0.73rem;
  }
}

@media (max-width: 1180px) {
  .header-cta a:first-child {
    display: none;
  }

  .desktop-nav a {
    padding: 0.42rem 0.56rem;
    font-size: 0.76rem;
  }
}

@media (max-width: 991px) {

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .hero-cta-group {
    gap: 0.75rem;
  }

  .btn-giant {
    padding: 0.86rem 1.35rem;
    font-size: 0.9rem;
  }
}

/* ---- Features Page Advanced ---- */
.features-hero-advanced::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(59, 130, 246, 0.16), transparent 36%),
    radial-gradient(circle at 12% 78%, rgba(14, 165, 233, 0.14), transparent 38%);
  pointer-events: none;
}

.features-hero-advanced .page-hero-inner h1 {
  font-size: clamp(1.75rem, 3.8vw, 2.7rem);
  line-height: 1.14;
}

.features-hero-advanced .page-hero-inner p {
  font-size: clamp(0.9rem, 1.55vw, 1.03rem);
  max-width: 70ch;
}

.features-hero-metrics {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.features-metric-card {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0.85rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.features-metric-card strong {
  font-size: 1.08rem;
  line-height: 1;
  font-weight: 900;
  color: #0f172a;
}

.features-metric-card span {
  font-size: 0.72rem;
  color: #475569;
  letter-spacing: 0.02em;
}

.features-spotlight-section {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.7), rgba(255, 255, 255, 1));
}

.features-spotlight-layout {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.1rem;
  align-items: stretch;
}

.features-spotlight-main {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background:
    radial-gradient(circle at 85% 12%, rgba(37, 99, 235, 0.18), transparent 42%),
    linear-gradient(155deg, #f8fbff, #eef4ff);
  padding: 1.5rem;
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.09);
  overflow: hidden;
}

.spotlight-main-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.34);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1e40af;
}

.spotlight-main-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  margin: 1.05rem 0 0.95rem;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  color: #1d4ed8;
  background: linear-gradient(145deg, rgba(219, 234, 254, 0.98), rgba(191, 219, 254, 0.82));
  border: 1px solid rgba(59, 130, 246, 0.34);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.18);
}

.spotlight-main-icon i,
.features-mini-icon i,
.features-matrix-icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  line-height: 1;
  text-align: center;
}

.features-spotlight-main h3 {
  font-size: clamp(1.3rem, 2.7vw, 1.75rem);
  line-height: 1.2;
  margin-bottom: 0.62rem;
  color: #0f172a;
}

.features-spotlight-main p {
  color: #334155;
  line-height: 1.7;
  max-width: 62ch;
}

.spotlight-main-actions {
  margin-top: 1.12rem;
  display: flex;
  align-items: center;
  gap: 0.68rem;
  flex-wrap: wrap;
}

.features-spotlight-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.78rem;
}

.features-mini-card {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: #ffffff;
  padding: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.features-mini-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.42);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.features-mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: #2563eb;
  border: 1px solid rgba(96, 165, 250, 0.34);
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
}

.features-mini-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: #0f172a;
}

.features-mini-card p {
  font-size: 0.76rem;
  line-height: 1.62;
  color: #475569;
  margin: 0;
}

.features-matrix-section {
  position: relative;
  overflow: hidden;
}

.features-matrix-section::before {
  content: '';
  position: absolute;
  left: -120px;
  top: 22%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 72%);
  pointer-events: none;
}

.features-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.95rem;
  position: relative;
  z-index: 1;
}

.features-matrix-card {
  border-radius: 15px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 0.68rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.features-matrix-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.44);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.09);
}

.features-matrix-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  font-size: 1rem;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.features-matrix-text h5 {
  font-size: 0.87rem;
  margin-bottom: 0.22rem;
  color: #0f172a;
}

.features-matrix-text p {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.58;
  color: #475569;
}

.features-cta-section .cta-banner {
  margin-top: 0.35rem;
}

@media (max-width: 1100px) {
  .features-hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-spotlight-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .features-hero-metrics {
    grid-template-columns: 1fr;
  }

  .features-spotlight-main {
    padding: 1.2rem;
  }

  .spotlight-main-actions {
    gap: 0.55rem;
  }

  .features-mini-card {
    padding: 0.78rem;
  }

  .features-matrix-grid {
    grid-template-columns: 1fr;
  }
}

/* solutions.php Advanced Design */
.solutions-hero-advanced {
  position: relative;
  overflow: hidden;
  padding-bottom: 5rem;
}

.solutions-hero-advanced .hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.15;
}

.solutions-hero-advanced .hero-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--clr-primary);
  top: -200px;
  left: -100px;
}

.solutions-hero-advanced .hero-glow-2 {
  width: 500px;
  height: 500px;
  background: var(--clr-accent);
  bottom: -150px;
  right: -100px;
}

.solutions-hero-advanced .page-hero-inner {
  position: relative;
  z-index: 2;
}

.solutions-advanced-section .solutions-grid-background {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: linear-gradient(var(--clr-primary) 1px, transparent 1px), linear-gradient(90deg, var(--clr-primary) 1px, transparent 1px);
  background-size: 50px 50px;
}

.solutions-bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.soln-bento-card {
  position: relative;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.soln-bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(var(--clr-primary-rgb), 0.3);
}

.soln-bento-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.soln-bento-card:hover .soln-bento-glow {
  opacity: 1;
}

/* Color Classes for dynamic badges/icons */
.clr-blue {
  background: #3b82f6;
}

.clr-green {
  background: #10b981;
}

.clr-purple {
  background: #8b5cf6;
}

.clr-orange {
  background: #f59e0b;
}

.clr-pink {
  background: #ec4899;
}

.clr-teal {
  background: #14b8a6;
}

.clr-blue-txt {
  color: #3b82f6;
}

.clr-green-txt {
  color: #10b981;
}

.clr-purple-txt {
  color: #8b5cf6;
}

.clr-orange-txt {
  color: #f59e0b;
}

.clr-pink-txt {
  color: #ec4899;
}

.clr-teal-txt {
  color: #14b8a6;
}

.soln-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.soln-top h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.soln-middle p {
  color: var(--clr-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.soln-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.soln-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--clr-text);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.soln-benefits-list li i {
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

.soln-bottom {
  margin-top: auto;
}

.soln-cta-wrap {
  text-align: left;
  margin-top: 1rem;
}

.soln-bento-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-text);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.soln-bento-btn:hover {
  gap: 0.8rem;
  color: var(--clr-primary);
}

.soln-bento-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.transform-card {
  background: linear-gradient(135deg, var(--clr-surface) 0%, rgba(var(--clr-bg-alt-rgb), 0.5) 100%);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-2xl);
  padding: 4rem;
  margin: 3rem 0;
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.t-left h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.t-left p {
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.t-list {
  list-style: none;
  padding: 0;
}

.t-list li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

.t-list li i {
  color: var(--clr-primary);
  background: rgba(var(--clr-primary-rgb), 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

@media (max-width: 992px) {
  .transform-grid {
    grid-template-columns: 1fr;
  }

  .transform-card {
    padding: 2rem;
    margin: 1rem 0;
  }
}
