/* ============================================
   DBPS - Digital Business Promoting Services
   Design System & Stylesheet
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* CSS Custom Properties / Design Tokens */
:root {
  /* Colors */
  --color-bg-primary: #0a0e1a;
  --color-bg-secondary: #0f1629;
  --color-bg-card: rgba(15, 22, 41, 0.7);
  --color-bg-card-hover: rgba(20, 30, 55, 0.85);
  --color-bg-glass: rgba(255, 255, 255, 0.03);
  --color-bg-glass-hover: rgba(255, 255, 255, 0.06);

  --color-accent-primary: #3b82f6;
  --color-accent-secondary: #06b6d4;
  --color-accent-tertiary: #8b5cf6;
  --color-accent-success: #10b981;
  --color-accent-warning: #f59e0b;

  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
  --gradient-hero: linear-gradient(180deg, #0a0e1a 0%, #0f1629 50%, #0a0e1a 100%);
  --gradient-card: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
  --gradient-glow: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);

  --color-text-primary: #f1f5f9;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  --color-text-accent: #60a5fa;

  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-hover: rgba(59, 130, 246, 0.3);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);
  --shadow-glow-strong: 0 0 60px rgba(59, 130, 246, 0.25);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Container */
  --container-max: 1280px;
  --container-padding: 1.5rem;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Section */
.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-accent);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
}

.section-badge svg {
  width: 16px;
  height: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, #f1f5f9 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--transition-normal);
  backdrop-filter: blur(0px);
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.nav-logo img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
}

.nav-logo-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: width var(--transition-normal);
}

.nav-links a:hover {
  color: var(--color-text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--color-bg-glass);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-bg-glass-hover);
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--color-text-secondary);
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  color: var(--color-text-primary);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-relaunch {
  background: #1a73e8; /* Vibrant Chrome blue */
  color: #ffffff !important;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(26, 115, 232, 0.3);
}

.btn-relaunch:hover {
  background: #1557b0;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.45);
  transform: translateY(-1px);
}

.btn-relaunch:active {
  transform: translateY(0);
}

.btn-relaunch .ellipsis-icon {
  width: 4px;
  height: 14px;
  color: #ffffff;
  opacity: 0.9;
  flex-shrink: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh !important;
  overflow: hidden !important;
  padding: 0 !important; /* remove default section padding */
}

.main-content-wrapper {
  position: relative;
  z-index: 2;
  background-color: var(--color-bg-primary);
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.5);
}

/* Ecosystem Redesign Layout */
.hero .hero-ecosystem-container {
  display: flex !important;
  width: 100% !important;
  max-width: 1600px !important;
  height: 100vh !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin: 0 auto !important;
  position: relative !important;
  z-index: 10 !important;
  box-sizing: border-box !important;
  padding: 0 4rem !important;
}

/* Left Column Styling */
.hero-split-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  animation: fadeInUp 0.8s ease-out;
  padding-right: 2rem;
  width: 32% !important;
  height: 100% !important;
  box-sizing: border-box;
}

.hero-mobile-image {
  display: none !important;
}


.hero-split-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 24px !important;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.12);
}

.hero-split-badge .sparkle {
  color: #60a5fa;
  font-size: 0.9rem;
}

.hero-split-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 40px !important;
  letter-spacing: -0.02em;
}

.blue-gradient-text {
  background: linear-gradient(135deg, #93c5fd 0%, #3b82f6 60%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-split-desc {
  font-family: var(--font-primary);
  font-size: 1.0625rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 32px !important;
  max-width: 500px;
}

.hero-split-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-split-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(29, 78, 216, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-split-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.45);
  opacity: 0.95;
}

.btn-split-primary .arrow-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.btn-split-primary:hover .arrow-icon {
  transform: translateX(3px);
}

.btn-split-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-split-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Right Column Styling */
.hero-split-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 68% !important;
  height: 100% !important;
  position: relative !important;
  box-sizing: border-box;
}

.hero-header-centered {
  position: absolute !important;
  top: 75px !important; /* give even more top space, pushing it up slightly */
  left: 50% !important;
  transform: translateX(-50%) !important;
  text-align: center !important;
  max-width: 600px !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  animation: fadeInUp 0.8s ease-out;
  z-index: 10 !important;
}

.hero-title-centered {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem) !important; /* slightly compressed for premium layout */
  font-weight: 800;
  line-height: 1.2;
  color: #f1f5f9;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
  text-align: center !important;
}

.hero-subtitle-centered {
  font-family: var(--font-primary);
  font-size: 0.8rem !important; /* slightly compressed */
  color: var(--color-text-secondary);
  line-height: 1.45;
  margin: 0;
  text-align: center !important;
}

.ecosystem-grid {
  display: grid !important;
  grid-template-columns: 240px 1fr 240px !important;
  gap: 1.2rem !important; /* compressed gaps */
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  position: relative !important;
  margin: 55px auto 0 auto !important; /* increased space between header and grid */
  max-width: 1080px !important;
}

.ecosystem-col {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* compressed height of outer columns */
  justify-content: center;
  position: relative;
  z-index: 5;
}

/* Glassmorphic Cards */
.eco-card {
  background: rgba(15, 22, 41, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.7rem 0.9rem; /* compressed card padding */
  font-size: 0.82rem;
  color: #94a3b8;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.eco-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.eco-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.4rem; /* compressed */
  margin-bottom: 0.4rem; /* compressed */
  font-weight: 700;
  color: #f1f5f9;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #f1f5f9;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.eco-card-header .dots {
  color: #64748b;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

/* ERP Card Styles */
.erp-stats-top-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.4rem; /* compressed */
}

.erp-bottom-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0.5rem; /* compressed */
  align-items: stretch;
}

.erp-progress-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.erp-suppliers-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 0.3rem 0.2rem; /* compressed */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.erp-suppliers-card span:first-child {
  font-size: 0.62rem;
  color: #64748b;
  margin-bottom: 0.1rem;
}

.erp-suppliers-card .suppliers-val {
  font-size: 1.05rem; /* slightly smaller */
  font-weight: 700;
  color: #10b981;
}

.erp-suppliers-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 3px;
  background: #10b981;
  border-radius: 2px 2px 0 0;
}

