/* ================================================================
   ISHU Enterprises — Ultra-Premium White Design System v5
   Apple · BMW · Stripe · Rivian Inspired
   ================================================================ */

/* ── Google Fonts are loaded via _Layout.cshtml ──────────────────── */

/* ── CSS Variables ──────────────────────────────────────────────── */
:root {
  /* Colors */
  --bg-body:          #FFFFFF;
  --bg-secondary:     #F6F8FB;
  --bg-tertiary:      #EEF2FA;
  --accent-primary:   #165DFF;
  --accent-light:     #4FA3FF;
  --accent-gradient:  linear-gradient(135deg, #165DFF 0%, #4FA3FF 100%);
  --accent-soft:      rgba(22, 93, 255, 0.08);
  --accent-soft-md:   rgba(22, 93, 255, 0.14);

  /* Text */
  --text-primary:     #111827;
  --text-body:        #374151;
  --text-muted:       #6B7280;
  --text-subtle:      #9CA3AF;
  --text-on-blue:     #FFFFFF;

  /* Borders */
  --border-light:     #E6EAF2;
  --border-medium:    #D1D9E8;
  --border-blue:      rgba(22, 93, 255, 0.25);

  /* Shadows */
  --shadow-xs:        0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:        0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:        0 4px 28px rgba(0,0,0,0.09);
  --shadow-lg:        0 8px 48px rgba(0,0,0,0.11);
  --shadow-xl:        0 16px 64px rgba(0,0,0,0.13);
  --shadow-blue:      0 8px 32px rgba(22,93,255,0.22);
  --shadow-blue-lg:   0 16px 56px rgba(22,93,255,0.28);

  /* Radii */
  --radius-sm:        10px;
  --radius-md:        16px;
  --radius-lg:        24px;
  --radius-xl:        32px;
  --radius-2xl:       40px;
  --radius-pill:      999px;

  /* Transitions */
  --ease-spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:         cubic-bezier(0, 0, 0.2, 1);

  /* Spacing */
  --section-pad:      100px;
  --section-pad-sm:   60px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  background: var(--bg-body);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p  { color: var(--text-muted); line-height: 1.75; }

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

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

/* ── Scroll Progress ────────────────────────────────────────────── */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent-gradient);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Page Loader ────────────────────────────────────────────────── */
#pageLoader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.4s ease, visibility 0.4s;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
  width: 44px; height: 44px;
  border: 3px solid var(--border-light);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Back to Top ────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  border-radius: var(--radius-pill);
  background: var(--accent-primary);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover   { background: #0f47e0; transform: translateY(-3px); box-shadow: var(--shadow-blue-lg); }

/* ── Custom Cursor ──────────────────────────────────────────────── */
#customCursor {
  position: fixed;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent-primary);
  pointer-events: none;
  z-index: 99999;
  box-shadow: 0 0 14px rgba(22,93,255,0.5);
  transition: transform 0.18s ease, width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

/* ── Float Buttons ──────────────────────────────────────────────── */
.call-float,
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
  z-index: 600;
}
.call-float { right: 32px; background: var(--accent-primary); }
.whatsapp-float { right: 96px; background: #25D366; }
.call-float:hover, .whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: var(--shadow-lg);
}

/* ── NAVBAR ─────────────────────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 10px 24px;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#mainNav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-lg);
}

.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.brand-logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
  box-shadow: 0 4px 12px rgba(22,93,255,0.3);
}
.brand-logo-sm { width: 32px; height: 32px; font-size: 0.85rem; }
.brand-main {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  display: block; line-height: 1.2;
}
.brand-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: block; line-height: 1;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}
.nav-link:hover, .nav-link.nav-active {
  color: var(--accent-primary) !important;
  background: var(--accent-soft);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px; height: 2px;
  background: var(--accent-primary);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-smooth);
}
.nav-link:hover::after, .nav-link.nav-active::after { transform: translateX(-50%) scaleX(1); }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff !important;
  background: var(--accent-gradient);
  border-radius: var(--radius-pill);
  border: none;
  text-decoration: none;
  box-shadow: var(--shadow-blue);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
  position: relative; overflow: hidden;
}
.btn-nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 200%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue-lg); }
.btn-nav-cta:hover::before { left: 100%; }

.toggler-icon {
  display: flex; flex-direction: column; gap: 5px; cursor: pointer;
}
.toggler-icon span {
  display: block; height: 2px; width: 22px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── MAIN CONTENT ───────────────────────────────────────────────── */
