@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght,wdth,GRAD,ROND,slnt@6..144,100..1000,25..151,0..100,0..100,-10..0&display=swap');

:root {
  /* GAN Magenta Gradient Palette */
  --gan-pink: #f72585;
  --gan-orange: #f6bd60;
  --gan-white: #f8f9fa;
  --gan-cyan: #00b4d8;
  --gan-violet: #7209b7;
  --gan-sky: #4cc9f0;
  --gan-red: #e63946;

  --primary-gradient: linear-gradient(90deg, var(--gan-pink) 0%, var(--gan-orange) 35%, var(--gan-white) 65%, var(--gan-cyan) 100%);
  --text-gradient: linear-gradient(90deg, var(--gan-pink) 0%, var(--gan-orange) 100%);
  --cyan-gradient: linear-gradient(90deg, var(--gan-sky) 0%, var(--gan-cyan) 100%);

  /* Primary functional colors */
  --primary: var(--gan-pink);

  /* Strictly no black - using soft dark slate/gray for readability where needed */
  --bg-light: #f8f9fa;
  --bg-white: #FFFFFF;
  --bg-subtle: #F3F4F6;
  --bg-dark: rgba(237, 237, 227, 0.03);

  --text-main: #111111;
  --text-muted: #6B7280;

  --border-light: rgba(17, 17, 17, 0.08);
  --border-glow: rgba(247, 37, 133, 0.2);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Google Sans Flex', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;

  /* Fixed Teal and Magenta Background Gradients */
  background-image:
    radial-gradient(circle at top right, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
    radial-gradient(circle at bottom left, rgba(247, 37, 133, 0.15) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Sticky Full Page Slides Scroll Removed */

/* Ensure sections with explicit dark backgrounds overlay correctly */
section.features,
section.why-us,
section.dashboard-preview {
  background-color: var(--bg-dark);
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Glassmorphism Section Containers */
section {
  background: transparent !important;
  border: none !important;
}

section>.container {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  padding: 40px 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  margin-bottom: 24px;
}

h1,
h2,
h3,
h4 {
  line-height: 1.1;
  font-weight: 700;
  color: #1F2937;
  /* Very dark slate, not black */
}

/* Gradient text */
.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-cyan {
  background: var(--cyan-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: var(--bg-white);
  color: var(--primary);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(237, 59, 132, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(237, 59, 132, 0.35);
  background: #D82B73;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text-muted);
  color: var(--text-main);
}

.btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
}

.btn-white {
  background: #FFFFFF;
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
  transform: translateY(-2px);
  background: var(--bg-light);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.btn-block {
  width: 100%;
  display: block;
  text-align: center;
}

.mobile-sticky-cta {
  display: none;
}

/* Nav */
nav {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  padding: 16px 32px;
  z-index: 100;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-container img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
  color: var(--text-main);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-trigger {
  display: none;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  color: var(--text-main);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.menu-trigger:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 40px;
  background: var(--bg-light);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 60%;
  background: var(--primary-gradient);
  opacity: 0.15;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--border-light) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}

.hero h1 {
  font-size: clamp(36px, 4.5vw, 52px);
  margin: 24px 0;
  letter-spacing: -1px;
}

.hero p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-dashboard {
  width: 100%;
  max-width: 950px;
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
  display: block;
  margin: 0 auto;
  border: 1px solid var(--border-light);
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  animation: float 6s ease-in-out infinite;
}

.fc-1 {
  top: 10%;
  left: 0;
  animation-delay: 0s;
}

.fc-2 {
  top: 30%;
  right: 0;
  animation-delay: 1s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(237, 59, 132, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.float-text {
  text-align: left;
}

.float-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-main);
}

.float-sub {
  font-size: 12px;
  color: var(--text-muted);
}

/* Partners & Marquee */
.partners {
  padding: 60px 0;
  text-align: center;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.partners p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.6;
}

.partner-logos img {
  height: 55px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s;
}

.partner-logos img:hover {
  filter: none;
  opacity: 1;
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  padding: 10px 0;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-white), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-white), transparent);
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  animation: scroll 40s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track img {
  height: 45px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  margin: 0 40px;
  filter: grayscale(100%) opacity(0.7);
  opacity: 0.6;
  transition: all 0.3s;
}

.marquee-track img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.15);
  cursor: pointer;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* Certified Partnerships Section */
.certified-partnerships {
  padding: 60px 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.certified-partnerships .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.partnerships-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 12px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.partnerships-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px auto;
  line-height: 1.6;
}

.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  justify-content: center;
}

.partnership-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.partnership-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 1.5px solid transparent;
  pointer-events: none;
  transition: all 0.4s ease;
}

.partnership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.04);
}

.zoho-card:hover::after {
  border-color: var(--gan-cyan);
}

.odoo-card:hover::after {
  border-color: #A24689;
}