.erp-stat {
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
  color: #64748b;
}

.erp-stat span:last-child {
  font-size: 1.05rem; /* slightly smaller */
  font-weight: 700;
  color: #f1f5f9;
  margin-top: 0.1rem;
}

.indicator-down {
  color: #ef4444; /* red indicator */
  font-size: 0.5rem;
  margin-left: 0.15rem;
  display: inline-block;
  transform: scale(0.85);
}

.indicator-up {
  color: #10b981; /* green indicator */
  font-size: 0.5rem;
  margin-left: 0.15rem;
  display: inline-block;
  transform: scale(0.85);
}

.val-green {
  color: #10b981 !important;
}

.erp-stat .rupee {
  color: #f59e0b;
}

.erp-progress-bars .progress-item {
  margin-bottom: 0.4rem; /* compressed */
}

.erp-progress-bars .progress-item:last-child {
  margin-bottom: 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #64748b;
  margin-bottom: 0.15rem; /* compressed */
}

.progress-bar {
  width: 100%;
  height: 5px; /* compressed */
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  border-radius: 3px;
}

/* E-commerce Card Styles */
.ecom-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.5rem; /* compressed */
  margin-bottom: 0.25rem;
}

.ecom-col-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem; /* compressed */
}

.ecom-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.15rem;
}

.ecom-col-right {
  display: flex;
  flex-direction: column;
}

.ecom-product-pic-container {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  height: 72px; /* compressed */
}

.ecom-awning {
  height: 8px; /* compressed */
  background: repeating-linear-gradient(
    90deg,
    #b45309,
    #b45309 8px,
    #ffffff 8px,
    #ffffff 16px
  );
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.3);
  width: 100%;
}

.ecom-product-pic {
  border: none;
  background: transparent;
  height: 62px; /* compressed */
  padding: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ecom-product-pic img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.ecom-product-sold {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 95px; /* compressed */
  padding: 0.4rem;
  text-align: center;
}

.ecom-product-sold img {
  height: 30px; /* compressed */
  margin-bottom: 0.15rem;
  object-fit: contain;
  opacity: 0.8;
  border-radius: 2px;
}

.sold-desc {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sold-label {
  font-size: 0.65rem;
  color: #64748b;
}

.sold-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: #f1f5f9;
}

.ecom-details {
  width: 100%;
}

.ecom-details .product-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #e2e8f0;
  display: block;
  margin-bottom: 0.5rem;
}

.ecom-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
}

.shop-now-btn {
  font-size: 0.7rem;
  font-weight: 700;
  color: #0f172a;
  background: #f59e0b;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.shop-now-btn:hover {
  opacity: 0.9;
}

/* Website Development Card Styles */
.search-bar-mock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 0.25rem 0.5rem; /* compressed */
  margin-bottom: 0.4rem; /* compressed */
  font-size: 0.72rem;
  color: #64748b;
}

.search-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.filter-icon {
  color: #64748b;
  flex-shrink: 0;
}

.search-icon {
  color: #64748b;
  flex-shrink: 0;
}

.webdev-site-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.4rem; /* compressed */
}

.webdev-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem; /* compressed */
  margin-bottom: 0.4rem; /* compressed */
  font-size: 0.72rem;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  color: #64748b;
}

.meta-row .val {
  color: #e2e8f0;
  font-weight: 500;
}

.meta-row .val.highlight {
  color: #10b981;
  font-weight: 700;
}

.webdev-tags {
  display: flex;
  gap: 0.5rem;
}

.w-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.62rem;
  color: #94a3b8;
}

/* CRM Card Styles */
.crm-table-mock {
  display: flex;
  flex-direction: column;
  gap: 0.25rem; /* compressed */
  width: 100%;
}

.crm-th {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.2rem; /* compressed */
}

.crm-tr {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  font-size: 0.72rem;
  align-items: center;
  padding: 0.06rem 0; /* compressed */
  color: #e2e8f0;
}

.badge-stage {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.1rem 0.3rem; /* compressed */
  border-radius: 4px;
  text-align: center;
  width: max-content;
}

.badge-stage.int {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.badge-stage.qual {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.badge-stage.prop {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.badge-stage.won {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

/* Marketing Card Styles */
.mktg-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 0.5rem; /* compressed */
}

.mktg-left {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px; /* compressed */
  overflow: hidden;
  padding: 0.2rem;
}

.mktg-left img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.mktg-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mktg-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.15rem; /* compressed */
}

.mktg-roi {
  font-size: 0.72rem;
  color: #64748b;
  margin-bottom: 0.25rem; /* compressed */
}

.mktg-roi .highlight {
  color: #10b981;
  font-weight: 700;
}

.mktg-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem; /* compressed */
}

.mktg-stat {
  display: flex;
  flex-direction: column;
  font-size: 0.62rem;
  color: #64748b;
}

.mktg-val {
  font-size: 0.8rem; /* slightly smaller */
  font-weight: 700;
  color: #f1f5f9;
  margin-top: 0.05rem;
}

/* App Development Card Styles */
.appdev-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.5rem; /* compressed */
  align-items: center;
}

.appdev-phone-mock {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px; /* compressed radius */
  height: 88px; /* compressed height */
  width: 54px; /* compressed width */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  padding: 0.1rem; /* compressed */
}

.phone-screen-mini {
  width: 100%;
  height: 100%;
  background: #060913;
  border-radius: 5px; /* compressed */
  display: flex;
  flex-direction: column;
  padding: 0.15rem; /* compressed */
  gap: 0.1rem; /* compressed */
  font-size: 0.38rem;
  color: #94a3b8;
  box-sizing: border-box;
}

.mini-header-row {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 0.02rem;
}

.mini-notch {
  width: 14px; /* compressed */
  height: 2px; /* compressed */
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1px;
}

.mini-card-blue, .mini-card-dark {
  display: flex;
  align-items: center;
  gap: 0.1rem; /* compressed */
  padding: 0.08rem 0.15rem; /* compressed */
  border-radius: 3px;
  font-size: 0.28rem;
  text-align: left;
  box-sizing: border-box;
}

