@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@1,400;1,600;1,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-page: #ffffff;
  --bg-page-alt: #f8fafc;
  --bg-navy: #0b1224;
  --bg-navy-light: #152244;
  --accent-blue: #0ea5e9;
  --accent-blue-hover: #0284c7;
  --bg-accent-blue-alpha: rgba(14, 165, 233, 0.12);

  /* Mapped for backward compatibility */
  --accent-green: var(--accent-blue);
  --accent-green-hover: var(--accent-blue-hover);
  --bg-accent-green-alpha: var(--bg-accent-blue-alpha);
  --border-light: #e2e8f0;

  /* Text Colors */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --text-on-navy: #f8fafc;
  --text-on-navy-muted: #94a3b8;

  /* Fonts */
  --font-sans-head: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-sans-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif-accent: 'Playfair Display', Georgia, serif;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans-head);
  color: var(--text-main);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

/* Sticky Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(11, 18, 36, 0.92);
  /* Opaque enough to be clearly visible over all backgrounds */
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* Clear divider line for visibility */
  transition: background-color 0.4s ease, padding 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  /* Soft shadow to distinguish it from page content */
}

header.scrolled {
  background-color: rgba(5, 10, 20, 0.92);
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  padding: 0.15rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-icon-img {
  height: 40px;
  width: auto;
  display: block;
}

.logo-text-img {
  height: 23px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  /* Ensure the dark logo text is bright white and visible on the dark navy header background */
}

.logo-accent {
  width: 3px;
  height: 24px;
  background-color: var(--accent-green);
  border-radius: 2px;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: var(--font-sans-head);
  letter-spacing: -0.025em;
  color: var(--text-on-navy);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-on-navy-muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #0ea5e9);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-arrow {
  display: inline-block;
  font-size: 0.7rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: rgba(11, 18, 36, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.6rem 0;
  min-width: 170px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--text-on-navy-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  border-radius: 6px;
  margin: 0 0.5rem;
  white-space: nowrap;
}

.dropdown-item:hover {
  background-color: rgba(99, 102, 241, 0.12);
  color: #ffffff;
  transform: translateX(3px);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #ffffff;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
  margin-left: 0.5rem;
}

.btn-header-cta:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  color: #ffffff;
}

.btn-header-cta:active {
  transform: translateY(-0.5px);
}

/* Hamburger mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-on-navy);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero-wrapper {
  padding: 2.5rem 0 1.5rem 0;
  perspective: 1500px;
}

.hero-card {
  background-color: #050b14;
  transform-style: preserve-3d;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
    linear-gradient(145deg, #090f1d, #040812);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 4rem 4rem 3.5rem 4rem;
  color: var(--text-on-navy);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
}

/* Grid pattern overlay */
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black, transparent 80%);
  pointer-events: none;
  opacity: 0.8;
  z-index: 1;
}

/* Decorative soft glow background on hero card */
.hero-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.08) 40%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
  z-index: 1;
  animation: floatGlow 15s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-15%, 15%) scale(1.15);
  }
}

.hero-card>* {
  position: relative;
  z-index: 2;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--bg-accent-green-alpha);
  border: 1px solid rgba(0, 176, 116, 0.25);
  color: var(--accent-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-heading {
  font-size: 3.25rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text-on-navy);
  max-width: 900px;
}

.hero-heading .typed-words {
  display: inline-block;
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
  vertical-align: bottom;
  height: 1.25em;
  overflow: visible;
}

.typed-word {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  opacity: 0;
  transform: rotateX(-90deg) translateZ(10px) translateY(10px);
  transform-origin: 50% 100%;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 35%, #a855f7 70%, #38bdf8 100%);
  background-size: 300% 100%;
  animation: gradientShift 8s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 35px rgba(129, 140, 248, 0);
}

.typed-word.active {
  position: relative;
  opacity: 1;
  transform: rotateX(0deg) translateZ(0) translateY(0);
  pointer-events: auto;
  text-shadow: 0 0 45px rgba(129, 140, 248, 0.35);
}

.typed-word.exit {
  opacity: 0;
  transform: rotateX(90deg) translateZ(10px) translateY(-10px);
  transform-origin: 50% 0%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Hero Card Glow effect */
.hero-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(99, 102, 241, 0.15), rgba(56, 189, 248, 0.05) 50%, transparent 80%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1 !important;
  /* Forces it to reside behind text/buttons */
}

.hero-card:hover .hero-card-glow {
  opacity: 1;
}

