/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-fast);
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

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

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

.nav-links a:not(.btn) {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
}
.nav-links a.active:not(.btn) {
  color: var(--primary-purple);
  border-bottom: 2px solid var(--primary-purple);
  padding-bottom: 4px;
}
.nav-links a:hover:not(.btn) {
  color: var(--primary-purple);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dark-charcoal);
  transition: var(--transition-fast);
}

/* Section Light Background Utility */
.section-light {
  background-color: var(--bg-white);
}

.dark-section {
  background-color: #1a0a2a; /* Deep dark purple/charcoal */
  color: white;
  background-image: radial-gradient(circle at top, rgba(138,0,138,0.2) 0%, transparent 50%);
}

/* Image Utilities */
.shadow-lg { box-shadow: var(--shadow-lg); }
.rounded-lg { border-radius: var(--border-radius-lg); }

/* 1. Hero V2 (Matches reference mockup) */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8f0ff 40%, #ede0ff 100%);
}

.hero-v2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-v2-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(138,0,138,0.25), rgba(180,100,255,0.1));
  top: -200px; right: -200px;
  animation: blobPulse 8s ease-in-out infinite;
}

.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(138,0,138,0.15), rgba(200,150,255,0.05));
  bottom: -150px; left: -150px;
  animation: blobPulse 10s ease-in-out infinite reverse;
}

@keyframes blobPulse {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(20px, -20px); }
}

.hero-v2-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Left Content */
.hero-v2-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(138,0,138,0.08);
  border: 1px solid rgba(138,0,138,0.2);
  color: var(--primary-purple);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  width: fit-content;
}

.hero-v2-headline {
  font-family: var(--font-body);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #111;
  margin: 0;
}

.hero-v2-headline-purple {
  color: var(--primary-purple);
  display: block;
}

.hero-v2-underline {
  width: 60px;
  height: 4px;
  background: var(--primary-purple);
  border-radius: 2px;
}

.hero-v2-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  max-width: 480px;
  margin: 0;
}

/* Buttons */
.hero-v2-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-v2-primary {
  background: var(--primary-purple);
  color: white;
  box-shadow: 0 8px 30px rgba(138,0,138,0.35);
}

.btn-v2-primary:hover {
  background: #6b006b;
  box-shadow: 0 12px 40px rgba(138,0,138,0.5);
  transform: translateY(-2px);
  color: white;
}