.main-content { padding-top: 0; }

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent-gradient);
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-blue);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
  position: relative; overflow: hidden;
  letter-spacing: 0.01em;
}
.btn-primary-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f47e0, #165DFF);
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: inherit;
}
.btn-primary-custom:hover { transform: translateY(-3px); box-shadow: var(--shadow-blue-lg); color: #fff; }
.btn-primary-custom:hover::before { opacity: 1; }
.btn-primary-custom i, .btn-primary-custom span { position: relative; z-index: 1; }
.btn-primary-custom > * { position: relative; z-index: 1; }

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-primary);
  background: transparent;
  border: 1.5px solid var(--border-blue);
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--ease-smooth);
  letter-spacing: 0.01em;
}
.btn-outline-custom:hover {
  background: var(--accent-soft);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
}

/* ── SECTION BASE ───────────────────────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
}
.section-sm {
  padding: var(--section-pad-sm) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  border: 1px solid var(--border-blue);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 0;
}

.divider-line {
  height: 1px;
  background: var(--border-light);
  margin: 0 auto;
  max-width: 90%;
}

/* ── PAGE HEADER ────────────────────────────────────────────────── */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-body) 100%);
  border-bottom: 1px solid var(--border-light);
}

/* ── HERO SECTION ───────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #FFFFFF 0%, #F0F6FF 50%, #FFFFFF 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,93,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,163,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
  background: var(--accent-soft);
  border: 1px solid var(--border-blue);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-primary);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
}
.hero-bullet i {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* Hero Right */
.hero-image-wrap {
  position: relative;
}
.hero-main-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero-badge {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  animation: floatY 4s ease-in-out infinite;
}
.hero-badge:nth-child(2) { animation-delay: 1s; }
.hero-badge:nth-child(3) { animation-delay: 2s; }
@keyframes floatY {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}
.hero-badge-1 { top: 8%; left: -12%; }
.hero-badge-2 { bottom: 16%; right: -8%; }
.hero-badge-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(22,93,255,0.3);
}
.hero-badge-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.hero-badge-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Stats floating card */
.stats-float-card {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 22px 28px;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}
.stat-cell {
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid var(--border-light);
}
.stat-cell:last-child { border-right: none; }
.stat-cell-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  margin: 0 auto 6px;
}
.stat-cell-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}
.stat-cell-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* ── TRUSTED BY ──────────────────────────────────────────────────── */
.trusted-section {
  padding: 56px 0;
  background: var(--bg-body);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trusted-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  text-align: center;
  margin-bottom: 28px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trusted-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-body);
  transition: all 0.25s ease;
  cursor: default;
}
.trusted-logo:hover {
  border-color: var(--border-blue);
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.trusted-logo i {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: color 0.25s ease;
}
.trusted-logo:hover i { color: var(--accent-primary); }
.trusted-logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.25s ease;
}
.trusted-logo:hover .trusted-logo-name { color: var(--accent-primary); }

/* ── SERVICE CARDS ──────────────────────────────────────────────── */
.service-card {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, border-color 0.25s ease;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-blue);
}
.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.service-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.service-card:hover .service-img { transform: scale(1.06); }
.service-icon-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
  box-shadow: var(--shadow-blue);
}
.service-body {
  padding: 22px;
}
.service-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-primary);
  transition: gap 0.2s ease;
}
.service-card:hover .service-arrow { gap: 10px; }
.service-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--accent-primary);
}

/* ── ABOUT SECTION ──────────────────────────────────────────────── */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(22,93,255,0.15) 100%);
  border-radius: var(--radius-xl);
}
.about-cert-strip {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
}
.about-cert-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
  flex-shrink: 0;
}