.microsoft-card:hover::after {
  border-color: var(--gan-orange);
}

.partner-logo-wrap {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.partnership-card:hover .partner-logo-wrap {
  transform: scale(1.05);
}

.partner-logo-img {
  max-height: 50px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

/* Specific styling adjustments for logo sizing */
.microsoft-card .partner-logo-img {
  max-height: 40px;
}

.partner-status {
  margin-bottom: 16px;
}

.status-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-block;
}

.status-zoho {
  background: rgba(70, 192, 213, 0.1);
  color: #1e8d9e;
}

.status-odoo {
  background: rgba(162, 70, 137, 0.1);
  color: #A24689;
}

.status-ms {
  background: rgba(245, 161, 89, 0.1);
  color: #d47b31;
}

.partner-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* 2. Pain Points Section */
.pain-points {
  background-color: var(--bg-subtle);
  padding: 60px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  margin-top: 16px;
  margin-bottom: 20px;
}

.section-header .subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pain-card {
  background: var(--bg-white);
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--text-gradient);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(237, 59, 132, 0.05);
  border-color: var(--border-glow);
}

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

.pain-icon {
  font-size: 32px;
  margin-bottom: 24px;
  display: inline-block;
  background: rgba(237, 59, 132, 0.08);
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.pain-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.pain-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* 3. Modules Section */
.modules {
  background-color: var(--bg-white);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-light);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.module-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  border-color: rgba(70, 192, 213, 0.2);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.module-icon {
  width: 56px;
  height: 56px;
  background: rgba(70, 192, 213, 0.1);
  color: var(--gan-cyan);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.module-title-wrap h3 {
  font-size: 20px;
}

.module-benefit {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gan-cyan);
  margin-top: 4px;
}

.module-features {
  list-style: none;
}

.module-features li {
  font-size: 15px;
  color: var(--text-main);
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.module-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gan-cyan);
  font-weight: 700;
}

/* 4. Deep-Dive Section (Tabs) */
.deep-dive {
  background-color: var(--bg-subtle);
  padding: 60px 0;
  text-align: center;
}

.tabs-container {
  max-width: 1000px;
  margin: 0 auto;
}

.tabs-nav {
  display: inline-flex;
  background: var(--bg-white);
  padding: 6px;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  margin-bottom: 48px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 1;
}

.tab-btn {
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

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

.tab-btn.active {
  color: #FFFFFF;
}

.tabs-indicator {
  position: absolute;
  top: 6px;
  left: 0;
  background: var(--primary);
  border-radius: 100px;
  box-shadow: 0 6px 15px rgba(237, 59, 132, 0.25);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), width 0.35s cubic-bezier(0.25, 1, 0.5, 1), height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
  pointer-events: none;
}

.tab-content {
  display: none;
  animation: tabFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-content.active {
  display: block;
}

.tab-visual-wrapper {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.tab-visual-wrapper img {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

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

/* 5. Proof Section */
.proof-section {
  background-color: var(--bg-white);
  padding: 60px 0;
  position: relative;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.quote-block {
  padding-right: 40px;
  text-align: left;
}

.quote-icon {
  font-size: 64px;
  color: rgba(237, 59, 132, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.quote-text {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.4;
  color: #1F2937;
  font-weight: 500;
  margin-bottom: 24px;
}

.quote-author {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
}

.quote-author span {
  font-weight: 500;
  color: var(--text-muted);
}

.metrics-summary {
  background: var(--bg-light);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
  text-align: center;
}

.metric-big {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 12px;
}

.metric-desc {
  font-size: 18px;
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.5;
}

/* 6. Security Section */
.security-section {
  background-color: var(--bg-dark);
  color: #E2E8F0;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 0;
}

.security-section h2 {
  color: #FFFFFF;
}

.security-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.security-visual-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.security-core-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-core-shield {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gan-pink) 0%, var(--gan-cyan) 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 10;
  box-shadow: 0 8px 30px rgba(70, 192, 213, 0.4);
  animation: pulseShield 3s ease-in-out infinite;
}

@keyframes pulseShield {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 30px rgba(70, 192, 213, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(70, 192, 213, 0.6), 0 0 0 10px rgba(70, 192, 213, 0.1);
  }
}

.security-core-ring {
  position: absolute;
  border-radius: 50%;
  box-sizing: border-box;
}

.ring-outer {
  width: 300px;
  height: 300px;
  border: 1.5px dashed rgba(70, 192, 213, 0.25);
  animation: rotateCW 25s linear infinite;
}

.ring-middle {
  width: 220px;
  height: 220px;
  border: 1.5px dashed rgba(237, 59, 132, 0.2);
  animation: rotateCCW 20s linear infinite;
}

.ring-inner {
  width: 140px;
  height: 140px;
  border: 1px solid rgba(70, 192, 213, 0.1);
  box-shadow: inset 0 0 20px rgba(70, 192, 213, 0.05);
}

@keyframes rotateCW {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateCCW {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-180deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.sec-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  z-index: 5;
}

.tag-1 {
  top: 12%;
  left: 10%;
  animation: floatTag1 6s ease-in-out infinite;
}

.tag-2 {
  top: 15%;
  right: 5%;
  animation: floatTag2 7s ease-in-out infinite;
}

.tag-3 {
  bottom: 12%;
  left: 5%;
  animation: floatTag3 8s ease-in-out infinite;
}

.tag-4 {
  bottom: 15%;
  right: 10%;
  animation: floatTag4 6s ease-in-out infinite;
}

@keyframes floatTag1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(6px, -10px);
  }
}

@keyframes floatTag2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-8px, 8px);
  }
}

@keyframes floatTag3 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(10px, 6px);
  }
}