.btn-v2-arrow {
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn-v2-primary:hover .btn-v2-arrow {
  transform: translateX(3px);
}

.btn-v2-secondary {
  background: white;
  color: #222;
  border: 1.5px solid #ddd;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.btn-v2-secondary:hover {
  border-color: var(--primary-purple);
  color: var(--primary-purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(138,0,138,0.15);
}

.btn-v2-arrow-outline {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn-v2-secondary:hover .btn-v2-arrow-outline {
  transform: translateX(3px);
}

/* Trust Avatars */
.hero-v2-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.trust-avatar:first-child { margin-left: 0; }
.av1 { background: #8A008A; }
.av2 { background: #6a0dad; }
.av3 { background: #9b30ff; }
.av4 { background: #5c0099; }
.av5 { background: #333; }

.hero-v2-trust p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #555;
  margin: 0;
}

.hero-v2-trust strong { color: #111; }

/* Right Visual / Dashboard */
.hero-v2-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Dashboard Mockup Window */
.dashboard-mockup {
  width: 100%;
  max-width: 560px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow:
    0 2px 0 rgba(0,0,0,0.06),
    0 20px 60px rgba(138,0,138,0.12),
    0 60px 120px rgba(0,0,0,0.08);
  border: 1px solid rgba(138,0,138,0.1);
  overflow: hidden;
  animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Top chrome bar */
.dash-topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 10px 16px;
  background: #f8f4ff;
  border-bottom: 1px solid rgba(138,0,138,0.08);
}

.dash-dots {
  display: flex;
  gap: 5px;
  margin-right: 4px;
}
.dd {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dd.red { background: #ff5f57; }
.dd.yellow { background: #febc2e; }
.dd.green { background: #28c840; }

.dash-tab {
  font-size: 0.72rem;
  font-weight: 500;
  color: #999;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
}
.dash-tab.active-tab {
  background: white;
  color: #8A008A;
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.dash-actions {
  margin-left: auto;
  display: flex;
  gap: 6px;
}
.dash-dot-sm {
  width: 18px; height: 18px;
  border-radius: 4px;
  background: rgba(138,0,138,0.08);
}

/* Dashboard Body */
.dash-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fdfbff;
}

/* Stat Row */
.dash-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.dash-stat {
  background: white;
  border-radius: 10px;
  padding: 10px 10px 8px;
  border: 1px solid rgba(138,0,138,0.07);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dash-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(138,0,138,0.12);
}

.dash-stat.highlight {
  background: linear-gradient(135deg, #8A008A, #6a0dad);
  border-color: transparent;
}
.dash-stat.highlight .ds-label { color: rgba(255,255,255,0.7); }
.dash-stat.highlight .ds-value { color: white; }
.dash-stat.highlight .ds-badge { background: rgba(255,255,255,0.2); color: white; }

.ds-label {
  font-size: 0.6rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.ds-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
}
.ds-badge {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  margin-top: 4px;
}
.ds-badge.up {
  background: rgba(0,179,126,0.1);
  color: #00b37e;
}

/* Chart Area */
.dash-chart-area {
  background: white;
  border-radius: 12px;
  padding: 12px 14px 8px;
  border: 1px solid rgba(138,0,138,0.07);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.chart-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.chart-title { font-size: 0.72rem; font-weight: 700; color: #333; }
.chart-legend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  color: #888;
}
.leg-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.main-chart-svg {
  width: 100%;
  height: 120px;
  display: block;
}

.x-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  color: #ccc;
  padding-top: 4px;
}

/* Bottom Row */
.dash-bottom-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
}

.dash-progress-block,
.dash-pill-list {
  background: white;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(138,0,138,0.07);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.dpb-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.dpb-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 0.6rem;
  color: #777;
}

.dpb-bar {
  flex: 1;
  height: 5px;
  background: #f0e8f8;
  border-radius: 10px;
  overflow: hidden;
}
.dpb-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 1s ease;
}

.dpb-pct {
  font-weight: 700;
  color: #8A008A;
  font-size: 0.6rem;
  min-width: 26px;
  text-align: right;
}

.d-pill {
  font-size: 0.6rem;
  padding: 5px 9px;
  border-radius: 20px;
  background: #f5eeff;
  color: #6a0dad;
  font-weight: 600;
  margin-bottom: 5px;
  border: 1px solid rgba(138,0,138,0.1);
  display: flex;
  align-items: center;
  gap: 5px;
}
.d-pill.active {
  background: linear-gradient(90deg, #8A008A, #6a0dad);
  color: white;
  border-color: transparent;
}
.d-pill.active::before {
  content: '';
  width: 6px; height: 6px;
  background: #7fffb4;
  border-radius: 50%;
  animation: pillPulse 1.5s ease-in-out infinite;
}
@keyframes pillPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Responsive */
@media (max-width: 992px) {
  .dashboard-mockup { max-width: 480px; }
  .dash-stat-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .dashboard-mockup { max-width: 100%; }
  .dash-stat-row { grid-template-columns: repeat(2, 1fr); }
  .dash-bottom-row { grid-template-columns: 1fr; }
  .dash-tab:not(.active-tab) { display: none; }
}

/* 2. Trusted By (Logos) Marquee */
.trusted-by {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
}

.logo-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-marquee {
  display: flex;
  width: max-content;
}

.marquee-group {
  display: flex;
  gap: 4rem;
  padding-right: 4rem; /* Match gap for seamless transition */
  flex-shrink: 0;
  align-items: center;
  animation: marquee 20s linear infinite;
}

.logo-marquee:hover .marquee-group {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.t-logo {
  opacity: 0.7;
  filter: grayscale(100%);
  transition: filter var(--transition-normal), opacity var(--transition-normal);
  white-space: nowrap;
}
.t-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* 3. Services (Mockup 4 Card Layout) */
.services-mockup {
  padding: var(--spacing-xl) 0;
  background: #fdfbfd;
}

.split-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
  margin-bottom: var(--spacing-xl);
}
.sh-left h2 { margin: 0; font-size: 3rem; }
.sh-right p { margin: 0; }

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

.service-card-hex {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  transition: all var(--transition-normal);
}

.service-card-hex:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(138,0,138,0.1);
}

.hex-icon-wrapper {
  position: relative;
  width: 60px; height: 60px;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}

.hex-shape {
  position: absolute;
  width: 100%; height: 100%;
  background: var(--primary-purple);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.1;
  transition: opacity var(--transition-fast);
}

.service-card-hex:hover .hex-shape {
  opacity: 1;
}

.hex-svg {
  position: relative;
  z-index: 1;
  color: var(--primary-purple);
}

.service-card-hex:hover .hex-svg {
  color: white;
}

.service-card-hex h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.service-card-hex p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* 4. Stats Bar */
.stats-bar {
  padding: 4rem 0;
}

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

.stats-grid::before {
  content: '';
  position: absolute;
  top: 10%; bottom: 10%; left: 25%;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.stats-grid::after {
  content: '';
  position: absolute;
  top: 10%; bottom: 10%; left: 50%;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.stat-item:nth-child(4)::before {
  content: '';
  position: absolute;
  top: 10%; bottom: 10%; left: 75%;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.stat-icon {
  color: #c980c9;
  margin-bottom: 1rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 5. Why Choose Us (Mockup Style) */
.why-choose-mockup {
  padding: var(--spacing-xl) 0;
}

.wcu-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wcu-content h2 { font-size: 3.5rem; line-height: 1.1; }

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

.wcu-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.check-icon {
  background: var(--primary-purple);
  color: white;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
}

.video-container {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.video-container:hover .video-thumbnail {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  bottom: 0; left: 0;
  background: black;
  color: white;
  padding: 1rem 2rem 1rem 1.5rem;
  border-top-right-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.play-btn {
  width: 60px; height: 60px;
  background: var(--primary-purple);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(138,0,138,0.5);
  transition: transform var(--transition-fast);
}
.play-btn:hover { transform: scale(1.1); }

.play-text { display: flex; flex-direction: column; }
.pt-title { font-weight: 700; font-size: 0.9rem; }
.pt-sub { font-size: 0.8rem; color: #aaa; }


/* Remaining sections (Process, Tech, etc.) */
.process { padding: var(--spacing-xl) 0; }
.timeline { display: flex; flex-direction: column; gap: 2rem; max-width: 800px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 30px; top: 0; bottom: 0; width: 2px; background: var(--soft-purple-glow); }
.timeline-item { display: flex; align-items: center; gap: 2rem; position: relative; }
.t-num { width: 60px; height: 60px; background: var(--primary-purple); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 2rem; z-index: 1; flex-shrink: 0; box-shadow: 0 0 0 10px var(--bg-light); }
.t-content { background: var(--bg-white); padding: 1.5rem 2rem; border-radius: var(--border-radius-md); flex-grow: 1; box-shadow: var(--shadow-sm); }

.tech-innovation { padding: var(--spacing-xl) 0; }
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.tech-img { width: 100%; max-width: 500px; }
.tech-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.tech-list li { position: relative; padding-left: 1.5rem; }
.tech-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-purple); font-weight: bold; }

.future-goals { padding: var(--spacing-xl) 0; }
.future-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.f-card { padding: 3rem 1.5rem; text-align: center; }

.testimonials { padding: var(--spacing-xl) 0; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testi-card { display: flex; flex-direction: column; justify-content: space-between; }
.quote { font-style: italic; margin-bottom: 2rem; }
.author { font-weight: 600; color: var(--primary-purple); }

.footer { background: var(--dark-charcoal); color: white; padding: 5rem 0 2rem; }
.footer h2 { color: white; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.c-item { margin-bottom: 1rem; }
.c-item a, .c-item p { color: white; }
.footer-social { display: flex; flex-direction: column; gap: 1rem; }
.social-icon { color: #ccc; }
.social-icon:hover { color: var(--primary-purple); }


/* Responsive adjustments */
@media (max-width: 1100px) {
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem 2rem;}
  .stats-grid::before, .stats-grid::after, .stat-item:nth-child(4)::before { display: none; }
}

@media (max-width: 992px) {
  .hero-v2-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-v2-badge, .hero-v2-underline { margin: 0 auto; }
  .hero-v2-subtitle { margin: 0 auto; }
  .hero-v2-cta { justify-content: center; }
  .hero-v2-trust { justify-content: center; }
  .hero-v2-visual { margin-top: 2rem; }
  .hero-scene { width: 420px; height: 420px; }
  .hcard-brand-growth { width: 190px; left: 20px; }
  .hcard-performance { width: 140px; }
  .up-letter { font-size: 4.5rem; }
  .up-arrow { font-size: 4rem; }
  .split-header, .wcu-layout, .tech-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .sh-right { margin-top: 1rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--bg-white); flex-direction: column; padding: 2rem; box-shadow: var(--shadow-sm);
  }
  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: flex; }
  .services-grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .grid-2-cols { grid-template-columns: 1fr; }
  .play-overlay { bottom: 0; left: 0; border-radius: 0; width: 100%; justify-content: center; }

  /* Hero V2 mobile */
  .hero-v2-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-v2-badge, .hero-v2-underline { margin: 0 auto; }
  .hero-v2-subtitle { margin: 0 auto; max-width: 100%; }
  .hero-v2-cta { flex-direction: column; align-items: center; }
  .btn-v2 { width: 100%; max-width: 320px; justify-content: center; }
  .hero-v2-trust { justify-content: center; }
  .hero-v2-headline { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-scene { width: 320px; height: 340px; }
  .hcard-brand-growth { width: 150px; left: 10px; top: -10px; }
  .hcard-performance { width: 120px; right: -5px; }
  .hcard-ai-badge { top: 165px; left: -5px; width: 130px; }
  .hcard-revenue { width: 140px; right: 0; bottom: 10px; }
  .up-letter { font-size: 3.5rem; }
  .up-arrow { font-size: 3rem; }
  .platform-base { width: 100px; height: 20px; }
  .r1 { width: 150px; height: 38px; }
  .r2 { width: 110px; height: 28px; }
  .r3 { width: 75px; height: 18px; }

  /* Centered Mobile Layout Enhancements */
  .split-header, .sh-left, .sh-right, .wcu-content, .tech-content, .footer-grid {
    text-align: center;
    align-items: center;
  }
  
  .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    justify-content: center;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .service-card-hex {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hex-icon-wrapper {
    margin: 0 auto 1.5rem auto;
  }

  .wcu-item {
    justify-content: center;
  }

  .tech-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tech-list li::before {
    position: relative;
    margin-right: 0.5rem;
  }
  
  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stat-icon {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .footer-contact, .footer-social {
    align-items: center;
  }
  
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }
  .t-num {
    margin: 0 auto;
  }
}
