/* ============================================
   ZORA HYPERZEN — Premium Light Theme Design
   Inspired by: Glossy spheres, orbital curves, parallax
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Light theme palette */
  --bg-base: #f0f4f8;
  --bg-white: #ffffff;
  --bg-hero: radial-gradient(ellipse 80% 60% at 50% 40%, #ffffff 0%, #d6e6ff 25%, #8bb8f0 50%, #3a72d0 80%, #1a3a80 100%);
  --bg-section-alt: linear-gradient(180deg, #f5f8fc 0%, #e8f0fa 100%);
  --bg-section-blue: radial-gradient(ellipse at 50% 50%, #d0e4ff 0%, #a0c4f0 40%, #5a8ed0 100%);
  --bg-dark-section: #0a0a14;

  --text-primary: #0a0a0a;
  --text-secondary: #3a3a5a;
  --text-muted: #7a7a9a;
  --text-light: #ffffff;

  --accent: #1a5af5;
  --accent-light: #4a8aff;
  --accent-dark: #0d3ab0;
  --accent-glow: rgba(26, 90, 245, 0.15);

  --gradient-accent: linear-gradient(135deg, #1a5af5, #00b4ff);
  --gradient-warm: linear-gradient(135deg, #ff6b6b, #ffa07a);
  --gradient-purple: linear-gradient(135deg, #7c5ce7, #a29bfe);
  --gradient-dark: linear-gradient(135deg, #0a0a14, #1a1a2e);

  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.12);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 80px;
  --container-width: 1200px;
  --border-radius: 20px;
  --border-radius-sm: 12px;
  --border-radius-pill: 50px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.25s var(--ease-smooth);
  --transition-medium: 0.5s var(--ease-out);
  --transition-slow: 0.8s var(--ease-out);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

a { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; }
img { max-width: 100%; display: block; }

/* --- Custom Cursor --- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--text-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(10, 10, 10, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.3s;
}

body.cursor-hover .cursor-dot {
  width: 60px;
  height: 60px;
  background: var(--accent);
  mix-blend-mode: normal;
  opacity: 0.15;
}

body.cursor-hover .cursor-ring {
  width: 60px;
  height: 60px;
  border-color: var(--accent);
}

/* --- Form Elements Cursors Fix --- */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  cursor: text !important;
}

select,
option,
label,
.service-chip,
.budget-option,
.budget-option span,
input[type="radio"],
input[type="checkbox"] {
  cursor: pointer !important;
}

/* Hide custom cursor when body has form elements hovered */
body.form-hovering .cursor-dot,
body.form-hovering .cursor-ring {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- 3D Canvas (inside hero) --- */
#webgl-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* --- Grain/Noise Overlay --- */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-accent);
  z-index: 10001;
  transform-origin: left;
  transform: scaleX(0);
  width: 100%;
  transition: none;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(26, 90, 245, 0.2);
  border-radius: var(--border-radius-pill);
  background: rgba(26, 90, 245, 0.05);
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition-medium);
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  z-index: 1001;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Small logo icon in navbar */
.nav-logo-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a5af5, #00b4ff);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.nav-logo-icon {
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center top;
  margin-top: -1px;
  margin-left: -9px;
  display: block;
  max-width: none;
}

/* Round HZ icon in navbar */
.nav-hz-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-center a {
  padding: 8px 20px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--border-radius-pill);
  transition: var(--transition-fast);
}

.nav-center a:hover,
.nav-center a.active {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.04);
}

.nav-cta-btn {
  padding: 10px 28px;
  background: var(--text-primary);
  color: var(--text-light) !important;
  border-radius: var(--border-radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition-medium);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  z-index: 1001;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.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); }

/* --- Hero Section --- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-hero);
}

.hero-bg-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-glow .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.hero-bg-glow .glow-1 {
  width: 600px; height: 600px;
  background: rgba(26, 90, 245, 0.2);
  top: -10%; left: 20%;
}

.hero-bg-glow .glow-2 {
  width: 400px; height: 400px;
  background: rgba(0, 180, 255, 0.15);
  bottom: 10%; right: 10%;
}

/* --- Hero Organic Side Curves --- */
.hero-curve {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-curve-left {
  left: 0;
  width: 18vw;
  min-width: 120px;
  max-width: 260px;
}

.hero-curve-right {
  right: 0;
  width: 18vw;
  min-width: 120px;
  max-width: 260px;
}

/* --- Hero Bottom Wave --- */
.hero-wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-curve-left, .hero-curve-right {
    width: 12vw;
    min-width: 60px;
    max-width: 120px;
  }
  .hero-wave-bottom {
    height: 50px;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 950px;
  padding: 0 24px;
}

.hero-content h1 {
  margin-bottom: 28px;
  font-weight: 800;
}

.hero-content h1 .line {
  display: block;
}

.hero-content h1 .hero-em {
  font-style: normal;
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--text-primary);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius-pill);
  transition: var(--transition-medium);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius-pill);
  transition: var(--transition-medium);
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-hint .line-anim {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--text-primary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

.scroll-hint span {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* --- Floating Decorative Shapes (CSS) --- */
.float-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

.float-shape.ring {
  border: 1.5px solid rgba(10, 10, 10, 0.08);
  background: transparent;
}

.float-shape.dot {
  background: rgba(26, 90, 245, 0.1);
}

.float-shape.blur-orb {
  filter: blur(60px);
  opacity: 0.15;
}

/* --- About Section --- */
#about {
  padding: 160px 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

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

.about-visual {
  position: relative;
  min-height: 450px;
}

.about-visual .big-number {
  font-family: var(--font-heading);
  font-size: 14rem;
  font-weight: 800;
  color: rgba(26, 90, 245, 0.04);
  position: absolute;
  top: -40px;
  left: -20px;
  line-height: 1;
  user-select: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-medium);
  box-shadow: var(--card-shadow);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(26, 90, 245, 0.15);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.about-text h2 { margin-bottom: 24px; }

.about-text > p {
  margin-bottom: 36px;
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.vm-card {
  padding: 28px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--bg-base);
  transition: var(--transition-medium);
}

.vm-card:hover {
  transform: translateX(8px);
  box-shadow: var(--card-shadow);
  border-color: rgba(26, 90, 245, 0.15);
}

.vm-card h4 {
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vm-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Values Section --- */
#values {
  padding: 160px 0;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.value-card {
  text-align: center;
  padding: 44px 20px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--bg-white);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-medium);
}

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

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition-medium);
}