/* Staggered entrance animations for hero components on page load */
.hero-card.active .trust-badge {
  opacity: 0;
  animation: heroFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.05s;
}

.hero-card.active .hero-title-flip {
  display: inline-block;
  opacity: 0;
  transform-origin: 50% 100%;
  animation: heroTitleFlipIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.15s;
}

.hero-card.active .typed-words {
  opacity: 0;
  transform-origin: 50% 100%;
  animation: heroTitleFlipIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.22s;
}

.hero-card.active .hero-description {
  opacity: 0;
  animation: heroFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.32s;
}

.hero-card.active .hero-actions {
  opacity: 0;
  animation: heroFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.42s;
}

@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTitleFlipIn {
  0% {
    opacity: 0;
    transform: rotateX(-80deg) translateY(15px) translateZ(10px);
  }

  100% {
    opacity: 1;
    transform: rotateX(0deg) translateY(0) translateZ(0);
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-on-navy-muted);
  max-width: 750px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--accent-green);
  color: #0b1224;
  border: 1px solid var(--accent-green);
}

.btn-primary:hover {
  background-color: var(--accent-green-hover);
  border-color: var(--accent-green-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-on-navy);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.certified-bar {
  background-color: #080d1a;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  margin-top: -1px;
  /* Join Hero Card but style nicely */
  position: relative;
  z-index: 2;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.certified-title {
  color: var(--text-on-navy-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.certified-items {
  display: flex;
  gap: 3rem;
}

.certified-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.certified-name {
  color: var(--text-on-navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.certified-sub {
  color: var(--text-on-navy-muted);
  font-size: 0.7rem;
  font-weight: 500;
  margin-top: 0.1rem;
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  position: relative;
  background-color: var(--bg-page);
}

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

.stat-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.95));
  border: 1px solid rgba(14, 165, 233, 0.08);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.02);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.stat-card:hover {
  border-color: rgba(14, 165, 233, 0.25);
  box-shadow: 0 12px 30px -10px rgba(14, 165, 233, 0.12);
}

/* Vertical expanding border anim */
.stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 4px;
  background-color: var(--accent-blue);
  border-radius: 0 4px 4px 0;
  transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1), top 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

.stat-card:hover::before {
  top: 0;
  height: 100%;
  background-color: var(--accent-blue-hover);
}

/* Light tracking glow */
.stat-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(120px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(14, 165, 233, 0.08), transparent 80%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.stat-card:hover .stat-card-glow {
  opacity: 1;
}

.stat-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.06);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
  flex-shrink: 0;
  z-index: 2;
  transform: translateZ(20px);
}

.stat-icon {
  width: 22px;
  height: 22px;
}

.stat-card:hover .stat-icon-wrapper {
  transform: translateZ(25px) scale(1.1) rotate(5deg);
  background: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.25);
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 2;
  transform: translateZ(10px);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-main);
  font-family: var(--font-sans-head);
  transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
  color: var(--accent-blue);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
  color: var(--text-main);
}

/* Section Header (WHAT WE DO) */
.section-tag {
  color: var(--accent-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--text-main);
  max-width: 100%;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 100%;
  line-height: 1.6;
}

.what-we-do-intro {
  margin-bottom: 4rem;
}

/* Pillars Grid Section */
.pillars-section {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 0;
}

.pillar-card {
  background-color: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 176, 116, 0.3);
  box-shadow: 0 10px 20px -4px rgba(0, 176, 116, 0.06), 0 4px 12px -2px rgba(0, 176, 116, 0.03);
}

.pillar-meta {
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pillar-icon-box {
  width: 20px;
  height: 20px;
  background-color: var(--accent-green);
  border-radius: 4px;
  margin-bottom: 0.25rem;
}

.pillar-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
}

.pillar-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  min-height: 3.75rem;
  /* Ensure cards align height-wise */
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.pillar-list-item {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 500;
  position: relative;
  padding-left: 1.15rem;
}

.pillar-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--accent-green);
  border-radius: 50%;
}

/* Platforms Section */
.platforms-section {
  background-color: var(--bg-page-alt);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.platforms-intro {
  margin-bottom: 1.75rem;
}

.platforms-explorer {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2.5rem;
  align-items: stretch;
}

/* Tab menu */
.platform-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.platform-tab {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-smooth);
  width: 100%;
}