@keyframes floatTag4 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-6px, -8px);
  }
}

.security-cards-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sec-badge-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.sec-badge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(70, 192, 213, 0.3);
  box-shadow: 0 16px 35px rgba(70, 192, 213, 0.06);
}

.sec-badge-card:hover .sec-card-icon {
  background: var(--gan-cyan);
  color: #FFFFFF;
  box-shadow: 0 6px 15px rgba(70, 192, 213, 0.2);
}

.sec-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(70, 192, 213, 0.08);
  color: var(--gan-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sec-card-info {
  text-align: left;
}

.sec-card-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 6px;
}

.sec-card-info p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.compliance-copy {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.compliance-copy p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* 7. Closing CTA Section */
.closing-section {
  background: var(--primary-gradient);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.closing-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.closing-content h2 {
  font-size: clamp(32px, 5vw, 54px);
  color: #000;
  margin-bottom: 24px;
}

.closing-content p {
  font-size: 20px;
  color: #141414;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Footer - Light Theme */
footer {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  color: var(--text-main);
  padding: 60px 40px 40px 40px;
  border-radius: 40px;
}

footer .container {
  padding: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 20px;
  font-size: 15px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 24px;
  color: #1F2937;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--text-main);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* Mouse Gradient Gas Effect — GAN Magenta colors */
.mouse-gas {
  position: fixed;
  top: 0;
  left: 0;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.8s ease;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
      rgba(237, 59, 132, 0.15) 0%,
      rgba(245, 161, 89, 0.1) 30%,
      rgba(70, 192, 213, 0.08) 55%,
      transparent 70%);
  filter: blur(50px);
  mix-blend-mode: multiply;
  /* Better for light backgrounds */
  will-change: transform, opacity;
}

.mouse-gas.visible {
  opacity: 1;
}

/* ==========================================
   About Us Section Style (about.md content)
   ========================================== */
.about-section {
  padding: 60px 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-top: 16px;
  margin-bottom: 24px;
}

.lead-text {
  font-size: 18px;
  color: var(--text-main);
  line-height: 1.7;
}

.about-snippet {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.about-snippet h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1F2937;
}

.snippet-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-image-composition {
  position: relative;
  height: 500px;
  width: 100%;
}

.about-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 55%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 10px solid var(--bg-white);
  z-index: 2;
}

.about-experience-badge {
  position: absolute;
  bottom: 15%;
  right: -5%;
  background: var(--gan-cyan);
  color: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 15px 30px rgba(70, 192, 213, 0.3);
}

.exp-number {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.exp-text {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Structural Outcomes Visualizer */
.outcomes-visual-container {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}

.table-title {
  font-size: clamp(24px, 3.5vw, 32px);
  margin-bottom: 12px;
  font-weight: 700;
  color: #1F2937;
}

.outcomes-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
  margin-top: 0;
}

/* Toggle Switch Styling */
.outcomes-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 48px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.toggle-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.3s ease;
  user-select: none;
}

.toggle-label.active {
  color: #1F2937;
}

.toggle-switch-btn {
  width: 52px;
  height: 28px;
  border-radius: 100px;
  background-color: #CBD5E1;
  /* Muted gray */
  border: none;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
  padding: 0;
  outline: none;
}

.toggle-switch-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #FFFFFF;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* State-specific Toggles via CSS */
.state-spark .toggle-switch-btn {
  background-color: var(--gan-cyan);
}

.state-spark .toggle-switch-dot {
  transform: translateX(24px);
}

.state-spark .spark-label {
  color: #1F2937;
}

.state-spark .legacy-label {
  color: var(--text-muted);
}

/* Outcomes Cards Grid */
.outcomes-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.outcome-vcard {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.outcome-vcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
  border-color: rgba(70, 192, 213, 0.2);
}

.vcard-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.vcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(237, 59, 132, 0.06);
  color: var(--gan-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.vcard-header h4 {
  font-size: 18px;
  color: #1F2937;
}

.vcard-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.chart-container {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-light);
}

.chart-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 12px;
}

/* Latency Bar Chart */
.latency-chart .bar-track {
  width: 100%;
  height: 24px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.bar-fill {
  height: 100%;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding-left: 12px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.legacy-fill {
  background: var(--gan-pink);
  color: #FFFFFF;
  opacity: 1;
}

.spark-fill {
  background: var(--gan-cyan);
  color: #FFFFFF;
  opacity: 0;
  width: 0%;
}

.bar-value {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

/* State Transitions for Latency Bar */
.state-spark .legacy-fill {
  width: 0% !important;
  opacity: 0;
}

.state-spark .spark-fill {
  width: 100% !important;
  opacity: 1;
}

/* Discrepancy Circle Chart */
.circle-visual-wrap {
  position: relative;
  width: 120px;
  height: 120px;
}

.progress-ring-fill {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.legacy-circle {
  opacity: 1;
}

.spark-circle {
  opacity: 0;
}

.circle-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 800;
  transition: opacity 0.6s ease;
}

.legacy-text {
  color: var(--gan-pink);
  opacity: 1;
}

.spark-text {
  color: var(--gan-cyan);
  opacity: 0;
}

/* State Transitions for Circle Chart */
.state-spark .legacy-circle {
  opacity: 0;
}

.state-spark .spark-circle {
  stroke-dashoffset: 0 !important;
  opacity: 1;
}

.state-spark .legacy-text {
  opacity: 0;
}

.state-spark .spark-text {
  opacity: 1;
}

/* Handoffs Flow Chart */
.handoffs-chart {
  position: relative;
  overflow: hidden;
}

.flow-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
}

.legacy-flow {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.spark-flow {
  opacity: 0;
  display: none;
  transition: opacity 0.4s ease;
}

.flow-node {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

.flow-node.highlight {
  border-color: rgba(70, 192, 213, 0.3);
  color: var(--gan-cyan);
  box-shadow: 0 0 10px rgba(70, 192, 213, 0.1);
}

/* Dotted Connection Lines for Legacy */
.flow-line-broken {
  display: flex;
  gap: 4px;
  padding: 0 8px;
}

.flow-line-broken span {
  width: 4px;
  height: 4px;
  background-color: #FDA4AF;
  /* light red */
  border-radius: 50%;
}

/* Continuous Animation Lines for Spark */
.flow-line-continuous {
  height: 2px;
  background-color: rgba(70, 192, 213, 0.2);
  flex-grow: 1;
  margin: 0 8px;
  position: relative;
  overflow: hidden;
  width: 40px;
}

.flow-particle {
  width: 6px;
  height: 6px;
  background-color: var(--gan-cyan);
  border-radius: 50%;
  position: absolute;
  top: -2px;
  left: -10%;
  box-shadow: 0 0 8px var(--gan-cyan);
  animation: flowParticleAnim 1.5s infinite linear;
}

@keyframes flowParticleAnim {
  0% {
    left: -10%;
  }

  100% {
    left: 110%;
  }
}

/* State Transitions for Flow Chart */
.state-spark .legacy-flow {
  opacity: 0;
  display: none;
}

.state-spark .spark-flow {
  opacity: 1;
  display: flex;
}

.vcard-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.spark-desc {
  display: none;
}

.state-spark .legacy-desc {
  display: none;
}

.state-spark .spark-desc {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

.vcard-benefit {
  background: var(--bg-light);
  border-left: 3px solid var(--gan-cyan);
  padding: 12px 16px;
  border-radius: 0 12px 12px 0;
  text-align: left;
  display: none;
}

.state-spark .vcard-benefit {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

.benefit-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gan-cyan);
  display: block;
  margin-bottom: 2px;
}

.benefit-text {
  font-size: 12px;
  font-weight: 600;
  color: #1F2937;
  line-height: 1.4;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Core Principles Grid */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.principle-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.principle-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 15px 35px rgba(237, 59, 132, 0.04);
  transform: translateY(-4px);
}

.principle-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(237, 59, 132, 0.1);
  position: absolute;
  top: 24px;
  right: 32px;
}

.principle-card h4 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1F2937;
}

.principle-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Accordion FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-main-title {
  font-size: 28px;
  margin-bottom: 32px;
  text-align: center;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover,
.accordion-item.active {
  border-color: rgba(70, 192, 213, 0.3);
  background: var(--bg-white);
  box-shadow: 0 8px 25px rgba(70, 192, 213, 0.03);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: #1F2937;
  cursor: pointer;
  outline: none;
}

.accordion-header .icon-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gan-cyan);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header .icon-arrow {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content {
  padding: 0 24px 24px 24px;
}

.accordion-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================
   Industry Solutions Section
   ========================================== */
.solutions-section {
  padding: 60px 0;
  background-color: var(--bg-subtle);
  border-bottom: 1px solid var(--border-light);
}

.ux-section {
  padding: 60px 0;
  background: linear-gradient(-45deg, rgba(237, 59, 132, 0.35) 0%, rgba(245, 161, 89, 0.35) 33%, rgba(70, 192, 213, 0.35) 66%, rgba(162, 70, 137, 0.35) 100%);
  background-size: 400% 400%;
  animation: gradientBg 45s ease infinite;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

/* Core Expertise Section */
.expertise-section {
  padding: 60px 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.expertise-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.expertise-card:hover {
  background: var(--bg-white);
  border-color: rgba(70, 192, 213, 0.3);
  box-shadow: 0 20px 40px rgba(70, 192, 213, 0.04);
  transform: translateY(-6px);
}

.exp-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.expertise-card:hover .exp-icon-wrap {
  transform: scale(1.1);
}

.icon-cyan {
  background: rgba(70, 192, 213, 0.08);
  color: var(--gan-cyan);
}

.icon-pink {
  background: rgba(237, 59, 132, 0.08);
  color: var(--gan-pink);
}

.icon-orange {
  background: rgba(245, 161, 89, 0.08);
  color: var(--gan-orange);
}

.icon-purple {
  background: rgba(162, 70, 137, 0.08);
  color: #A24689;
}

.icon-blue {
  background: rgba(30, 144, 255, 0.08);
  color: #1e90ff;
}

.icon-teal {
  background: rgba(20, 184, 166, 0.08);
  color: #14b8a6;
}

.expertise-card h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1F2937;
}

.expertise-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

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

.solution-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
  border-color: rgba(70, 192, 213, 0.3);
}

.solution-icon {
  width: 60px;
  height: 60px;
  background: rgba(70, 192, 213, 0.08);
  color: var(--gan-cyan);
  font-size: 28px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.solution-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1F2937;
}

.solution-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================
   Why Us Section
   ========================================== */
.why-us-section {
  padding: 60px 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.why-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.comparison-column {
  padding: 40px;
  border-radius: 28px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.comparison-column.legacy {
  background: linear-gradient(135deg, #FFF5F7 0%, rgba(253, 244, 245, 0.8) 100%);
  border-color: rgba(237, 59, 132, 0.12);
  box-shadow: 0 10px 30px rgba(237, 59, 132, 0.02);
}

.comparison-column.unified {
  background: linear-gradient(135deg, #F0FDFA 0%, rgba(240, 253, 250, 0.8) 100%);
  border-color: rgba(70, 192, 213, 0.12);
  box-shadow: 0 10px 30px rgba(70, 192, 213, 0.02);
}

.column-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.comparison-column.legacy .column-title {
  color: #D82B73;
}

.comparison-column.unified .column-title {
  color: #0F766E;
}

.comparison-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comparison-subcard {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.04);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.comparison-subcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.comparison-subcard.legacy-item:hover {
  border-color: rgba(237, 59, 132, 0.3);
  box-shadow: 0 12px 28px rgba(237, 59, 132, 0.06);
}

.comparison-subcard.unified-item:hover {
  border-color: rgba(70, 192, 213, 0.3);
  box-shadow: 0 12px 28px rgba(70, 192, 213, 0.06);
}

.subcard-content {
  flex: 1;
  text-align: left;
}

.subcard-content strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 6px;
}

.subcard-content p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.subcard-visual {
  width: 140px;
  height: 90px;
  flex-shrink: 0;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* WIDGET 1: Spreadsheet Mismatch */
.widget-sheet {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 8px;
  box-sizing: border-box;
}

.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 4px;
  margin-bottom: 6px;
}

.mismatch-tag {
  color: #EF4444;
  background: #FEF2F2;
  padding: 1px 4px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 700;
}

.sheet-cells {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  flex-grow: 1;
}

.sheet-cell {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  color: #475569;
}

.sheet-cell.pulse-error {
  background: #FEE2E2;
  border-color: #FCA5A5;
  color: #B91C1C;
  font-weight: 700;
  animation: cellPulseRed 2s infinite ease-in-out;
}

@keyframes cellPulseRed {

  0%,
  100% {
    background-color: #FEE2E2;
    border-color: #FCA5A5;
  }

  50% {
    background-color: #FECACA;
    border-color: #F87171;
  }
}

/* WIDGET 2: Calendar & Hourglass */
.widget-calendar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  box-sizing: border-box;
}

.cal-icon-wrap {
  font-size: 22px;
  color: #D82B73;
  opacity: 0.8;
  display: flex;
  align-items: center;
}

.cal-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cal-days {
  font-size: 11px;
  font-weight: 700;
  color: #1F2937;
  white-space: nowrap;
}

.cal-sync {
  font-size: 9px;
  color: var(--text-muted);
}

.hourglass-anim {
  font-size: 18px;
  color: #F59E0B;
  display: flex;
  align-items: center;
  animation: flipHourglass 3s infinite ease-in-out;
}

@keyframes flipHourglass {

  0%,
  90%,
  100% {
    transform: rotate(0deg);
  }

  45%,
  55% {
    transform: rotate(180deg);
  }
}

/* WIDGET 3: Flow / Pipeline */
.widget-flow {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px;
  box-sizing: border-box;
}

.flow-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.flow-circle.highlight {
  border-color: rgba(70, 192, 213, 0.4);
  color: var(--gan-cyan);
  box-shadow: 0 0 8px rgba(70, 192, 213, 0.15);
}

.flow-connector {
  flex-grow: 1;
  height: 2px;
  background: #E2E8F0;
  position: relative;
  margin: 0 4px;
}

.flow-connector.blocked {
  background: #FCA5A5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-connector.blocked i {
  color: #EF4444;
  font-size: 12px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-circle.blocked {
  border-color: #FCA5A5;
  background: #FEF2F2;
  color: #EF4444;
  animation: shakeNode 2s infinite ease-in-out;
}

@keyframes shakeNode {

  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-2px);
  }

  40%,
  80% {
    transform: translateX(2px);
  }
}

/* WIDGET 4: DB Sync */
.widget-sync {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px;
}

.sync-core {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(70, 192, 213, 0.1);
  border: 1px solid var(--gan-cyan);
  color: var(--gan-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 2;
  box-shadow: 0 0 12px rgba(70, 192, 213, 0.2);
}

.sync-endpoints {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0 10px;
}

.endpoint {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
}

.sync-rays {
  position: absolute;
  width: 80px;
  height: 2px;
  background: transparent;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.ray {
  position: absolute;
  width: 32px;
  height: 2px;
  background: rgba(70, 192, 213, 0.25);
  top: 0;
}

.ray-1 {
  left: 0;
}

.ray-2 {
  right: 0;
}

.ray-1::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gan-cyan);
  border-radius: 50%;
  top: -1.5px;
  left: 0;
  box-shadow: 0 0 6px var(--gan-cyan);
  animation: rayFlowLeft 1.8s infinite linear;
}

.ray-2::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gan-cyan);
  border-radius: 50%;
  top: -1.5px;
  right: 0;
  box-shadow: 0 0 6px var(--gan-cyan);
  animation: rayFlowRight 1.8s infinite linear;
}

@keyframes rayFlowLeft {
  0% {
    left: 0%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes rayFlowRight {
  0% {
    right: 0%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    right: 100%;
    opacity: 0;
  }
}

/* WIDGET 5: Real-Time Live Graph */
.widget-live-graph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 12px 10px 12px;
  box-sizing: border-box;
}

.graph-bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  flex-grow: 1;
  height: 40px;
}

.widget-live-graph .bar {
  flex: 1;
  background: linear-gradient(to top, rgba(70, 192, 213, 0.4), var(--gan-cyan));
  border-radius: 4px 4px 0 0;
  min-height: 5px;
  animation: barGrowShrink 1.8s infinite ease-in-out;
}

.bar-a {
  animation-delay: 0.1s !important;
  height: 60%;
}

.bar-b {
  animation-delay: 0.4s !important;
  height: 35%;
}

.bar-c {
  animation-delay: 0.7s !important;
  height: 80%;
}

.bar-d {
  animation-delay: 0.2s !important;
  height: 45%;
}

@keyframes barGrowShrink {

  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(0.4);
  }
}

.live-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gan-cyan);
  border: 1px solid rgba(70, 192, 213, 0.25);
  background: rgba(70, 192, 213, 0.05);
  padding: 2px 6px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-badge .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gan-cyan);
  box-shadow: 0 0 6px var(--gan-cyan);
  animation: pulseLiveDot 1.2s infinite ease-in-out;
}