.value-card:hover .value-icon {
  transform: scale(1.12) rotate(5deg);
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Services Section --- */
#services {
  padding: 160px 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

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

.service-card {
  position: relative;
  padding: 40px 36px;
  border-radius: var(--border-radius);
  background: var(--bg-base);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition-medium);
  overflow: hidden;
  box-shadow: none;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(26, 90, 245, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-medium);
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  background: var(--bg-white);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  position: absolute;
  top: 20px;
  right: 28px;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  transition: var(--transition-medium);
}

.service-card:hover .service-number {
  color: rgba(26, 90, 245, 0.07);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  transition: var(--transition-medium);
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

.service-icon.blue { background: rgba(26, 90, 245, 0.08); }
.service-icon.cyan { background: rgba(0, 180, 255, 0.08); }
.service-icon.pink { background: rgba(255, 107, 107, 0.08); }
.service-icon.green { background: rgba(0, 200, 100, 0.08); }
.service-icon.purple { background: rgba(124, 92, 231, 0.08); }

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
}

.service-card > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.service-details {
  list-style: none;
  position: relative;
  z-index: 1;
}

.service-details li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 5px 0;
  padding-left: 22px;
  position: relative;
}

.service-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

/* --- Why Choose Us --- */
#why-us {
  padding: 160px 0;
  background: var(--bg-dark-section);
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

#why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 90, 245, 0.12), transparent 70%);
  pointer-events: none;
}

#why-us .section-label {
  color: var(--accent-light);
  border-color: rgba(74, 138, 255, 0.3);
  background: rgba(74, 138, 255, 0.08);
}

#why-us .section-header h2 {
  color: var(--text-light);
}

#why-us .section-header p {
  color: rgba(255, 255, 255, 0.5);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  transition: var(--transition-medium);
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

.why-item .check-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(26, 90, 245, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}

.why-item h4 {
  color: var(--text-light);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
}

.objectives-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.objectives-card h3 {
  margin-bottom: 28px;
  font-size: 1.4rem;
  color: var(--text-light);
}

.objective-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.objective-item:last-child { border-bottom: none; }

.obj-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
}

.objective-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* --- Industries Section --- */
#industries {
  padding: 160px 0;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.industries-wrapper {
  position: relative;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.industry-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--bg-white);
  transition: var(--transition-medium);
  box-shadow: var(--card-shadow);
}

.industry-chip:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(26, 90, 245, 0.15);
}

.industry-chip .ind-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 12px;
}

