/* ============================================================
   Shuchi Business Solution — Premium Shared Stylesheet
   Theme: Luxury Charcoal Midnight + Neon Glassmorphic Accents
   ============================================================ */

:root {
  --primary:      #080c14; /* Deep midnight */
  --secondary:    #0f172a; /* Premium slate */
  --accent:       #3b82f6; /* Vibrant indigo blue */
  --cyan:         #06b6d4; /* Vivid cyan */
  --cyan-light:   #22d3ee; /* Electric cyan */
  --emerald:      #10b981; /* Success green */
  --white:        #ffffff;
  --light:        #f8fafc;
  --muted:        #94a3b8; /* Muted slate */
  --card-bg:      rgba(15, 23, 42, 0.65); /* Rich card base */
  --glass:        rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --nav-height:   72px;
  --transition:   0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Ultra smooth ease-out */
  --radius:       16px;
  --radius-sm:    10px;
  --shadow-sm:    0 4px 10px rgba(0, 0, 0, 0.2);
  --shadow-md:    0 12px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg:    0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --shadow-glow:  0 0 30px rgba(6, 182, 212, 0.2);
}

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

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--primary);
  color: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: rgba(59, 130, 246, 0.3); border-radius: 4px; border: 2px solid var(--primary); }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  color: var(--white);
}
.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, var(--cyan) 50%, var(--cyan-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.section {
  padding: 110px 0;
}
.section-alt {
  background: radial-gradient(circle at center, rgba(30, 58, 138, 0.05) 0%, transparent 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.text-center { text-align: center; }

/* ── Interactive Premium Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan-light), var(--accent));
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(6, 182, 212, 0.5);
}
.btn-primary:hover::before { opacity: 1; }
.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}
.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.85rem; }

/* ── Navigation Header ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.nav-logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.nav-logo-text span {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-link {
  padding: 0.6rem 0.95rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--cyan-light);
  background: rgba(6, 182, 212, 0.06);
}
.nav-cta { margin-left: 0.75rem; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: transparent;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Hamburger animation */
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Dropdown Navigation */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(8, 12, 20, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 0.6rem;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s var(--transition), opacity 0.3s var(--transition), visibility 0.3s var(--transition);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  height: 35px;
  background: transparent;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  color: var(--cyan-light);
  background: rgba(6, 182, 212, 0.08);
  padding-left: 1.4rem;
}

/* ── Hero Segment ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 20px);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37, 99, 235, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
    #080c14;
  z-index: 1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 40%, transparent 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 5; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan-light);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--cyan-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan-light);
  animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  margin-bottom: 2.75rem;
  max-width: 580px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
}
.hero-stat strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #93c5fd, var(--cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Interactive SaaS Dashboard Mockup ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-mock {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.75rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(59, 130, 246, 0.15);
  animation: floatY 6s ease-in-out infinite;
  width: 100%;
  max-width: 520px;
  position: relative;
}
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dash-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.dash-title { font-size: 0.85rem; font-weight: 700; color: var(--white); }
.dash-subtitle { font-size: 0.65rem; color: var(--muted); }
.dash-dots { display:flex; gap:6px; }
.dash-dot { width:8px; height:8px; border-radius:50%; }

/* Interactive tabs in dashboard */
.dash-tabs {
  display: flex;
  gap: 0.35rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.dash-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.45rem 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.dash-tab-btn.active {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cyan-light);
  box-shadow: var(--shadow-sm);
}

/* Dashboard Panel Layout */
.dash-panels {
  position: relative;
  min-height: 190px;
}
.dash-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.dash-panel.active {
  display: block;
  opacity: 1;
}

/* Micro-charts & Grid */
.dash-chart-container {
  height: 80px;
  margin-bottom: 1.25rem;
  position: relative;
}
.sparkline-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.sparkline-path {
  fill: none;
  stroke: url(#cyan-blue-grad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.sparkline-path-purchase {
  stroke: url(#purple-pink-grad);
}
.sparkline-fill {
  fill: url(#cyan-blue-fill);
  opacity: 0.12;
  stroke: none;
}
.sparkline-fill-purchase {
  fill: url(#purple-pink-fill);
}

/* Circular Metric */
.circle-metric-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
}
.circular-svg {
  width: 80px; height: 80px;
  transform: rotate(-90deg);
}
.circle-bg {
  fill: none;
  stroke: rgba(255,255,255,0.05);
  stroke-width: 6;
}
.circle-progress {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 1.5s ease-in-out;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.kpi-metric-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 0.85rem 0.5rem;
  text-align: center;
  transition: all var(--transition);
}
.kpi-metric-box:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(6, 182, 212, 0.15);
}
.kpi-metric-box strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.kpi-metric-box.kpi-cyan strong { color: var(--cyan-light); }
.kpi-metric-box.kpi-emerald strong { color: var(--emerald); }
.kpi-metric-box span {
  display: block;
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
}

/* Floating labels in hero mockup */
.floating-tag {
  position: absolute;
  background: rgba(8, 12, 20, 0.9);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 12px;
  padding: 0.6rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  white-space: nowrap;
  box-shadow: var(--shadow-md), 0 0 20px rgba(6, 182, 212, 0.1);
  z-index: 10;
}
.tag-gst { top:-20px; right:-15px; color:#67e8f9; animation: floatY 4s ease-in-out infinite; }
.tag-inv { bottom:-15px; left:-25px; color:#a5f3fc; animation: floatY 5s ease-in-out infinite reverse; }

/* ── Glowing Card Grids & Glassmorphism ── */
.card-grid {
  display: grid;
  gap: 1.75rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

/* High-End Glassmorphic Feature Cards */
.feature-card {
  padding: 2.5rem 2.25rem;
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
              linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)) border-box;
  border: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-card:hover {
  background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
              linear-gradient(135deg, rgba(6, 182, 212, 0.4), rgba(59, 130, 246, 0.4)) border-box;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(6, 182, 212, 0.1);
}
.feature-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(6, 182, 212, 0.12));
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}
.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(6, 182, 212, 0.25));
  border-color: rgba(6, 182, 212, 0.4);
  transform: scale(1.05) rotate(3deg);
}
.svg-icon {
  width: 26px; height: 26px;
  stroke: var(--cyan-light);
  fill: none;
  stroke-width: 2;
  transition: all var(--transition);
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.015em;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Industry Grid Upgrades ── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.25rem 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
              linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)) border-box;
  border: 1px solid transparent;
  text-align: center;
  transition: all var(--transition);
}
.industry-card:hover {
  background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
              linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(6, 182, 212, 0.3)) border-box;
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 8px 20px rgba(6, 182, 212, 0.08);
}
.industry-icon-wrap {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-card span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--light);
}