@keyframes pulseLiveDot {

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

  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
}

/* WIDGET 6: Active Pipeline Arrow */
.flow-connector.active {
  background: rgba(70, 192, 213, 0.3);
}

.flow-pulse {
  width: 6px;
  height: 6px;
  background-color: var(--gan-cyan);
  border-radius: 50%;
  position: absolute;
  top: -2px;
  left: 0;
  box-shadow: 0 0 6px var(--gan-cyan);
  animation: pulseFlowLine 1.5s infinite linear;
}

@keyframes pulseFlowLine {
  0% {
    left: 0%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

.security-badges-block {
  padding-top: 80px;
}

/* ==========================================
   Case Studies Section
   ========================================== */
.case-studies-section {
  padding: 60px 0;
  background-color: var(--bg-subtle);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.case-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
  border-color: var(--border-glow);
}

.case-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-white) 0%, rgba(237, 59, 132, 0.02) 100%);
  border: 1px solid rgba(237, 59, 132, 0.15);
  position: relative;
}

.case-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gan-pink);
  color: #FFF;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.case-content-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.case-meta {
  font-size: 13px;
  font-weight: 700;
  color: var(--gan-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}

.case-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.case-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.case-tags,
.case-tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.case-tags span,
.case-tag {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.case-metrics-box {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

.case-metric-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--gan-pink);
  line-height: 1.1;
  margin-bottom: 4px;
}