.industry-chip span {
  font-size: 0.95rem;
  font-weight: 600;
}

/* --- CTA Section --- */
#cta {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
}

.cta-wrapper {
  position: relative;
  border-radius: 32px;
  padding: 100px 48px;
  text-align: center;
  overflow: hidden;
  background: var(--bg-hero);
}

.cta-wrapper h2 {
  margin-bottom: 20px;
  color: var(--text-primary);
}

.cta-wrapper p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 44px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark-section);
  color: var(--text-light);
  border-top: none;
  padding: 80px 0 30px;
}

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

.footer-brand .nav-logo {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Round HZ icon in footer brand */
.footer-hz-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: screen;
  flex-shrink: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-hz-icon:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.footer-brand p {
  margin-top: 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 300px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  color: var(--accent-light);
  border-color: var(--accent-light);
  background: rgba(74, 138, 255, 0.08);
}

.footer-column h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 22px;
}

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

.footer-column li { margin-bottom: 14px; }

.footer-column a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition-fast);
}

.footer-column a:hover {
  color: var(--accent-light);
  padding-left: 5px;
}

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

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }
.stagger-7 { transition-delay: 0.35s; }
.stagger-8 { transition-delay: 0.4s; }
.stagger-9 { transition-delay: 0.45s; }

/* --- Keyframes --- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-anim-1 { animation: hero-fade-in 1s var(--ease-out) 0.3s both; }
.hero-anim-2 { animation: hero-fade-in 1s var(--ease-out) 0.5s both; }
.hero-anim-3 { animation: hero-fade-in 1s var(--ease-out) 0.7s both; }
.hero-anim-4 { animation: hero-fade-in 1s var(--ease-out) 0.9s both; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-grid, .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 100px 0; }

  .nav-center {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--bg-white);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    padding: 100px 30px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: var(--transition-medium);
    z-index: 1000;
    box-shadow: -10px 0 40px rgba(0,0,0,0.08);
  }

  .nav-center.open { transform: translateX(0); }
  .nav-toggle { display: flex; }

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

  .cta-wrapper { padding: 60px 24px; border-radius: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-visual { order: 2; }
  .about-text { order: 1; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* ============================================
   START PROJECT MODAL & INTERACTIVE FORM
   ============================================ */

/* Modal Overlay */
.project-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

.project-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Modal Content Box */
.project-modal {
  width: 100%;
  max-width: 680px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(10, 20, 50, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.project-modal-overlay.open .project-modal {
  transform: scale(1) translateY(0);
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: var(--text-primary);
  color: var(--text-light);
  transform: rotate(90deg);
}

/* Content Wrapper */
.modal-content-wrapper {
  padding: 48px;
  max-height: 85vh;
  overflow-y: auto;
}

/* Custom Scrollbar for Modal content */
.modal-content-wrapper::-webkit-scrollbar {
  width: 4px;
}
.modal-content-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.modal-content-wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Form Header */
.modal-form-header {
  margin-bottom: 36px;
}

.modal-form-header h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.modal-form-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Form Layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(26, 90, 245, 0.08);
}

/* Interactive Service Chips */
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.service-chip {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--border-radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  cursor: pointer !important;
  pointer-events: auto !important;
  user-select: none;
}

.service-chip:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.service-chip.selected {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: var(--text-light) !important;
  box-shadow: 0 4px 15px rgba(26, 90, 245, 0.25) !important;
}

/* Custom Budget Options */
.budget-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.budget-option {
  position: relative;
  cursor: none;
}

.budget-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.budget-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 6px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  text-align: center;
  user-select: none;
}

.budget-option:hover span {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.1);
}

.budget-option input:checked + span {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Submit Button Customizations */
.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  justify-content: center;
  border-radius: 14px;
}

/* Form Success State Card */
.form-success-state {
  text-align: center;
  padding: 30px 10px;
  animation: hero-fade-in 0.6s var(--ease-out) both;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  font-size: 2.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.15);
}

.form-success-state h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.form-success-state p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 36px;
}

.success-close-btn {
  padding: 14px 36px;
  font-size: 0.95rem;
}