/* ── WHY CHOOSE US ──────────────────────────────────────────────── */
.why-card {
  background: var(--bg-body);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: all 0.35s var(--ease-spring);
}
.why-card:hover {
  border-color: var(--accent-primary);
  background: var(--accent-soft);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-blue);
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-primary);
  margin: 0 auto 18px;
  transition: all 0.3s ease;
}
.why-card:hover .why-icon {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.why-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PRODUCT SHOWCASE ───────────────────────────────────────────── */
.product-showcase {
  background: var(--bg-secondary);
  padding: var(--section-pad) 0;
}
.product-card {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, border-color 0.25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-blue);
}
.product-img-wrap {
  height: 200px;
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-smooth);
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-icon-wrap {
  font-size: 2.5rem;
  color: var(--accent-primary);
}
.product-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  background: rgba(22,93,255,0.1);
  border: 1px solid var(--border-blue);
}
.product-badge-inline {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-primary);
  background: var(--accent-soft);
  border: 1px solid var(--border-blue);
  margin-bottom: 8px;
}
.product-body { padding: 20px; }
.product-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.product-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.product-price { font-weight: 700; color: var(--accent-primary); margin-top: 10px; }

/* ── INDUSTRIES ─────────────────────────────────────────────────── */
.industry-card {
  background: var(--bg-body);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s var(--ease-spring);
  cursor: default;
}
.industry-card:hover {
  border-color: var(--accent-primary);
  background: var(--accent-soft);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.industry-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-blue);
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-primary);
  margin: 0 auto 14px;
  transition: all 0.3s ease;
}
.industry-card:hover .industry-icon {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.industry-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* ── CTA SECTION ─────────────────────────────────────────────────── */
.cta-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, #f0f6ff 0%, #ffffff 50%, #e8f0ff 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,93,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── VALUE CARDS ────────────────────────────────────────────────── */
.value-card {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s var(--ease-spring);
}
.value-card:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.value-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  border: 1.5px solid var(--border-blue);
  color: var(--accent-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}
.value-card:hover .value-icon {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

/* ── STATS BAR ──────────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-secondary);
  padding: 64px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.stat-item { padding: 0 12px; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--accent-primary);
  letter-spacing: -0.04em;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── CONTACT / FORM ──────────────────────────────────────────────── */
.form-glass {
  width: 100%;
  background: var(--bg-body);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-size: 0.9rem;
  font-family: 'Manrope', sans-serif;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-glass:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(22,93,255,0.1);
}
.form-glass::placeholder { color: var(--text-subtle); }
select.form-glass { cursor: pointer; }
textarea.form-glass { resize: vertical; min-height: 120px; }
.form-label-custom {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

/* ── GLASS CARD ─────────────────────────────────────────────────── */
.glass-card {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-spring);
}
.glass-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-blue);
  transform: translateY(-4px);
}

/* ── TECH CARD ──────────────────────────────────────────────────── */
.tech-card {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
  transition: all 0.35s var(--ease-spring);
}
.tech-card:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.tech-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  border: 1.5px solid var(--border-blue);
  color: var(--accent-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 14px;
  transition: all 0.3s ease;
}
.tech-card:hover .tech-icon {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.tech-bar {
  height: 5px;
  background: var(--border-light);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.tech-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent-gradient);
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(22,93,255,0.35);
}

/* ── WORKS ──────────────────────────────────────────────────────── */
.work-card { overflow: hidden; }
.work-img-wrapper { position: relative; overflow: hidden; height: 230px; }
.work-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-smooth); }
.work-card:hover .work-thumb { transform: scale(1.06); }
.work-overlay {
  position: absolute; inset: 0;
  background: rgba(22,93,255,0.18);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.work-card:hover .work-overlay { opacity: 1; }
.work-thumb-placeholder {
  height: 230px;
  background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--text-subtle);
}