.platform-tab:hover {
  transform: translateX(4px);
  border-color: var(--brand-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.platform-tab.active {
  background: var(--brand-bg);
  border-color: var(--brand-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05), inset 0 0 0 1px var(--brand-color);
}

.tab-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--bg-page-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.tab-icon svg {
  width: 20px;
  height: 20px;
}

.platform-tab:hover .tab-icon,
.platform-tab.active .tab-icon {
  background: var(--bg-page);
  color: var(--brand-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.tab-name {
  font-family: var(--font-sans-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.tab-subtitle {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Detail Showcase container */
.platform-showcase {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: grid;
  grid-template-columns: 1fr;
}

/* Detailed showcase panel */
.showcase-panel {
  grid-area: 1 / 1 / 2 / 2;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  display: flex;
  padding: 2.25rem;
  gap: 2rem;
  align-items: center;
}

.showcase-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 2;
}

.showcase-content {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.showcase-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.panel-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.showcase-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.showcase-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.specialization-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.specialization-tags .tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-page-alt);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--border-light);
}

.capability-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.capability-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.4;
}

.capability-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-color);
}

.showcase-visual {
  flex: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.01) 0%, transparent 70%);
}

.schematic-container {
  width: 100%;
  max-width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blueprint-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.04));
}

/* Animations for Blueprint */
.pulsing-core {
  animation: pulse-core 3s infinite ease-in-out;
  transform-origin: 100px 100px;
}

.flow-line {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: flow-run 4s infinite linear;
}

.flow-line.line-1 {
  animation-delay: 0s;
}

.flow-line.line-2 {
  animation-delay: 2s;
}

@keyframes pulse-core {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
    filter: drop-shadow(0 0 8px var(--brand-color));
  }
}

@keyframes flow-run {
  0% {
    stroke-dashoffset: 100;
  }

  100% {
    stroke-dashoffset: -100;
  }
}

/* Mobile responsiveness for Platforms section */
@media (max-width: 991px) {
  .platforms-explorer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .platform-tabs {
    flex-direction: row;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.75rem;
    gap: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .platform-tabs::-webkit-scrollbar {
    display: none;
  }

  .platform-tab {
    flex: 0 0 auto;
    width: auto;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .platform-tab:hover {
    transform: none;
  }

  .tab-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }

  .tab-icon svg {
    width: 16px;
    height: 16px;
  }

  .tab-subtitle {
    display: none;
  }

  .tab-name {
    font-size: 0.85rem;
  }

  .showcase-panel {
    flex-direction: column;
    padding: 1.75rem;
    gap: 1.5rem;
  }

  .showcase-content {
    order: 1;
  }

  .showcase-visual {
    order: 0;
    min-height: 140px;
  }

  .schematic-container {
    max-width: 140px;
    height: 140px;
  }
}

/* Footer Section */
footer {
  background-color: var(--bg-navy);
  color: var(--text-on-navy-muted);
  padding: 2rem 0 1.25rem 0;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.brand-col {
  padding-right: 1rem;
}

.brand-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-logo span {
  font-family: var(--font-sans-head);
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 176, 116, 0.06);
  border: 1px solid rgba(0, 176, 116, 0.2);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

.status-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #00b074;
  border-radius: 50%;
  display: inline-block;
  animation: status-pulse-dot 1.8s infinite ease-in-out;
}

.status-pulse-text {
  font-size: 0.65rem;
  font-weight: 750;
  color: #00b074;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes status-pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
    box-shadow: 0 0 0 0 rgba(0, 176, 116, 0.4);
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(0, 176, 116, 0);
  }
}

.footer-desc {
  line-height: 1.45;
  color: var(--text-on-navy-muted);
  font-size: 0.78rem;
  margin-bottom: 0.25rem;
}