/* Responsive Styles for Modal */
@media (max-width: 768px) {
  .modal-content-wrapper {
    padding: 30px 24px;
  }
  .modal-form-header h2 {
    font-size: 1.6rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .budget-options {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-success-state h3 {
    font-size: 1.5rem;
  }
}

/* ============================================
   ADVANCED TESTIMONIAL SHOWCASE
   ============================================ */

.testimonials-section {
  position: relative;
  padding: 140px 0;
  background: radial-gradient(circle at 80% 20%, rgba(26, 90, 245, 0.05) 0%, transparent 60%);
  overflow: hidden;
}

.showcase-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  margin-top: 60px;
  align-items: center;
}

/* Selector Left Column */
.showcase-selector {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.selector-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  text-align: left;
  transition: all 0.4s var(--ease-out);
  cursor: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  position: relative;
  overflow: hidden;
}

.selector-item:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(26, 90, 245, 0.1);
  transform: translateX(6px);
  box-shadow: var(--glass-shadow);
}

.selector-item.active {
  background: var(--bg-white);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(26, 90, 245, 0.08);
  transform: translateX(10px);
}

.selector-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s var(--ease-out);
}

.selector-item.active .selector-avatar {
  transform: scale(1.1);
}

.selector-avatar.grad-1 { background: var(--gradient-accent); }
.selector-avatar.grad-2 { background: var(--gradient-purple); }
.selector-avatar.grad-3 { background: var(--gradient-warm); }

.selector-meta {
  flex-grow: 1;
}

.selector-meta h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.selector-meta span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.selector-arrow {
  font-size: 0.9rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s var(--ease-out);
}

.selector-item.active .selector-arrow {
  opacity: 1;
  color: var(--accent);
  transform: translateX(0);
}

/* Display Right Column */
.showcase-display {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
}

.display-glow-bg {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
  opacity: 0.25;
  transition: background 0.8s ease;
  z-index: 0;
  pointer-events: none;
}