.case-metric-save {
  font-size: 36px;
  font-weight: 800;
  color: var(--gan-cyan);
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 4px;
}

.case-metric-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonial-section {
  padding: 60px 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.testimonials-marquee-container {
  display: flex;
  overflow: hidden;
  gap: 40px;
  width: 100%;
}

.testimonials-marquee-container:hover .testimonials-grid {
  animation-play-state: paused;
}

.testimonials-grid {
  display: flex;
  flex-shrink: 0;
  gap: 40px;
  padding-bottom: 40px;
  animation: scroll-testimonials 40s linear infinite;
}

@keyframes scroll-testimonials {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 40px));
  }
}

.testimonial-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 48px;
  border-radius: 24px;
  position: relative;
  min-width: 450px;
  max-width: 500px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.quote-mark {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: rgba(237, 59, 132, 0.12);
  position: absolute;
  top: 20px;
  left: 32px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  color: #1F2937;
  font-weight: 500;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

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

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-light);
}

.testimonial-author-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author-details strong {
  font-size: 16px;
  color: #1F2937;
}

.testimonial-author-details span {
  font-size: 14px;
  color: var(--text-muted);
}

/* Scroll animations handled by GSAP ScrollTrigger */

/* Responsive */
@media (max-width: 992px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }
  
  .menu-trigger {
    display: flex;
  }

  .hero .container {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-content-wrapper {
    grid-template-columns: 1fr;
  }

  .about-image-composition {
    height: 450px;
    margin-top: 40px;
  }

  .about-experience-badge {
    right: 5%;
  }

  .hero h1 {
    font-size: 44px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .outcomes-cards-grid {
    grid-template-columns: 1fr;
  }

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

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

  .why-comparison-grid {
    grid-template-columns: 1fr;
  }

  .security-split-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .security-cards-column {
    grid-template-columns: 1fr 1fr;
  }

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

  .case-card.featured {
    grid-column: span 1;
  }

  .case-content-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonial-card {
    min-width: 320px;
  }

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

  section>.container {
    padding: 40px 24px;
    border-radius: 32px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 80px; /* space for sticky CTA */
  }

  nav {
    padding: 12px 20px;
    width: 95%;
    top: 16px;
    position: fixed;
  }

  .logo-container span {
    font-size: 16px !important;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-light);
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero h1 {
    font-size: 36px;
  }

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

  footer {
    width: 95%;
    padding: 40px 24px 24px 24px;
    border-radius: 24px;
  }

  .float-card {
    display: none;
  }

  .security-cards-column {
    grid-template-columns: 1fr;
  }

  .comparison-column {
    padding: 24px;
    gap: 20px;
  }

  .comparison-subcard {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .subcard-visual {
    width: 100%;
    height: 100px;
  }

  section>.container {
    padding: 30px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .container {
    padding: 0 16px;
  }

  .tabs-container {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 12px;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 14px;
    flex: 1 1 40%;
  }

  .tabs-indicator {
    display: none;
  }

  .tab-btn.active {
    background: var(--primary);
    border-radius: 100px;
    color: #fff !important;
  }
}

/* ==========================================
   ERP Visual Hub Style
   ========================================== */
.erp-visual-hub {
  position: relative;
  width: 100%;
  aspect-ratio: 8 / 6.5;
  max-width: 800px;
  margin: 0 auto;
  overflow: visible;
}

.hub-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.conn-path {
  stroke-width: 2;
  stroke-dasharray: 6 6;
  animation: dashFlow 20s infinite linear;
}

.path-zoho {
  stroke: rgba(237, 59, 132, 0.15);
}

.path-odoo {
  stroke: rgba(162, 70, 137, 0.15);
}

.path-dynamics {
  stroke: rgba(70, 192, 213, 0.15);
}

.path-client {
  stroke: rgba(114, 9, 183, 0.15);
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -1000;
  }
}

.flow-particle {
  filter: drop-shadow(0 0 4px currentColor);
}

/* Central Hub */
.hub-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: #FFFFFF;
  border: 1px solid rgba(70, 192, 213, 0.25);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 35px rgba(70, 192, 213, 0.08), 0 0 0 4px rgba(70, 192, 213, 0.02);
  z-index: 5;
  transition: all 0.3s ease;
}

.hub-core:hover {
  transform: translate(-50%, -50%) scale(1.05);
  border-color: var(--gan-cyan);
  box-shadow: 0 15px 45px rgba(70, 192, 213, 0.15), 0 0 0 6px rgba(70, 192, 213, 0.05);
}

.hub-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 192, 213, 0.2) 0%, transparent 70%);
  animation: corePulse 3s infinite ease-in-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes corePulse {

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

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.hub-logo-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hub-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.hub-title {
  font-size: 11px;
  font-weight: 800;
  color: #1F2937;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hub-status {
  font-size: 9px;
  font-weight: 700;
  color: var(--gan-cyan);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.hub-status .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gan-cyan);
  box-shadow: 0 0 6px var(--gan-cyan);
  animation: pulseLiveDot 1.2s infinite ease-in-out;
}