.footer-newsletter {
  margin-top: 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.newsletter-heading {
  font-family: var(--font-sans-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-on-navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.newsletter-form {
  display: flex;
  position: relative;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  max-width: 280px;
}

.newsletter-form:focus-within {
  border-color: var(--accent-blue);
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.15);
}

.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.3rem 0.5rem;
  color: #ffffff;
  font-size: 0.75rem;
  font-family: var(--font-sans-body);
  outline: none;
  width: 100%;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-submit {
  border: none;
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent-blue);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin-right: 2px;
}

.newsletter-submit:hover {
  background: var(--accent-blue);
  color: #0b1224;
  transform: scale(1.04);
}

.newsletter-submit svg {
  width: 14px;
  height: 14px;
}

.newsletter-message {
  font-size: 0.75rem;
  transition: all 0.3s ease;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.newsletter-message.active {
  height: auto;
  margin-top: 0.2rem;
  opacity: 1;
}

.newsletter-message.success {
  color: #00b074;
}

.newsletter-message.error {
  color: #ef4444;
}

.footer-clocks {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.35rem;
  max-width: 280px;
}

.clock-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  flex: 1 1 calc(50% - 0.25rem);
}

.clock-icon {
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

.clock-icon svg {
  width: 14px;
  height: 14px;
}

.clock-details {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.clock-city {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-on-navy-muted);
}

.clock-time {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-on-navy);
  font-variant-numeric: tabular-nums;
}

.footer-contacts {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.35rem;
  flex-wrap: wrap;
}

.footer-contact-link {
  color: var(--text-on-navy-muted);
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: var(--accent-blue);
}

.footer-col h4 {
  color: var(--text-on-navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a {
  color: var(--text-on-navy-muted);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
}

.footer-links a::before {
  content: '→';
  font-weight: 700;
  color: var(--accent-blue);
  font-size: 0.75rem;
  margin-right: 5px;
  display: inline-block;
  opacity: 0;
  transform: translateX(-6px);
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
  width: 0;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
  width: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-text {
  font-size: 0.75rem;
  color: var(--text-on-navy-muted);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 0.75rem;
  color: var(--text-on-navy-muted);
  transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
  color: var(--accent-blue);
}

/* Scroll to Top Progress Circle Button styles */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(11, 18, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s, background-color 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(8px);
}

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

.scroll-top-btn:hover {
  background-color: rgba(15, 23, 42, 0.95);
  border-color: rgba(14, 165, 233, 0.3);
  transform: scale(1.05);
}

.progress-circle {
  position: absolute;
  top: 1px;
  left: 1px;
  transform: rotate(-90deg);
}

.progress-circle-bar {
  transition: stroke-dashoffset 0.1s linear;
}

.scroll-arrow {
  color: #ffffff;
  z-index: 2;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-arrow svg {
  width: 14px;
  height: 14px;
}

.scroll-top-btn:hover .scroll-arrow {
  transform: translateY(-2px);
  color: var(--accent-blue);
}

/* Top Scroll Progress Bar */
.top-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #6366f1, #0ea5e9);
  z-index: 1001; /* Above the sticky header */
  transition: width 0.1s ease-out;
}

/* Active Nav Links styling for scrollspy */
.nav-link.active {
  color: #ffffff !important;
}

.nav-link.active::after {
  width: 100% !important;
  left: 0 !important;
}

/* Products Section styling */
.products-section {
  padding: 1.5rem 0;
}

.products-card {
  background: linear-gradient(135deg, #6366f1 0%, #1e1b4b 60%, #0b1224 100%);
  border-radius: 20px;
  padding: 2rem;
  color: var(--text-on-navy);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.products-card::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(0, 176, 116, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
}

.section-tag-navy {
  display: inline-flex;
  align-items: center;
  background-color: var(--bg-accent-green-alpha);
  border: 1px solid rgba(0, 176, 116, 0.25);
  color: var(--accent-green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.products-heading {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--text-on-navy);
}

.products-description {
  font-size: 0.9rem;
  color: var(--text-on-navy-muted);
  max-width: 650px;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

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

.product-item-card {
  background-color: #0f1626;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition-smooth);
}

.product-item-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 176, 116, 0.3);
  box-shadow: 0 10px 20px -4px rgba(0, 176, 116, 0.08);
}

.product-badge {
  display: inline-flex;
  align-self: flex-start;
  background-color: rgba(0, 176, 116, 0.1);
  border: 1px solid rgba(0, 176, 116, 0.2);
  color: var(--accent-green);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.product-title {
  font-size: 1.2rem;
  color: var(--text-on-navy);
  font-weight: 700;
}

.product-logo-wrapper {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  height: 28px;
  margin-top: 0.15rem;
  margin-bottom: 0.15rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.product-logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.product-val-prop {
  font-family: var(--font-serif-accent);
  font-style: italic;
  color: var(--accent-green);
  font-size: 0.8rem;
  margin-top: -0.25rem;
}

.product-desc {
  font-size: 0.825rem;
  color: var(--text-on-navy-muted);
  line-height: 1.5;
}

/* Who We Serve Section */
.who-we-serve-section {
  padding: 2rem 0 1rem 0;
  background-color: var(--bg-page);
}

.who-we-serve-intro {
  margin-bottom: 2rem;
}

/* Who We Serve Carousel */
.who-we-serve-carousel {
  position: relative;
  width: 100%;
}

.carousel-track-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0;
}

.carousel-track-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
}

.who-we-serve-carousel .who-card {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
  background-color: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.who-we-serve-carousel .who-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 176, 116, 0.3);
  box-shadow: 0 16px 36px rgba(0, 176, 116, 0.06);
}

.who-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.who-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(0, 176, 116, 0.06);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.who-card:hover .who-card-icon {
  background: var(--accent-green);
  color: #fff;
  transform: scale(1.05);
}

.who-card-icon svg {
  width: 18px;
  height: 18px;
}

.who-card-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  opacity: 0.8;
}

.who-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.who-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Carousel Nav Controls */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.carousel-btn:hover {
  background: var(--bg-navy);
  border-color: var(--bg-navy);
  color: #fff;
  transform: scale(1.05);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none !important;
  background: var(--bg-page) !important;
  border-color: var(--border-light) !important;
  color: var(--text-light) !important;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--accent-green);
}

/* Latest Insights Section */
.insights-section {
  padding: 1rem 0 3.5rem 0;
  background-color: var(--bg-page);
}

.insights-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.insights-intro-header {
  display: flex;
  flex-direction: column;
}

.insights-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  flex-wrap: wrap;
  position: relative;
  background-color: var(--bg-page-alt);
  padding: 0.35rem;
  border-radius: 100px;
  border: 1px solid var(--border-light);
}

.filter-pill {
  position: absolute;
  top: 0.35rem;
  left: 0;
  height: calc(100% - 0.7rem);
  background: var(--accent-green);
  border-radius: 100px;
  z-index: 0;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), width 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
  pointer-events: none;
  opacity: 0;
}

.filter-pill.initialized {
  opacity: 1;
}

.filter-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 0.45rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
  color: var(--accent-blue);
}