.display-glow-bg.grad-1 { background: radial-gradient(circle, #1a5af5, #00b4ff); }
.display-glow-bg.grad-2 { background: radial-gradient(circle, #7c5ce7, #a29bfe); }
.display-glow-bg.grad-3 { background: radial-gradient(circle, #ff6b6b, #ffa07a); }

.showcase-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 32px;
  padding: 56px;
  box-shadow: 0 20px 60px rgba(10, 20, 50, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  position: relative;
  z-index: 1;
  transition: all 0.5s var(--ease-out);
}

.showcase-card.changing {
  opacity: 0;
  transform: scale(0.97) translateY(10px);
}

.quote-mark {
  position: absolute;
  top: -20px;
  left: 40px;
  font-size: 11rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: rgba(26, 90, 245, 0.06);
  pointer-events: none;
  line-height: 1;
}

.card-stars {
  font-size: 1.05rem;
  color: #ffa801;
  letter-spacing: 3px;
  margin-bottom: 28px;
  text-shadow: 0 4px 15px rgba(255, 168, 1, 0.2);
}

.card-text {
  font-size: 1.35rem;
  line-height: 1.8;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.card-author h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.card-author span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Showcase Responsive */
@media (max-width: 1024px) {
  .showcase-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .showcase-selector {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .selector-item {
    flex: 1 1 200px;
  }
  .showcase-display {
    height: auto;
  }
  .showcase-card {
    padding: 40px;
  }
  .card-text {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .showcase-selector {
    flex-direction: column;
    width: 100%;
  }
  .selector-item {
    width: 100%;
    transform: none !important;
  }
}

/* ============================================
   SUBPAGE STYLING SYSTEM (HIGH-TECH INTERFACE)
   ============================================ */

/* Subpage Hero */
.subpage-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, #ffffff 0%, #e2eeff 30%, #a2ccff 60%, #f0f4f8 100%);
  border-bottom: 1px solid rgba(26, 90, 245, 0.08);
}

.subpage-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.subpage-hero-glow .glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
}

.subpage-hero-glow .glow-1 {
  background: rgba(26, 90, 245, 0.25);
  top: -10%;
  left: 25%;
}

.subpage-hero-glow .glow-2 {
  background: rgba(0, 180, 255, 0.2);
  bottom: -10%;
  right: 25%;
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.subpage-hero-content h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.subpage-hero-content p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Sections on Subpages */
.subpage-section {
  padding: 120px 0;
  position: relative;
  background: var(--bg-white);
  overflow: hidden;
}

.subpage-section.alt-bg {
  background: var(--bg-base);
}

/* Futuristic Tech Indicators */
.tech-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c864;
  box-shadow: 0 0 10px #00c864, 0 0 20px rgba(0, 200, 100, 0.4);
  animation: pulse-indicator 1.8s infinite ease-in-out;
  margin-left: 10px;
  vertical-align: middle;
}

@keyframes pulse-indicator {
  0%, 100% { opacity: 0.5; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Service Detail Cards - Futuristic Matrix Style */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .services-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-detail-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  padding: 44px 36px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(26, 90, 245, 0.05);
  box-shadow: var(--card-shadow);
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
}

/* Futuristic grid overlay background inside card */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(26, 90, 245, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 90, 245, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

/* Moving neon accent bar at bottom */
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
  z-index: 2;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(26, 90, 245, 0.1);
  background: var(--bg-white);
  border-color: rgba(26, 90, 245, 0.12);
}

.service-card .service-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.5s var(--ease-out), background 0.3s;
}

.service-card:hover .service-icon {
  background: var(--accent);
  transform: scale(1.1) rotate(3deg);
}

.service-card:hover .service-icon svg {
  stroke: var(--text-light);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  position: absolute;
  top: 20px;
  right: 28px;
  color: rgba(26, 90, 245, 0.03);
  line-height: 1;
  z-index: 0;
  transition: all 0.5s var(--ease-out);
}

.service-card:hover .service-number {
  color: rgba(26, 90, 245, 0.08);
  transform: scale(1.08) translateY(-2px);
}

/* Service item glowing details */
.service-card .service-details li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 5px 0;
  padding-left: 22px;
  position: relative;
  transition: color 0.3s;
}

.service-card:hover .service-details li {
  color: var(--text-primary);
}

.service-card .service-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  opacity: 0.4;
  transition: opacity 0.3s, transform 0.3s;
}

.service-card:hover .service-details li::before {
  opacity: 1;
  transform: scale(1.2);
}

/* AI Solutions - Futuristic Cybernetic Cards */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

.solution-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(26, 90, 245, 0.05);
  border-radius: 28px;
  padding: 44px;
  box-shadow: var(--card-shadow);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.solution-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(26, 90, 245, 0.015) 1px, transparent 1px);
  background-size: 100% 24px;
  z-index: 0;
  pointer-events: none;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(26, 90, 245, 0.1);
  background: var(--bg-white);
  border-color: rgba(26, 90, 245, 0.15);
}

.solution-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.solution-card-title-block {
  display: flex;
  align-items: center;
  gap: 20px;
}

.solution-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(26, 90, 245, 0.06);
  border: 1px solid rgba(26, 90, 245, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  transition: all 0.5s var(--ease-out);
}

.solution-card:hover .solution-card-icon {
  background: var(--accent);
  color: var(--text-light);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(26, 90, 245, 0.2);
}

.solution-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

/* Holographic Tech Console block */
.tech-console {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 8px 18px;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.console-item {
  display: flex;
  gap: 6px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding-right: 14px;
}

.console-item:last-child {
  border-right: none;
  padding-right: 0;
}

.console-label {
  color: var(--text-muted);
}

.console-val {
  color: var(--accent);
}

.console-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #00c864;
}

.solution-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.solution-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.solution-features-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.solution-features-list li::before {
  content: '✦';
  color: var(--accent);
  text-shadow: 0 0 5px var(--accent);
  font-size: 0.9rem;
  font-weight: bold;
}

/* Products/Case Studies Section - BI Dashboard Style */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(26, 90, 245, 0.05);
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--card-shadow);
  transition: all 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(26, 90, 245, 0.12);
  background: var(--bg-white);
  border-color: rgba(26, 90, 245, 0.15);
}

.product-card-top h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px;
  border-radius: var(--border-radius-pill);
  background: rgba(26, 90, 245, 0.05);
  margin-bottom: 24px;
}

.product-card-top p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.product-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 16px;
}

.metric-item {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 90, 245, 0.04);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.product-card:hover .metric-item {
  background: var(--bg-base);
  border-color: rgba(26, 90, 245, 0.08);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.01);
}

.metric-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(26, 90, 245, 0.08);
}

.metric-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

/* High-tech Filling visual loading bar */
.metric-bar-container {
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 6px;
  position: relative;
}

.metric-bar {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .metric-bar {
  transform: scaleX(1);
}

/* About Us Layouts */
.about-story-block {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.about-story-block h2 {
  font-size: 2.2rem;
  margin-bottom: 28px;
}

.about-story-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.about-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .about-mv-grid {
    grid-template-columns: 1fr;
  }
}

.about-mv-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(26, 90, 245, 0.05);
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--card-shadow);
  transition: all 0.5s var(--ease-out);
}

.about-mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(26, 90, 245, 0.08);
  border-color: rgba(26, 90, 245, 0.15);
  background: var(--bg-white);
}

.about-mv-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-mv-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-secondary);
}