.mini-card-blue {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.mini-card-dark {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.mini-card-blue svg, .mini-card-dark svg {
  width: 7px; /* compressed */
  height: 7px; /* compressed */
  flex-shrink: 0;
}

.mini-card-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mini-title {
  color: #f1f5f9;
  font-weight: 700;
  font-size: 0.28rem;
}

.mini-sub {
  color: #64748b;
  font-size: 0.22rem;
}

.feat-icon-svg {
  width: 14px;
  height: 14px;
  color: #f59e0b;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.appdev-features {
  display: flex;
  flex-direction: column;
  gap: 0.2rem; /* compressed */
}

.feat-item {
  display: flex;
  gap: 0.25rem; /* compressed */
  align-items: flex-start;
}

.feat-icon {
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

.feat-text {
  display: flex;
  flex-direction: column;
}

.feat-title {
  font-size: 0.68rem;
  font-weight: 700;
  color: #e2e8f0;
}

.feat-desc {
  font-size: 0.58rem;
  color: #64748b;
}

/* Center Column Mockups */
.col-center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
}

/* SVG Connection Lines */
.connector-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.connector-path {
  fill: none;
  stroke: #f59e0b;
  stroke-width: 2.5px;
  filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.7));
  opacity: 0.85;
}

@keyframes ecoDash {
  to {
    stroke-dashoffset: -20;
  }
}

/* Laptop Container & Mockup CSS */
.laptop-container {
  position: relative;
  width: 100%;
  max-width: 440px !important; /* compressed from 500px to fit vertically and save height */
  margin: 0 auto;
  z-index: 5;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



.laptop-container:hover {
  transform: scale(1.02);
}

.laptop-screen-bezel {
  background: #111;
  border: 10px solid #111;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  border-bottom: none;
}

.laptop-camera {
  width: 5px;
  height: 5px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.laptop-screen-content {
  aspect-ratio: 16/10;
  width: 100%;
  background: #070a13;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.laptop-keyboard-base {
  height: 10px;
  background: #e2e8f0;
  border-radius: 0 0 8px 8px;
  border-bottom: 2px solid #cbd5e1;
  position: relative;
  width: 110%;
  left: -5%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.laptop-groove {
  width: 20%;
  height: 3px;
  background: #94a3b8;
  border-radius: 0 0 4px 4px;
  margin: 0 auto;
}

/* Laptop Dashboard Content */
.db-mockup {
  display: flex;
  height: 100%;
  width: 100%;
  font-size: 0.4rem;
  color: #94a3b8;
  font-family: var(--font-primary);
}

.db-sidebar {
  width: 70px;
  background: #0c0f1a;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.db-logo {
  font-weight: 900;
  color: #f59e0b;
  font-size: 0.55rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
  font-family: var(--font-display);
}

.db-menu {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.db-menu .menu-item {
  padding: 0.15rem 0.25rem;
  border-radius: 3px;
  font-size: 0.38rem;
}

.db-menu .menu-item.active {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  font-weight: 700;
}

.db-menu .menu-item.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 0.15rem 0;
}

.db-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #0a0e1a;
  min-width: 0;
}

.db-header {
  height: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.4rem;
  flex-shrink: 0;
}

.db-search {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 0.1rem 0.35rem;
  color: #64748b;
  width: 70px;
  font-size: 0.35rem;
}

.db-header .header-right {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.db-avatar {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3b82f6;
}

.db-content {
  flex: 1;
  padding: 0.4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.db-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.db-title-row h3 {
  font-size: 0.5rem;
  color: #f1f5f9;
  font-weight: 700;
  margin: 0;
}

.db-btn {
  background: #f59e0b;
  color: #0c0f1a;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.35rem;
  cursor: pointer;
}

.db-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
}

.db-stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  padding: 0.2rem;
}

.db-stat-lbl {
  display: block;
  font-size: 0.32rem;
  color: #64748b;
}

.db-stat-val {
  font-size: 0.5rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-top: 0.03rem;
  display: block;
}

.db-charts-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.25rem;
}

.db-chart-box, .db-growth-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  padding: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.32rem;
  color: #64748b;
}

.chart-val {
  font-size: 0.55rem;
  font-weight: 700;
  color: #f1f5f9;
}

.chart-svg-mock {
  height: 12px;
  margin-top: 0.08rem;
  width: 100%;
}

.chart-line-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.growth-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.32rem;
  color: #64748b;
}

.growth-header .gr-pct {
  color: #10b981;
  font-weight: 700;
}

.gr-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5px;
  overflow: hidden;
  margin: 0.15rem 0;
}

.gr-fill {
  height: 100%;
  background: #10b981;
  border-radius: 1.5px;
}

.gr-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.32rem;
  color: #64748b;
}

.db-lists-row {
  display: flex;
  gap: 0.25rem;
}

.db-list-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  padding: 0.2rem;
  min-width: 0;
}

.db-list-box.flex-2 { flex: 2; }
.db-list-box.flex-1 { flex: 1; }

.db-list-box h4 {
  font-size: 0.4rem;
  color: #e2e8f0;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.db-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.35rem;
}

.db-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.db-table tr:last-child {
  border-bottom: none;
}

.db-table td {
  padding: 0.08rem 0;
  white-space: nowrap;
}

.db-table .st {
  font-weight: 700;
  padding: 0.04rem 0.12rem;
  border-radius: 2px;
  font-size: 0.32rem;
}

.db-table .st-del { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.db-table .st-pr { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.db-table .st-sh { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }

.db-prod-list {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.35rem;
}

.db-prod-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 0.08rem 0;
}

.db-prod-list li:last-child {
  border-bottom: none;
}

/* Phone Container & Mockup CSS */
.phone-container {
  position: absolute;
  bottom: -15px; /* compressed */
  right: -25px; /* compressed */
  width: 82px; /* compressed from 95px */
  z-index: 10;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.55));
  transition: transform 0.5s ease;
}

.phone-container:hover {
  transform: translateY(-5px);
}

.phone-case {
  background: #111;
  border: 3px solid #111; /* compressed border */
  border-radius: 12px; /* compressed radius */
  aspect-ratio: 9/19;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.2);
}

.phone-notch {
  width: 45%;
  height: 7px; /* compressed */
  background: #111;
  border-radius: 0 0 4px 4px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
}