.filter-btn.active {
  color: #fff;
}

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

/* Category-specific card custom properties */
.insight-card[data-category="ai-data"] {
  --card-accent: #10b981;
  --card-accent-alpha: rgba(16, 185, 129, 0.08);
}

.insight-card[data-category="cybersecurity"] {
  --card-accent: #f43f5e;
  --card-accent-alpha: rgba(244, 63, 94, 0.08);
}

.insight-card[data-category="platforms"] {
  --card-accent: #0ea5e9;
  --card-accent-alpha: rgba(14, 165, 233, 0.08);
}

.insight-card {
  background-color: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}

/* Top border glowing beam */
.insight-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--card-accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.insight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 20px 40px rgba(11, 18, 36, 0.04), 0 0 24px var(--card-accent-alpha);
}

.insight-card:hover::after {
  transform: scaleX(1);
}

.insight-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--bg-navy);
}

.insight-image-placeholder {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Tech mesh pattern overlay for placeholders */
.insight-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.8;
  z-index: 1;
}

/* Central glowing radial overlay on hover */
.insight-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 75%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.insight-card:hover .insight-image-placeholder {
  transform: scale(1.06);
}

.insight-card:hover .insight-image-placeholder::after {
  opacity: 1;
}

.insight-image-placeholder.first-bg {
  background: radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.35), transparent 70%),
    radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.25), transparent 70%),
    #0b1224;
}

.insight-image-placeholder.second-bg {
  background: radial-gradient(circle at 20% 30%, rgba(244, 63, 94, 0.35), transparent 70%),
    radial-gradient(circle at 80% 70%, rgba(30, 41, 59, 0.8), transparent 70%),
    #080d1a;
}

.insight-image-placeholder.third-bg {
  background: radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.35), transparent 70%),
    radial-gradient(circle at 80% 70%, rgba(15, 23, 42, 0.9), transparent 70%),
    #0b1224;
}

.insight-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.insight-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--card-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Category pulse dot */
.insight-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--card-accent);
  box-shadow: 0 0 8px var(--card-accent);
}

.insight-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.insight-card:hover .insight-title {
  color: var(--card-accent);
}