/* ERP Floating Pods */
.erp-pod {
  width: 110px;
  height: 110px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  z-index: 4;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: absolute;
}

.pod-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 12px;
  box-sizing: border-box;
}

.pod-icon {
  width: 70px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.pod-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}

/* Positioning & Animations */
.pod-zoho {
  left: 18.75%;
  top: 15%;
  transform: translate(-50%, -50%);
  animation: floatZoho 6s ease-in-out infinite;
}

.pod-odoo {
  left: 18.75%;
  top: 85%;
  transform: translate(-50%, -50%);
  animation: floatOdoo 7s ease-in-out infinite;
}

.pod-dynamics {
  left: 20%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: floatDynamics 6.5s ease-in-out infinite;
}

.pod-client {
  left: 80%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: floatClient 6.5s ease-in-out infinite;
}

@keyframes floatZoho {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes floatOdoo {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(10px);
  }
}

@keyframes floatDynamics {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-8px);
  }
}

@keyframes floatClient {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(8px);
  }
}

/* Hover Effects */
.erp-pod:hover {
  transform: translate(-50%, -50%) scale(1.08) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.pod-zoho:hover {
  border-color: rgba(237, 59, 132, 0.3);
  box-shadow: 0 15px 35px rgba(237, 59, 132, 0.08);
}

.pod-odoo:hover {
  border-color: rgba(162, 70, 137, 0.3);
  box-shadow: 0 15px 35px rgba(162, 70, 137, 0.08);
}

.pod-dynamics:hover {
  border-color: rgba(70, 192, 213, 0.3);
  box-shadow: 0 15px 35px rgba(70, 192, 213, 0.08);
}

.pod-client:hover {
  border-color: rgba(114, 9, 183, 0.3);
  box-shadow: 0 15px 35px rgba(114, 9, 183, 0.08);
}

@media (max-width: 600px) {
  .erp-pod {
    width: 80px;
    height: 80px;
    border-radius: 16px;
  }

  .pod-name {
    font-size: 8px;
  }

  .hub-core {
    width: 100px;
    height: 100px;
  }

  .hub-logo-wrap {
    width: 36px;
    height: 36px;
  }

  .hub-title {
    font-size: 9px;
  }
}

/* Fixed Background Blobs Wrapper */
.fixed-background-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* Floating Background Elements */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  animation: float-around 15s infinite ease-in-out alternate;
  opacity: 0.15;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--gan-pink);
  top: 10%;
  left: -5%;
  animation-duration: 18s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--gan-cyan);
  bottom: 20%;
  right: -5%;
  animation-duration: 22s;
  animation-delay: -5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--gan-orange);
  top: 50%;
  left: 30%;
  animation-duration: 25s;
  animation-delay: -10s;
}