.phone-screen-content {
  width: 100%;
  height: 100%;
  background: #070a13;
  padding: 0.5rem 0.35rem 0.35rem; /* compressed padding */
  display: flex;
  flex-direction: column;
  gap: 0.3rem; /* compressed gap */
  font-size: 0.4rem; /* compressed font size */
  color: #94a3b8;
  box-sizing: border-box;
}

.phone-mock-header {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.phone-avatar {
  width: 12px; /* compressed */
  height: 12px; /* compressed */
  border-radius: 50%;
  background: #a855f7;
}

.phone-user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.phone-greeting {
  font-weight: 700;
  color: #f1f5f9;
  font-size: 0.36rem; /* compressed */
}

.phone-sub {
  color: #64748b;
  font-size: 0.3rem; /* compressed */
}

.phone-actions {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.p-lbl {
  font-size: 0.32rem; /* compressed */
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
}

.p-actions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem;
}

.p-act-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 0.12rem; /* compressed */
  text-align: center;
  font-size: 0.34rem; /* compressed */
  font-weight: 600;
  color: #e2e8f0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.p-act-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.phone-recent {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.p-activity-item {
  display: flex;
  gap: 0.2rem; /* compressed */
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  padding: 0.12rem; /* compressed */
}

.p-act-icon {
  font-size: 0.55rem; /* compressed */
}

.p-act-desc {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.p-act-title {
  font-weight: 600;
  color: #e2e8f0;
  font-size: 0.34rem; /* compressed */
}

.p-act-status {
  font-size: 0.3rem; /* compressed */
  color: #64748b;
}

/* Floating Ecosystem Badges */
.eco-badge {
  position: absolute;
  background: rgba(10, 14, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.3rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 500;
  color: #e2e8f0;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.badge-left-1 {
  left: -40px;
  top: 40px;
}

.badge-left-2 {
  left: -45px;
  top: 65px;
}

.badge-left-3 {
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
}

.badge-center-top {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.badge-right-1 {
  top: -30px;
  left: -20px;
}

.badge-right-1-sub {
  right: -50px;
  top: 40%;
  transform: translateY(-50%);
}

.badge-right-2 {
  right: -45px;
  top: -15px;
}

.badge-right-2-sub {
  right: -40px;
  bottom: -20px;
}

.badge-right-3 {
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-gradient {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at 50% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 60%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.375rem 1rem;
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-accent);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-success);
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 520px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-glow-strong);
  border: 1px solid var(--color-border);
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-xl);
}

.hero-float-card {
  position: absolute;
  background: rgba(15, 22, 41, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: float 6s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
}

.hero-float-card.card-1 {
  top: 10%;
  right: -30px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 15%;
  left: -30px;
  animation-delay: 2s;
}

.float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card-icon.blue {
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-accent-primary);
}

.float-card-icon.green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-accent-success);
}

.float-card-icon.purple {
  background: rgba(139, 92, 246, 0.15);
  color: var(--color-accent-tertiary);
}

.float-card-text {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.float-card-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

/* ============================================
   TRUSTED BY / BRANDS
   ============================================ */
.brands {
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-secondary);
}

.brands-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2xl);
}

.brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4xl);
  flex-wrap: wrap;
}

.brand-item {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text-muted);
  opacity: 0.5;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.brand-item:hover {
  opacity: 0.9;
}

.brand-item svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
/* ============================================
   SERVICES SECTION (NEW REFERENCE DESIGN)
   ============================================ */
.services-new {
  background-color: #ffffff !important;
  color: #0c0f16 !important;
  padding: var(--space-5xl) 0;
  position: relative;
}

.section-header-new {
  text-align: left;
  margin-bottom: 3.5rem;
  max-width: 800px;
}

.section-tag-new {
  color: #00bcd4;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.section-tag-new .tag-line {
  display: inline-block;
  width: 16px;
  height: 1.5px;
  background-color: #00bcd4;
}

.section-title-new {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0c0f16;
  margin-bottom: 1.25rem;
}

.section-subtitle-new {
  font-family: var(--font-primary);
  font-size: 1.0625rem;
  color: #5b6170;
  line-height: 1.7;
  max-width: 640px;
}

/* Tabs */
.services-tabs-container {
  position: relative;
  margin-bottom: 3.5rem;
  width: 100%;
}

.services-tabs {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1rem;
  overflow-x: auto;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  -webkit-overflow-scrolling: touch;
}

.services-tabs::-webkit-scrollbar {
  display: none;
}

.services-tabs {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #8c93a3;
  background: transparent;
  border: none;
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
}

.tab-btn:hover {
  color: #0c0f16;
}

.tab-btn .tab-number {
  font-weight: 500;
  color: #8c93a3;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: #00bcd4;
  border: 1.5px solid #00bcd4;
  background: #ffffff;
}

.tab-btn.active .tab-number {
  color: #00bcd4;
}

.tabs-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e5e7eb;
  z-index: 1;
}

/* Content grid */
.tab-contents-container {
  width: 100%;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: tabFadeIn 0.5s ease-out;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

/* Cards */
.service-card-new {
  background-color: #ffffff;
  border: 1px solid #eef0f3;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
  position: relative;
}

.service-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: #d1d5db;
}

/* Featured Card (Black variation) */
.service-card-new.featured-card {
  background-color: #0c0f16;
  border: 1px solid #0c0f16;
  color: #ffffff;
}

.service-card-new.featured-card:hover {
  background-color: #121620;
  border-color: #121620;
  box-shadow: 0 20px 40px rgba(12, 15, 22, 0.15);
}

/* Badge for featured */
.card-badge-container {
  margin-bottom: 1rem;
}

.card-badge {
  background-color: #00bcd4;
  color: #ffffff;
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.325rem 0.85rem;
  border-radius: 4px;
  display: inline-block;
}

/* Icon box */
.card-icon-container {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00bcd4;
  margin-bottom: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.card-icon-container svg {
  width: 20px;
  height: 20px;
}

.card-icon-container.circle-icon {
  border: 1px solid #b2ebf2;
  background-color: #f0fbfd;
  border-radius: 12px;
}

.service-card-new:hover .card-icon-container.circle-icon {
  border-color: #00bcd4;
  background-color: #e0f7fa;
}

.featured-card .card-icon-container {
  background-color: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.2);
  color: #00bcd4;
}