.insight-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-light);
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.read-more-arrow {
  color: var(--card-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.insight-card:hover .read-more-arrow {
  transform: translateX(6px);
}

.read-more-arrow svg {
  width: 16px;
  height: 16px;
}

/* Card Filtering Animations */
.insight-card.filtered-out {
  display: none;
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.insight-card.filtering {
  animation: fadeInCard 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* CTA Section Styling */
.cta-section {
  padding: 2.5rem 0;
}

.cta-card {
  background: linear-gradient(135deg, #6366f1 0%, #1e1b4b 60%, #0b1224 100%);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  color: var(--text-on-navy);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.15s ease-out;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.cta-card:hover {
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 30px 60px rgba(99, 102, 241, 0.25);
}

.cta-card::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 176, 116, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
  z-index: 1;
}

.cta-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(14, 165, 233, 0.2), transparent 45%);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cta-card:hover::after {
  opacity: 1;
}

.cta-network-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.cta-card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 3;
}

.cta-left {
  flex: 1.2;
  text-align: left;
}

.cta-right {
  flex: 0.8;
  display: flex;
  justify-content: flex-end;
}

.cta-heading {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.cta-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  max-width: 580px;
}

.cta-trust-badges {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-icon {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

.star-icon {
  color: #facc15;
  fill: #facc15;
}

.cta-form {
  width: 100%;
  max-width: 420px;
}

.cta-input-group {
  display: flex;
  align-items: center;
  background-color: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.35rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-input-group:focus-within {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

.cta-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 0.95rem;
  padding: 0.6rem 1.25rem;
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.cta-submit-btn {
  background-color: #6366f1;
  color: #ffffff;
  border: none;
  outline: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-submit-btn:hover {
  background-color: #4f46e5;
  transform: translateY(-1px);
}

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

.cta-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-on-navy);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 320px;
  position: relative;
  z-index: 2;
}

.cta-actions .btn {
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

/* Why Appzlogic Section */
.why-appzlogic-section {
  padding: 2rem 0;
  position: relative;
}

.why-appzlogic-card-wrapper {
  background-color: var(--bg-navy);
  background-image: linear-gradient(145deg, #090f1d, #040812);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-appzlogic-header {
  max-width: 650px;
  margin: 0 0 1.25rem 0;
  text-align: left;
  position: relative;
  z-index: 2;
}

.why-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-on-navy);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.status-pulse-dot {
  width: 5px;
  height: 5px;
  background-color: #0ea5e9;
  border-radius: 50%;
  box-shadow: 0 0 6px #0ea5e9;
  display: inline-block;
  animation: pulse-dot-anim 2s infinite;
}

@keyframes pulse-dot-anim {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(14, 165, 233, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
  }
}

.why-title {
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.why-subtitle {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-on-navy-muted);
}

.why-appzlogic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.why-appzlogic-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: pointer;
}

.why-appzlogic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Glow elements inside cards */
.why-appzlogic-card .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.why-appzlogic-card:hover .card-glow {
  opacity: 1;
}

/* Color-specific spotlight glows using mouse-x and mouse-y set by JS */
.why-appzlogic-card[data-card="ai"] .card-glow {
  background: radial-gradient(220px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(168, 85, 247, 0.22), transparent 80%);
}

.why-appzlogic-card[data-card="security"] .card-glow {
  background: radial-gradient(220px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(16, 185, 129, 0.22), transparent 80%);
}

.why-appzlogic-card[data-card="global"] .card-glow {
  background: radial-gradient(220px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(14, 165, 233, 0.22), transparent 80%);
}

/* Color-specific card hover styling */
.why-appzlogic-card[data-card="ai"]:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(168, 85, 247, 0.1) inset;
}

.why-appzlogic-card[data-card="security"]:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(16, 185, 129, 0.1) inset;
}

.why-appzlogic-card[data-card="global"]:hover {
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(14, 165, 233, 0.1) inset;
}

.why-appzlogic-card .card-content {
  position: relative;
  z-index: 2;
}

.why-appzlogic-card .card-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.why-appzlogic-card .card-icon-wrapper svg {
  width: 18px;
  height: 18px;
}

/* Icon colors per card type */
.why-appzlogic-card[data-card="ai"] .card-icon-wrapper {
  background-color: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: #a855f7;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.05);
}

.why-appzlogic-card[data-card="security"] .card-icon-wrapper {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.05);
}

.why-appzlogic-card[data-card="global"] .card-icon-wrapper {
  background-color: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: #0ea5e9;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.05);
}

/* Hover updates on icons inside card */
.why-appzlogic-card[data-card="ai"]:hover .card-icon-wrapper {
  background-color: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.35);
  transform: translateZ(12px) scale(1.05);
}

.why-appzlogic-card[data-card="security"]:hover .card-icon-wrapper {
  background-color: rgba(16, 185, 129, 0.15);
  color: #34d399;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.35);
  transform: translateZ(12px) scale(1.05);
}

.why-appzlogic-card[data-card="global"]:hover .card-icon-wrapper {
  background-color: rgba(14, 165, 233, 0.15);
  color: #38bdf8;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.35);
  transform: translateZ(12px) scale(1.05);
}

.why-appzlogic-card .card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.why-appzlogic-card:hover .card-title {
  transform: translateZ(8px);
}

.why-appzlogic-card .card-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-on-navy-muted);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.why-appzlogic-card:hover .card-desc {
  transform: translateZ(5px);
}