.shape-4 {
  width: 350px;
  height: 350px;
  background: var(--gan-violet);
  top: 20%;
  right: 15%;
  animation-duration: 20s;
  animation-delay: -8s;
}

@keyframes float-around {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -60px) scale(1.1);
  }

  66% {
    transform: translate(-30px, 40px) scale(0.9);
  }

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

/* Glassmorphism & Fluid Floating Card Utility */
.partnership-card,
.tab-visual-wrapper,
.principle-card,
.expertise-card,
.case-card,
.testimonial-card,
.erp-pod {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
  animation: gentle-float 5s ease-in-out infinite alternate;
}

.partnership-card:nth-child(even),
.principle-card:nth-child(even),
.expertise-card:nth-child(even),
.case-card:nth-child(even),
.testimonial-card:nth-child(even),
.erp-pod:nth-child(even) {
  animation-duration: 6.5s;
  animation-delay: -2s;
}

.expertise-card:nth-child(3n),
.testimonial-card:nth-child(3n),
.erp-pod:nth-child(3n) {
  animation-duration: 7.5s;
  animation-delay: -4s;
}

/* Pause animation on hover */
.partnership-card:hover,
.tab-visual-wrapper:hover,
.principle-card:hover,
.expertise-card:hover,
.case-card:hover,
.testimonial-card:hover,
.erp-pod:hover {
  animation-play-state: paused;
}

@keyframes gentle-float {
  0% {
    translate: 0 0;
  }

  100% {
    translate: 0 -12px;
  }
}