/* Title & Description */
.card-title {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0c0f16;
  margin-bottom: 0.5rem;
  line-height: 1.35;
  text-align: left;
}

.featured-card .card-title {
  color: #ffffff;
}

.card-description {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: #5b6170;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
  flex-grow: 1;
}

.featured-card .card-description {
  color: #a0a6b5;
}

/* Footer link */
.card-footer {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.card-link {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #00bcd4;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.card-link:hover {
  color: #00acc1;
  transform: translateX(3px);
}

/* Responsive grid overrides */
@media (max-width: 991px) {
  .services-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-new {
    padding: var(--space-3xl) 0;
  }

  .section-header-new {
    margin-bottom: 2.5rem;
  }

  .services-tabs {
    gap: 0.75rem;
  }

  .tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .services-grid-new {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card-new {
    padding: 1.5rem 1.25rem;
  }
}

/* ============================================
   ABOUT / A MODERN AI PLATFORM SECTION
   ============================================ */
.about-hero {
  background-color: #f3f4f6 !important;
  color: #1f2937 !important;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Decorative elements */
.decor-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #f59e0b;
  /* yellow */
  border-radius: 50%;
  pointer-events: none;
}

.decor-dot.decor-1 {
  top: 5rem;
  right: 10%;
}

.decor-square {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #c084fc;
  /* purple-400 */
  transform: rotate(45deg);
  pointer-events: none;
}

.decor-square.decor-2 {
  top: 8rem;
  right: 15%;
}

.decor-line {
  position: absolute;
  background-color: #a855f7;
  /* purple-500 */
  pointer-events: none;
}

.decor-line.decor-3 {
  top: 10rem;
  right: 8%;
  width: 8px;
  height: 32px;
}

.decor-line.decor-4 {
  top: 12rem;
  right: 12%;
  width: 24px;
  height: 8px;
  background-color: #f59e0b;
  /* yellow-400 */
}

/* Extra section decors */
.decor-dot.decor-5 {
  top: 15rem;
  left: 5%;
  width: 20px;
  height: 20px;
  background-color: #06b6d4;
  /* cyan */
  animation: popper-float-y 6s ease-in-out infinite;
}

.decor-square.decor-6 {
  bottom: 6rem;
  left: 8%;
  width: 14px;
  height: 14px;
  background-color: #fbbf24;
  /* yellow */
  animation: popper-spin-float 8s ease-in-out infinite;
}

.decor-line.decor-7 {
  top: 6rem;
  left: 12%;
  width: 30px;
  height: 6px;
  background-color: #ec4899;
  /* pink */
  border-radius: 9999px;
  animation: popper-float-x 5s ease-in-out infinite;
}

/* Grid layout */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-hero-text {
  text-align: left;
  position: relative;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #111827 !important;
  /* gray-900 */
  margin-bottom: 1.5rem;
}

.about-hero-title span {
  display: inline;
}

.about-hero-description {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  color: #4b5563 !important;
  /* gray-600 */
  line-height: 1.7;
  max-width: 32rem;
}

.about-hero-visual {
  position: relative;
}

/* AI Dashboard Image Wrapper */
.ai-dashboard-image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: rotate(6deg);
  transition: transform 0.3s ease;
  max-width: 28rem;
  margin: 0 auto;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ai-dashboard-image-wrapper:hover {
  transform: rotate(0deg);
}

.ai-dashboard-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 992px) {
  .about-hero-text {
    will-change: opacity, transform;
  }

  .ai-dashboard-image-wrapper {
    will-change: transform;
  }

  .about-hero.scroll-animating .ai-dashboard-image-wrapper {
    transition: none !important;
  }

  .about-hero.scroll-animating .about-hero-text {
    transition: none !important;
  }

  .about-hero.scroll-animating .float-decor {
    transition: none !important;
  }
}

/* Custom floating animations for poppers */
@keyframes popper-float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes popper-float-x {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(12px);
  }
}

@keyframes popper-spin-float {

  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }

  50% {
    transform: translateY(-12px) rotate(225deg);
  }
}

/* Floating decors */
.float-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.float-decor-1 {
  top: -1.5rem;
  left: -2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #a855f7;
  /* purple-500 */
  border-radius: 0.75rem;
  transform: rotate(45deg);
  animation: popper-spin-float 8s ease-in-out infinite;
}

.float-decor-2 {
  bottom: -2rem;
  right: 1.5rem;
  width: 1.75rem;
  height: 1.75rem;
  background-color: #fbbf24;
  /* amber-400 */
  border-radius: 50%;
  animation: popper-float-y 6s ease-in-out infinite 1s;
}

.float-decor-3 {
  top: 40%;
  right: -3rem;
  width: 0.75rem;
  height: 2.5rem;
  background-color: #8b5cf6;
  /* violet-500 */
  border-radius: 9999px;
  animation: popper-float-y 7s ease-in-out infinite 0.5s;
}

/* Small purple/pink diamond on the right */
.float-decor-4 {
  top: 15%;
  right: -5rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #c084fc;
  /* purple-400 */
  border-radius: 0.35rem;
  transform: rotate(45deg);
  animation: popper-spin-float 9s ease-in-out infinite 2s;
}

/* Orange/Yellow circle at top right */
.float-decor-5 {
  top: -2.5rem;
  right: -3rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #f97316;
  /* orange-500 */
  border-radius: 50%;
  animation: popper-float-y 5s ease-in-out infinite 1.5s;
}

/* Small horizontal orange bar on the right */
.float-decor-6 {
  top: 35%;
  right: -5rem;
  width: 2rem;
  height: 0.5rem;
  background-color: #f59e0b;
  /* amber-500 */
  border-radius: 9999px;
  animation: popper-float-x 6s ease-in-out infinite;
}

/* Cyan diamond on the far left of the text content */
.float-decor-7 {
  top: 10%;
  left: -4rem;
  width: 1.75rem;
  height: 1.75rem;
  background-color: #06b6d4;
  /* cyan-500 */
  border-radius: 0.5rem;
  transform: rotate(45deg);
  animation: popper-spin-float 10s ease-in-out infinite 3s;
}