/* Feedback Section */
.feedback-section {
  padding: 2.25rem 0;
  background: linear-gradient(180deg, #030a0d 0%, #0c232b 50%, #030a0d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  width: 100%;
}

.feedback-card-wrapper {
  background: none;
  background-image: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.feedback-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.feedback-header-left {
  text-align: left;
}

.social-proof-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-on-navy);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.pulse-dot {
  width: 5px;
  height: 5px;
  background-color: #0ea5e9;
  border-radius: 50%;
  box-shadow: 0 0 6px #0ea5e9;
  display: inline-block;
  animation: pulse-dot-anim 2s infinite;
}

.feedback-title {
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}

.rating-badge {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.45rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.rating-stars {
  display: flex;
  gap: 2px;
  font-size: 0.85rem;
}

.star-gold {
  color: #eab308;
}

.star-gold-half {
  color: rgba(255, 255, 255, 0.15);
  position: relative;
  display: inline-block;
}

.star-gold-half::after {
  content: '★';
  color: #eab308;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
}

.rating-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.rating-number {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
}

.rating-source {
  color: var(--text-on-navy-muted);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Feedback Carousel layout */
.feedback-carousel {
  position: relative;
  width: 100%;
}

.feedback-track-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.75rem 0;
  position: relative;
  z-index: 2;
}

.feedback-track-container::-webkit-scrollbar {
  display: none;
}

.feedback-track {
  display: flex;
  gap: 1rem;
}

.feedback-item-card {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 0.67rem);
  min-width: 260px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 1.15rem;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feedback-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.feedback-item-card .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.feedback-item-card:hover .card-glow {
  opacity: 1;
}

.feedback-item-card .card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.feedback-item-card .card-content {
	color: #a4a4a4;
}
/* Hover Spotlight Glow Effects */
.feedback-item-card[data-card="purple"] .card-glow {
  background: radial-gradient(220px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99, 102, 241, 0.18), transparent 80%);
}
.feedback-item-card[data-card="purple"]:hover {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.08);
}

.feedback-item-card[data-card="blue"] .card-glow {
  background: radial-gradient(220px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(59, 130, 246, 0.18), transparent 80%);
}
.feedback-item-card[data-card="blue"]:hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
}

.feedback-item-card[data-card="indigo"] .card-glow {
  background: radial-gradient(220px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(79, 70, 229, 0.18), transparent 80%);
}
.feedback-item-card[data-card="indigo"]:hover {
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.08);
}

.feedback-item-card[data-card="teal"] .card-glow {
  background: radial-gradient(220px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(6, 182, 212, 0.18), transparent 80%);
}
.feedback-item-card[data-card="teal"]:hover {
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.08);
}

.feedback-item-card[data-card="violet"] .card-glow {
  background: radial-gradient(220px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139, 92, 246, 0.18), transparent 80%);
}
.feedback-item-card[data-card="violet"]:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.feedback-item-card .stars-row {
  color: #eab308;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.feedback-item-card:hover .stars-row {
  transform: translateZ(10px);
}

.feedback-quote {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-on-navy-muted);
  margin-bottom: 0.85rem;
  flex-grow: 1;
  font-weight: 400;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.feedback-item-card:hover .feedback-quote {
  transform: translateZ(5px);
}

.feedback-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 0.65rem;
  width: 100%;
}

.feedback-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.feedback-item-card:hover .feedback-author {
  transform: translateZ(8px);
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #ffffff;
  flex-shrink: 0;
}

.avatar-r {
  background-color: #6366f1;
}

.avatar-a {
  background-color: #3b82f6;
}

.avatar-rebecca {
  background-color: #4f46e5;
}

.avatar-anthony {
  background-color: #06b6d4;
}

.avatar-jordan {
  background-color: #8b5cf6;
}

.author-details {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.author-name-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.author-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8rem;
}