/* ── CONTACT CARDS ──────────────────────────────────────────────── */
.contact-card {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: all 0.25s ease;
}
.contact-card:hover { border-color: var(--border-blue); box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid var(--border-blue);
  color: var(--accent-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── FILTER BUTTONS ─────────────────────────────────────────────── */
.filter-btn {
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-light);
  background: var(--bg-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Manrope', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

/* ── NAVBAR ACTIVE ──────────────────────────────────────────────── */
.nav-hover.nav-active {
  color: var(--accent-primary) !important;
  background: var(--accent-soft);
}

/* ── SLIDER ─────────────────────────────────────────────────────── */
.hero-slider { position: relative; }
.slider-img {
  width: 100%; height: 100vh;
  object-fit: cover;
  display: block;
}
.carousel-caption {
  bottom: 0; top: 0; left: 10%; right: 10%;
  text-align: left;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 100%);
  border-radius: var(--radius-lg);
}
.carousel-caption h1 { color: #fff; font-size: clamp(2rem,4vw,3.5rem); }
.carousel-caption p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; }
.carousel-item { max-height: 100vh; overflow: hidden; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-body);
  border-top: 1px solid var(--border-light);
}
.footer-top {
  padding: 70px 0 50px;
}
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 22px 0;
  font-size: 0.8rem;
  color: var(--text-subtle);
}
.footer-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-primary);
  display: inline-block;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
  display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--accent-primary); }
.footer-links a::before {
  content: '→';
  font-size: 0.65rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s ease;
}
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }
.footer-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-contact-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: var(--text-muted);
}
.footer-contact-list i {
  color: var(--accent-primary);
  width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-cert-badges {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cert-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 700;
  color: var(--accent-primary);
  background: var(--accent-soft);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  letter-spacing: 0.05em;
}
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-light);
  background: var(--bg-body);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all 0.25s var(--ease-spring);
}
.social-btn:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}
.social-btn-wa:hover { background: #25D366 !important; border-color: #25D366 !important; }

/* ── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.animate-fadeup   { animation: fadeUp 0.7s var(--ease-out) both; }
.animate-fadein   { animation: fadeIn 0.6s ease both; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1199px) {
  :root { --section-pad: 80px; }
  #mainNav { width: calc(100% - 32px); }
}

@media (max-width: 991px) {
  :root { --section-pad: 70px; }
  .hero-section { padding: 110px 0 200px; }
  .stats-float-card { grid-template-columns: repeat(2, 1fr); gap: 14px; bottom: auto; position: relative; margin-top: 24px; left: 0; transform: none; width: 100%; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--border-light); padding: 10px 0; }
  .stat-cell:nth-child(2n) { border-bottom: none; }
  .hero-badge-1, .hero-badge-2 { display: none; }
  #mainNav { top: 12px; padding: 10px 18px; }
  .navbar-collapse { background: rgba(255,255,255,0.98); border-radius: var(--radius-md); margin-top: 10px; padding: 14px; border: 1px solid var(--border-light); box-shadow: var(--shadow-lg); }
}

@media (max-width: 767px) {
  :root { --section-pad: 55px; }
  h1    { font-size: 2.1rem; }
  h2    { font-size: 1.7rem; }
  .hero-section { padding: 100px 0 60px; }
  .stats-float-card { grid-template-columns: repeat(2, 1fr); position: static; width: 100%; transform: none; margin-top: 28px; bottom: auto; }
  .trusted-logos { gap: 16px; }
  .trusted-logo { padding: 8px 14px; }
  .call-float, .whatsapp-float, .back-to-top { bottom: 20px; }
  .back-to-top { right: 20px; }
  .call-float { right: 20px; bottom: 80px; }
  .whatsapp-float { right: 80px; bottom: 80px; }
}

@media (max-width: 575px) {
  #mainNav { width: calc(100% - 24px); padding: 9px 14px; }
  .hero-actions { flex-direction: column; }
  .btn-primary-custom, .btn-outline-custom { width: 100%; justify-content: center; }
  .stats-float-card { grid-template-columns: repeat(2, 1fr); }
}

/* ── ALERTS ──────────────────────────────────────────────────────── */
.alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  color: #15803d;
  padding: 16px 20px;
}
.alert-danger {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: var(--radius-md);
  color: #be123c;
  padding: 16px 20px;
}

/* ── RIPPLE ──────────────────────────────────────────────────────── */
.ripple {
  position: fixed;
  border-radius: 50%;
  border: 1.5px solid rgba(22,93,255,0.2);
  animation: rippleOut 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 99998;
}
@keyframes rippleOut {
  from { transform: scale(1); opacity: 0.5; }
  to   { transform: scale(3.5); opacity: 0; }
}