/* Small pink dot floating near the bottom-left of the text */
.float-decor-8 {
  bottom: 10%;
  left: -2rem;
  width: 1rem;
  height: 1rem;
  background-color: #ec4899;
  /* pink-500 */
  border-radius: 50%;
  animation: popper-float-y 8s ease-in-out infinite 0.7s;
}

/* Yellow circle floating near the top-left of the text */
.float-decor-9 {
  top: -2rem;
  left: -3rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fbbf24;
  /* yellow-400 */
  border-radius: 50%;
  animation: popper-float-y 6s ease-in-out infinite 1.2s;
}

/* Violet pill shape near bottom-right of the text */
.float-decor-10 {
  bottom: -1rem;
  left: 50%;
  width: 2.5rem;
  height: 0.75rem;
  background-color: #a855f7;
  /* purple-500 */
  border-radius: 9999px;
  animation: popper-float-x 8s ease-in-out infinite 0.5s;
}

/* Trust Indicators */
.trust-indicators {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.trust-title {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  text-align: center;
  margin-bottom: 1.5rem;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0.7;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-logo {
  width: 1.25rem;
  height: 1.25rem;
  background-color: #9ca3af;
  /* gray-400 */
  border-radius: 4px;
}

.trust-name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  color: #4b5563;
}

/* Responsiveness */
@media (max-width: 991px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-hero-title {
    text-align: center;
  }

  .ai-dashboard-image-wrapper {
    transform: rotate(3deg);
  }
}

@media (max-width: 640px) {

  .decor-dot,
  .decor-square,
  .decor-line {
    display: none;
    /* Hide top decorative shapes on mobile */
  }

  .float-decor-3 {
    display: none;
  }

  .trust-grid {
    gap: 1.5rem;
  }
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  background: var(--color-bg-primary);
  position: relative;
  z-index: 5;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent-primary), var(--color-accent-secondary), var(--color-accent-tertiary), transparent);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--color-bg-card);
  border: 2px solid var(--color-border);
  color: var(--color-text-accent);
  transition: all var(--transition-normal);
}

.process-step:hover .step-number {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
  transform: scale(1.1);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================================
   PARALLAX BREAK SECTION
   ============================================ */
.parallax-break {
  position: relative;
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0);
  /* containing container for fixed parallax child on mobile and desktop */
  background-color: #0a0e1a;
  /* matches adjacent section background to hide any clip-path border rendering artifacts */
  margin-top: -5px;
  /* Pull the section up under the process section to hide the clip-path top border artifact */
  z-index: 1;
  border: none !important;
}

.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/services-illustration.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  /* hardware acceleration */
  border: none !important;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.75) 0%, rgba(10, 14, 26, 0.45) 50%, rgba(10, 14, 26, 0.75) 100%);
  z-index: 1;
}

.parallax-break .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.parallax-content {
  max-width: 700px;
  margin: 0 auto;
}

.parallax-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.parallax-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  background: var(--color-bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--transition-normal);
}

.pricing-card.featured {
  border-color: var(--color-accent-primary);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.04) 100%);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.pricing-card:not(.featured):hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1.25rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.pricing-card .pricing-desc {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.pricing-feature svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent-success);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* ============================================
   TESTIMONIALS / EDUCATION HERO DESIGN SECTION
   ============================================ */
.testimonials-new {
  background-color: #ffffff !important;
  color: #0f121d !important;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-grid-new {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.testimonials-content-new {
  text-align: left;
}

.testimonials-content-new h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0c0f16 !important;
  margin-bottom: 1.5rem;
}

.testimonials-content-new h2 span.accent-cyan {
  color: #00bcd4;
  /* cyan */
}

.testimonials-content-new p {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: #555c6d !important;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.testimonials-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cyan {
  background-color: #00bcd4;
  color: #ffffff !important;
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 188, 212, 0.3);
}

.btn-cyan:hover {
  background-color: #00acc1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

.btn-cyan-outline {
  background-color: #ffffff;
  color: #00bcd4 !important;
  border: 1.5px solid #00bcd4;
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-cyan-outline:hover {
  background-color: #e0f7fa;
  transform: translateY(-2px);
}

/* Right Visual side */
.testimonials-visual-new {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 480px;
}

/* Background main circle */
.visual-bg-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: #e0f7fa;
  /* light cyan */
  border-radius: 50%;
  z-index: 1;
  overflow: hidden;
  /* Added to clip the woman image perfectly to the circle */
}

.visual-bg-circle-outer {
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(0, 188, 212, 0.15);
  border-radius: 50%;
  z-index: 1;
}

/* Central Woman Image */
.visual-woman-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: auto;
  z-index: 2;
}

/* Floating Badges styling */
.badge-experience {
  position: absolute;
  top: 10px;
  left: 20px;
  background-color: #00bcd4;
  color: #ffffff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0, 188, 212, 0.3);
  text-align: center;
  animation: float-badge 6s ease-in-out infinite;
}

.badge-experience .number {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.badge-experience .label {
  font-size: 0.65rem;
  line-height: 1.1;
  margin-top: 2px;
}

.badge-students {
  position: absolute;
  top: 130px;
  left: -40px;
  background-color: #ffffff;
  color: #0c0f16;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #f0f2f5;
  animation: float-badge 6s ease-in-out infinite 1.5s;
}

.badge-students .number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0c0f16;
  line-height: 1.2;
}

.badge-students .label {
  font-size: 0.7rem;
  color: #8c93a3;
  margin-top: 2px;
}

.badge-success {
  position: absolute;
  bottom: 20px;
  right: 0px;
  background-color: #00bcd4;
  color: #ffffff;
  border-radius: 9999px;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.25);
  font-size: 0.8rem;
  font-weight: 700;
  animation: float-badge 6s ease-in-out infinite 3s;
}

.badge-success svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