/* ── Process Steps Upgrades ── */
.steps-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.steps-wrap::before {
  content: '';
  position: absolute;
  left: 28px; top: 15px; bottom: 15px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--cyan), transparent);
  opacity: 0.4;
}
.step-item {
  display: flex;
  gap: 1.75rem;
  padding: 1.75rem 0;
  position: relative;
}
.step-num {
  flex-shrink: 0;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--primary), 0 0 25px rgba(37,99,235,0.4);
}
.step-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.step-body p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* ── Testimonials Upgrades ── */
.testimonial-card {
  padding: 2.5rem;
  border-radius: var(--radius);
  background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
              linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)) border-box;
  border: 1px solid transparent;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
              linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(59, 130, 246, 0.3)) border-box;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 5rem;
  color: rgba(37, 99, 235, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: #fbbf24; font-size: 0.95rem; margin-bottom: 1.25rem; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 0.975rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.25rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
}
.author-info strong { display: block; font-size: 0.92rem; color: var(--white); }
.author-info span  { display: block; font-size: 0.78rem; color: var(--muted); }

/* ── FAQ Accordion Styles ── */
.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.85rem;
  transition: all var(--transition);
  background: rgba(15, 23, 42, 0.4);
}
.faq-item.open {
  border-color: rgba(6, 182, 212, 0.35);
  background: rgba(15, 23, 42, 0.7);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.75rem;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  transition: all var(--transition);
  border: none;
}
.faq-question:hover { color: var(--cyan-light); }
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--transition);
  color: var(--cyan);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(6, 182, 212, 0.2); color: var(--cyan-light); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq-answer-inner {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── Contact Section & Modern Form Controls ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(6, 182, 212, 0.15));
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.contact-info-item strong { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-info-item span  { font-size: 1rem; color: var(--white); font-weight: 600; }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.92rem;
  font-family: inherit;
  transition: all var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: rgba(37, 99, 235, 0.04);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}
.form-group select option { background: #080c14; color: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* ── Tags / Badges ── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #93c5fd;
}
.tag-cyan {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.25);
  color: var(--cyan-light);
}