.country-tag {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.author-role {
  color: var(--text-on-navy-muted);
  font-size: 0.65rem;
  margin-top: 0.1rem;
}

.feedback-nav {
  margin-top: 0.5rem;
}

/* Animations for scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-heading {
    font-size: 2.75rem;
  }

  .certified-bar {
    padding: 1.5rem 2.5rem;
  }

  .certified-items {
    gap: 1.5rem;
  }

  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

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

  .products-card {
    padding: 1.5rem;
  }

  .products-heading {
    font-size: 1.5rem;
  }

  .who-we-serve-carousel .who-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.75rem;
  }

  .why-appzlogic-section {
    padding: 1.5rem 0;
  }

  .why-appzlogic-card-wrapper {
    padding: 2rem 1.5rem;
  }

  .why-title {
    font-size: 1.5rem;
  }

  .why-appzlogic-grid {
    gap: 1rem;
  }

  .why-appzlogic-card {
    padding: 1.75rem 1.5rem;
  }

  .feedback-section {
    padding: 2rem 0;
  }

  .feedback-card-wrapper {
    padding: 0;
  }

  .feedback-title {
    font-size: 1.35rem;
  }

  .feedback-item-card {
    flex: 0 0 calc(50% - 0.5rem);
    padding: 1.1rem;
  }
}

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

  .nav-links {
    position: fixed;
    top: 4.5rem;
    left: 0;
    right: 0;
    background-color: var(--bg-navy);
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    border-bottom: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  }

  .nav-links.active {
    height: calc(100vh - 4.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 1rem 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-link::after {
    display: none;
  }

  /* Responsive Mobile Dropdown */
  .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown .nav-link {
    border-bottom: none;
    width: 100%;
    text-align: center;
    padding-bottom: 0.5rem;
  }

  .nav-dropdown:hover .dropdown-menu,
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin: 0 0 1rem 0;
    padding: 0.5rem 0;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .dropdown-item {
    font-size: 1.1rem;
    padding: 0.6rem 1rem;
    text-align: center;
    margin: 0;
  }
  
  .dropdown-item:hover {
    transform: none;
    background-color: rgba(99, 102, 241, 0.15);
  }

  .dropdown-arrow {
    display: none;
  }

  .btn-header-cta {
    margin-left: 0;
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
    padding: 0.85rem;
    font-size: 1.1rem;
    border-radius: 100px;
    box-sizing: border-box;
  }

  .hero-card {
    padding: 3rem 2rem 2.5rem 2rem;
  }

  .hero-heading {
    font-size: 2.25rem;
  }

  .certified-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
  }

  .certified-items {
    width: 100%;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
  }

  .certified-item {
    align-items: flex-start;
    flex: 1 1 40%;
  }

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

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .products-card {
    padding: 1.5rem 1.25rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-item-card {
    padding: 1.25rem;
  }

  .who-we-serve-carousel .who-card {
    flex: 0 0 100%;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .insights-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .insights-filters {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 0.5rem;
  }

  .insights-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

  .cta-card {
    padding: 2.5rem 1.5rem;
  }

  .cta-card-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .cta-left {
    text-align: center;
    width: 100%;
  }

  .cta-right {
    justify-content: center;
    width: 100%;
  }

  .cta-heading {
    font-size: 1.75rem;
  }

  .cta-description {
    margin-bottom: 1.25rem;
  }

  .cta-trust-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  }

  @media (max-width: 480px) {
    .cta-input-group {
      border-radius: 20px;
      flex-direction: column;
      gap: 0.5rem;
      padding: 0.5rem;
      background: transparent;
      border: none;
    }

    .cta-input {
      background-color: rgba(15, 23, 42, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 100px;
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .cta-submit-btn {
      width: 100%;
      padding: 0.75rem;
      text-align: center;
    }
  }

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

  .brand-col {
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    transform: translateY(10px) scale(0.85);
  }

  .scroll-top-btn.visible {
    transform: translateY(0) scale(0.85);
  }

  .why-appzlogic-section {
    padding: 1rem 0;
  }

  .why-appzlogic-card-wrapper {
    padding: 1.5rem 1.25rem;
  }

  .why-title {
    font-size: 1.35rem;
  }

  .why-subtitle {
    font-size: 0.85rem;
  }

  .why-appzlogic-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-appzlogic-card {
    padding: 1.5rem 1.25rem;
  }

  .feedback-section {
    padding: 1.5rem 0;
  }

  .feedback-card-wrapper {
    padding: 0;
  }

  .feedback-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .feedback-title {
    font-size: 1.25rem;
  }

  .feedback-item-card {
    flex: 0 0 100%;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-card {
    padding: 2rem 1.25rem;
  }

  .hero-heading {
    font-size: 1.85rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .certified-items {
    flex-direction: column;
    gap: 1rem;
  }

  .certified-item {
    flex: 1 1 100%;
  }

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

  .products-heading {
    font-size: 1.35rem;
  }

  /* removed redundant rule, handled by parent query */

  .cta-heading {
    font-size: 1.75rem;
  }
}