/* Avatar bubble elements */
.avatar-bubble {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 3px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.avatar-bubble img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-top-right {
  top: 10px;
  right: 40px;
  animation: float-badge 6s ease-in-out infinite 4.5s;
}

.avatar-top-right .stars {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 9999px;
  padding: 2px 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 1px;
}

.avatar-top-right .stars svg {
  width: 6px;
  height: 6px;
  fill: #ffb300;
}

.avatar-bottom-left {
  bottom: 60px;
  left: 30px;
  animation: float-badge 6s ease-in-out infinite 2.2s;
}

/* Keyframes for soft float */
@keyframes float-badge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  background: var(--color-bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--color-border-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-text-accent);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
  color: var(--color-text-muted);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--color-accent-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-new {
  background-color: #000000;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-new .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* The drafting/grid box wrapper */
.cta-grid-box {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 50%, transparent 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}

/* Center Divider Line (vertical dashed) */
.cta-divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  border-left: 1px dashed rgba(255, 255, 255, 0.1);
  pointer-events: none;
  transform: translateX(-50%);
}

/* Corner markers styling */
.corner-marker {
  position: absolute;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
}

/* Position of corner markers exactly over the corner junctions */
.corner-marker.top-left {
  top: -10px;
  left: -10px;
}

.corner-marker.top-right {
  top: -10px;
  right: -10px;
}

.corner-marker.bottom-left {
  bottom: -10px;
  left: -10px;
}

.corner-marker.bottom-right {
  bottom: -10px;
  right: -10px;
}

/* Extending drafting lines using pseudo-elements */
.corner-marker::before,
.corner-marker::after {
  content: '';
  position: absolute;
  background-color: rgba(255, 255, 255, 0.12);
  /* light blueprint line color */
}

/* Top-Left crosshair extensions */
.corner-marker.top-left::before {
  /* Vertical line going UP */
  bottom: 50%;
  left: 50%;
  width: 1px;
  height: 60px;
}

.corner-marker.top-left::after {
  /* Horizontal line going LEFT */
  right: 50%;
  top: 50%;
  height: 1px;
  width: 60px;
}

/* Top-Right crosshair extensions */
.corner-marker.top-right::before {
  /* Vertical line going UP */
  bottom: 50%;
  left: 50%;
  width: 1px;
  height: 60px;
}

.corner-marker.top-right::after {
  /* Horizontal line going RIGHT */
  left: 50%;
  top: 50%;
  height: 1px;
  width: 60px;
}

/* Bottom-Left crosshair extensions */
.corner-marker.bottom-left::before {
  /* Vertical line going DOWN */
  top: 50%;
  left: 50%;
  width: 1px;
  height: 60px;
}

.corner-marker.bottom-left::after {
  /* Horizontal line going LEFT */
  right: 50%;
  top: 50%;
  height: 1px;
  width: 60px;
}

/* Bottom-Right crosshair extensions */
.corner-marker.bottom-right::before {
  /* Vertical line going DOWN */
  top: 50%;
  left: 50%;
  width: 1px;
  height: 60px;
}

.corner-marker.bottom-right::after {
  /* Horizontal line going RIGHT */
  left: 50%;
  top: 50%;
  height: 1px;
  width: 60px;
}

/* Content typography */
.cta-content-new {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title-new {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.02em;
}

.cta-subtitle-new {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #888888;
  margin: 0 0 2.5rem 0;
  line-height: 1.5;
  font-weight: 400;
}

/* Buttons actions container */
.cta-actions-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Contact Sales Button */
.btn-contact-sales {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
}

.btn-contact-sales:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.03);
}

/* Get Started Button */
.btn-get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #eaeaea;
  color: #000000;
  border: 1px solid transparent;
  padding: 0.8rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
  gap: 0.5rem;
}

.btn-get-started:hover {
  background-color: #ffffff;
}

.btn-get-started .arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
  stroke: #000000;
}

.btn-get-started:hover .arrow-icon {
  transform: translateX(3px);
}

/* Responsive adjustments for CTA section */
@media (max-width: 768px) {
  .cta-new {
    padding: 6rem 0;
  }

  .cta-grid-box {
    padding: 4rem 1.5rem;
  }

  /* Shorten extending lines on tablet */
  .corner-marker.top-left::before,
  .corner-marker.top-right::before,
  .corner-marker.bottom-left::before,
  .corner-marker.bottom-right::before {
    height: 30px;
  }

  .corner-marker.top-left::after,
  .corner-marker.top-right::after,
  .corner-marker.bottom-left::after,
  .corner-marker.bottom-right::after {
    width: 30px;
  }
}

@media (max-width: 580px) {
  .cta-actions-new {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 0.75rem;
  }

  .btn-contact-sales,
  .btn-get-started {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cta-new {
    padding: 5rem 0;
  }

  .cta-grid-box {
    padding: 3.5rem 1rem;
  }

  /* Hide extending lines entirely on very small screens to avoid horizontal scroll or layout crowding */
  .corner-marker::before,
  .corner-marker::after {
    display: none;
  }
}


/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--color-bg-secondary);
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.contact-info-card:hover {
  border-color: var(--color-border-hover);
  background: var(--color-bg-glass-hover);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-accent-primary);
}

.contact-info-card h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.contact-info-card p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  transition: all var(--transition-normal);
}

.footer-social:hover {
  border-color: var(--color-accent-primary);
  color: var(--color-accent-primary);
  background: rgba(59, 130, 246, 0.1);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: var(--space-xl);
  color: var(--color-text-primary);
}

.footer-column a {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  padding: var(--space-xs) 0;
  transition: all var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-text-accent);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-text-accent);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Counter Animation */