/* ── Interactive CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, rgba(37, 99, 235, 0.3) 50%, rgba(6, 182, 212, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
  animation: rotateSlow 25s linear infinite;
  z-index: 0;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1.25rem; z-index: 1; position: relative; }
.cta-banner p  { color: var(--muted); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; font-size: 1.1rem; z-index: 1; position: relative; }

/* ── Footer ── */
.footer {
  background: #04070d;
  border-top: 1px solid var(--glass-border);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--glass-border);
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 1.25rem 0;
  line-height: 1.8;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  transition: all var(--transition);
}
.footer-col a:hover { color: var(--cyan-light); padding-left: 0.25rem; }
.footer-social {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.25rem;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
  color: var(--muted);
}
.social-btn:hover {
  background: rgba(37, 99, 235, 0.25);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-bottom {
  padding-top: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-logo img { height: 40px; border-radius: 6px; }

/* ── Page Hero (Sub-pages Layout) ── */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
    var(--primary);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.page-hero p  { font-size: 1.1rem; color: var(--muted); max-width: 620px; margin: 0 auto 1.75rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.breadcrumb a { color: var(--cyan); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--cyan-light); }
.breadcrumb span { color: rgba(255, 255, 255, 0.15); }

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: 0;
}

/* ── Floating Orbs (Glow effects) ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  -webkit-filter: blur(120px);
  opacity: 0.16;
  pointer-events: none;
}
.orb-1 {
  width: 550px; height: 550px;
  background: var(--accent);
  top: -200px; right: -100px;
  animation: floatY 10s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: var(--cyan);
  bottom: 100px; left: -150px;
  animation: floatY 12s ease-in-out infinite reverse;
}

/* ── Trusted Logos Carousel ── */
.logos-bar {
  padding: 3rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
  background: rgba(4, 7, 13, 0.3);
}
.logos-track {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  animation: scrollX 35s linear infinite;
  width: max-content;
}
.logo-item {
  padding: 0.65rem 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  transition: all var(--transition);
}
.logo-item:hover {
  border-color: rgba(6, 182, 212, 0.3);
  color: var(--cyan-light);
  transform: translateY(-2px);
}

/* ── Product Module Tabs ── */
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.tab-btn {
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(6, 182, 212, 0.35);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeInUp 0.5s ease both; }

/* ── Modern Blog Layout ── */
.blog-card {
  background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
              linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(6, 182, 212, 0.1);
}
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 58, 138, 0.4));
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-body { padding: 1.75rem; }
.blog-meta { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-body h3 { font-size: 1.15rem; margin-bottom: 0.75rem; line-height: 1.45; font-weight: 700; }
.blog-body p  { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.blog-body a  { font-size: 0.88rem; color: var(--cyan-light); font-weight: 700; display: inline-flex; align-items: center; gap: 0.25rem; }
.blog-body a:hover { color: var(--white); }

/* ── Top Info Notice Bar ── */
.topbar {
  background: linear-gradient(90deg, #0b1528, #1e3a8a, #0b1528);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0.6rem 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  z-index: 1001;
  position: relative;
}
.topbar a { color: var(--cyan-light); font-weight: 700; margin-left: 0.5rem; text-decoration: underline; }
.topbar a:hover { color: var(--white); }

/* ── WhatsApp Floating Icon & Pulse Aura ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  text-decoration: none;
  animation: wa-pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

/* ── CSS Keyframe Animations ── */
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
@keyframes scrollX {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ── Responsiveness Breakpoints ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-height); left: 0; right: 0; bottom: 0;
    background: rgba(8, 12, 20, 0.98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    flex-direction: column;
    padding: 3rem 2rem;
    overflow-y: auto;
    gap: 0.5rem;
    z-index: 998;
  }
  .nav-menu.open { display: flex; animation: fadeInUp 0.4s ease both; }
  .nav-hamburger { display: flex; }
  .dropdown-menu { position: static; transform: none; border: none; background: rgba(255, 255, 255, 0.02); opacity: 1; visibility: visible; display: block; box-shadow: none; margin-top: 0.5rem; padding-left: 1.5rem; }
  .hero-stats { gap: 1.75rem; justify-content: space-between; }
  .cta-banner { padding: 3.5rem 1.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-visual { margin-top: 3rem; }
  .dashboard-mock { max-width: 100%; }
}

@media (max-width: 480px) {
  .btn { padding: 0.8rem 1.75rem; font-size: 0.9rem; }
  .hero-title { font-size: 2rem; }
  .topbar { font-size: 0.75rem; padding: 0.5rem 0.25rem; }
}