.counter {
  display: inline-block;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-3xl);
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-float-card.card-1 {
    right: -10px;
  }

  .hero-float-card.card-2 {
    left: -10px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .process-steps::before {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .testimonials-grid-new {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
    gap: 3rem;
  }

  .testimonials-content-new {
    text-align: center;
  }

  .testimonials-content-new p {
    margin: 0 auto 2rem auto;
  }

  .testimonials-buttons {
    justify-content: center;
  }

  .testimonials-visual-new {
    height: 440px;
  }

  .visual-bg-circle {
    width: 360px;
    height: 360px;
  }

  .visual-bg-circle-outer {
    width: 410px;
    height: 410px;
  }

  .visual-woman-img {
    width: 290px;
  }

  .contact .container {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 991px) {
  .navbar {
    z-index: 99999 !important;
  }

  .nav-logo {
    position: relative;
    z-index: 100001 !important;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0e1a !important;
    /* solid theme background color to prevent WebKit stacking/filter bugs */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    z-index: 100000 !important;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
  }

  .nav-links a:hover {
    color: var(--color-text-primary);
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 100001 !important;
  }

  .nav-actions .btn:not(.btn-relaunch) {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  /* Hide About Section poppers on mobile/tablet screens to prevent overflow */
  .float-decor,
  .decor-dot,
  .decor-square,
  .decor-line {
    display: none !important;
  }

  /* Testimonials Tablet Responsiveness */
  .testimonials-visual-new {
    height: 360px;
  }

  .visual-bg-circle {
    width: 280px;
    height: 280px;
  }

  .visual-bg-circle-outer {
    width: 320px;
    height: 320px;
  }

  .visual-woman-img {
    width: 220px;
  }

  .badge-experience {
    width: 70px;
    height: 70px;
    top: 5px;
    left: 10px;
  }

  .badge-experience .number {
    font-size: 1.25rem;
  }

  .badge-experience .label {
    font-size: 0.55rem;
  }

  .badge-students {
    padding: 0.6rem 1rem;
    left: -20px;
    top: 100px;
  }

  .badge-students .number {
    font-size: 1.125rem;
  }

  .badge-students .label {
    font-size: 0.65rem;
  }

  .badge-success {
    padding: 0.4rem 0.9rem;
    font-size: 0.7rem;
    right: -10px;
    bottom: 15px;
  }

  .avatar-top-right {
    top: 10px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .avatar-bottom-left {
    bottom: 50px;
    left: 10px;
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: var(--space-3xl);
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero-float-card {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    gap: var(--space-xl);
  }

  .brand-item {
    font-size: 1.125rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  /* Testimonials Mobile Responsiveness */
  .testimonials-visual-new {
    height: 300px;
  }

  .visual-bg-circle {
    width: 220px;
    height: 220px;
  }

  .visual-bg-circle-outer {
    width: 250px;
    height: 250px;
  }

  .visual-woman-img {
    width: 170px;
  }

  .badge-students,
  .badge-experience {
    display: none;
  }

  .badge-success {
    right: 50%;
    transform: translateX(50%);
    bottom: 0px;
    animation: none;
  }

  .avatar-top-right {
    top: 5px;
    right: 10px;
  }

  .avatar-bottom-left {
    bottom: 35px;
    left: 0px;
  }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 10000;
  transition: width 100ms linear;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-strong);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   HERO & NAVBAR RESPONSIVE SYSTEM OVERRIDES
   ============================================ */

/* 1. Tablet Responsive Overrides (max-width: 1200px) */
@media (max-width: 1200px) {
  /* Stack the hero into two rows: text first, grid below */
  .hero .hero-ecosystem-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important;
    min-height: 100vh !important;
    padding: 100px 40px 60px !important;
    box-sizing: border-box !important;
  }

  /* Centering stacked text elements */
  .hero-split-left {
    width: 100% !important;
    height: auto !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 2.5rem !important;
    padding-right: 0 !important;
  }

  .hero-split-title {
    text-align: center !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-split-desc {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    max-width: 600px !important;
  }

  .hero-split-actions {
    justify-content: center !important;
  }

  /* Scale the entire ecosystem Grid illustration to fit layout */
  .hero-split-right {
    width: 100% !important;
    height: calc(480px * (min(90vw, 960px) / 960)) !important; /* Scale layout height dynamically */
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    transform: scale(calc(min(90vw, 960px) / 960)) !important;
    transform-origin: top center !important;
    margin: 0 auto !important;
    overflow: visible !important;
  }

  /* Lock grid width to prevent layout wrapping */
  .ecosystem-grid {
    display: grid !important;
    grid-template-columns: 240px 1fr 240px !important;
    gap: 1.2rem !important;
    width: 960px !important;
    margin: 0 auto !important;
  }

  .ecosystem-col.col-center {
    order: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Maintain standard connector lines */
  .connector-lines {
    display: block !important;
  }

  .laptop-secondary-container {
    display: none !important;
  }
}

/* 2. Intermediate Breakpoint Overrides (max-width: 992px) */
@media (max-width: 992px) {
  /* Convert navbar links to mobile responsive overlay */
  .navbar {
    z-index: 99999 !important;
  }

  .nav-logo {
    position: relative;
    z-index: 100001 !important;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0e1a !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    z-index: 100000 !important;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.5rem;
    color: var(--color-text-secondary);
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 100001 !important;
  }

  /* Make relaunch button remain visible on mobile navbar next to toggle */
  .nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
  }

  .nav-actions .btn:not(.btn-relaunch) {
    display: none;
  }

  .btn-relaunch {
    display: inline-flex !important;
    font-size: 0.75rem !important;
    padding: 0.35rem 0.75rem !important;
  }
}

/* 3. Mobile Breakpoint Overrides (max-width: 768px) */
@media (max-width: 768px) {
  /* Set Mobile Hero paddings and layout height */
  .hero .hero-ecosystem-container {
    padding: 90px 20px 60px !important;
    min-height: auto !important;
  }

  .hero-split-left {
    margin-bottom: 2rem !important;
  }

  /* Stepping down main heading size to 36px */
  .hero-split-title {
    font-size: 36px !important;
    line-height: 1.25 !important;
  }

  /* Description mobile sizing */
  .hero-split-desc {
    font-size: 16px !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
  }

  /* Stack primary and secondary CTA buttons vertically */
  .hero-split-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 16px !important;
  }

  .hero-split-actions a {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0.75rem 1.5rem !important;
  }

  /* Hide the ecosystem grid on mobile */
  .hero-split-right {
    display: none !important;
  }

  /* Display mobile-only static dashboard image */
  .hero-mobile-image {
    display: block !important;
    width: 100% !important;
    max-width: 480px !important;
    margin: 2.5rem auto 0 auto !important;
  }

  .hero-mobile-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
  }
}

/* 4. Small Mobile Breakpoint Overrides (max-width: 576px) */
@media (max-width: 576px) {
  /* Stepping down main heading size to 30px */
  .hero-split-title {
    font-size: 30px !important;
  }

  /* Hide decorative labels (badges) to avoid overlap / text crowding on small screens */
  .eco-badge {
    display: none !important;
  }
}