/* ==========================================================================
   APEXRANK PRO - MODERN SAAS DESIGN SYSTEM
   Featuring: Edge-to-Edge Glass Navbar, Frosted Glassmorphic Cards,
   Compact Dark Analytics Window, and Redesigned Hero HUD
   ========================================================================== */

:root {
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-dark: #4338ca;
  --primary-light: rgba(99, 102, 241, 0.08);
  --primary-glow: rgba(99, 102, 241, 0.3);

  --accent-violet: #8b5cf6;
  --accent-violet-hover: #7c3aed;
  --accent-cyan: #06b6d4;
  --accent-gradient: linear-gradient(135deg, #6366f1 0%, #7c3aed 50%, #9333ea 100%);
  --accent-gradient-hover: linear-gradient(135deg, #4f46e5 0%, #6d28d9 50%, #7e22ce 100%);

  --dark: #090d16;
  --dark-surface: #0f172a;
  --dark-card: #141c2e;
  --dark-border: rgba(99, 102, 241, 0.22);

  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.72);
  --bg-subtle: #f1f5f9;

  --text-main: #090d16;
  --text-body: #090d16;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --border-subtle: rgba(99, 102, 241, 0.16);
  --border-card: rgba(226, 232, 240, 0.85);
  --border-glass: rgba(99, 102, 241, 0.2);
  --border-hover: #6366f1;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 14px -2px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
  --shadow-card: 0 16px 36px -10px rgba(79, 70, 229, 0.1), 0 2px 6px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 24px 50px -12px rgba(99, 102, 241, 0.25), 0 0 20px rgba(124, 58, 237, 0.12);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.35);

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  padding-top: 86px; /* Edge-to-edge navbar offset */
  position: relative;
  background-color: var(--bg-page);
}

body.nav-locked {
  overflow: hidden;
  touch-action: none;
}

section, header, footer, main {
  max-width: 100%;
  overflow-x: clip;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.final-cta-section, .final-cta-card {
  overflow: hidden;
}

/* ==========================================================================
   INSTANT TOP PRELOADER & MOBILE BACKDROP
   ========================================================================== */
.site-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 99999;
  background: rgba(99, 102, 241, 0.1);
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
  background-size: 200% 100%;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.8), 0 0 6px rgba(6, 182, 212, 0.7);
  animation: shimmerBar 1.5s infinite linear;
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes shimmerBar {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.site-preloader.done {
  opacity: 0;
  visibility: hidden;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 13, 22, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   NEW NAVBAR: EDGE-TO-EDGE SLEEK GLASS HEADER WITH CHIP NAVIGATION
   Completely replaces the old floating pill with an ultra-modern look
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.16);
  box-shadow: 0 4px 25px -4px rgba(15, 23, 42, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(99, 102, 241, 0.28);
  box-shadow: 0 10px 30px -5px rgba(79, 70, 229, 0.12);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  transition: padding 0.3s ease;
}

.site-header.is-scrolled .header-inner {
  padding: 10px 24px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.brand-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.35));
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-icon-wrap {
  transform: rotate(6deg) scale(1.08);
}

.brand-text {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-gradient {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-logo span.tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  background: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(99, 102, 241, 0.22);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Nav Menu: Segmented Modern Capsule */
#primaryNav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.14);
  padding: 5px 8px;
  border-radius: var(--radius-full);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  display: inline-block;
}

.nav-link:hover {
  color: #4338ca;
  background: rgba(99, 102, 241, 0.08);
}

.nav-link.active,
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a,
.nav-menu li.current_page_parent > a {
  color: #ffffff !important;
  background: var(--accent-gradient) !important;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

.nav-link::after {
  display: none !important;
}

.mobile-menu-cta {
  display: none;
}

/* Header Action Buttons */
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.header-wa-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 8px 22px -4px rgba(99, 102, 241, 0.45);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.btn-primary:hover::before {
  left: 140%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-gradient-hover);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 12px 28px -4px rgba(99, 102, 241, 0.58);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.85);
  color: #4338ca;
  border: 1.5px solid rgba(99, 102, 241, 0.32);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.16);
}

.btn-dark {
  background: var(--dark);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-dark:hover {
  background: var(--dark-surface);
  border-color: rgba(99, 102, 241, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.3);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #22bf5b, #0f7a6d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.btn-block {
  width: 100%;
  display: flex;
}

.mobile-toggle {
  display: none;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.18);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--dark);
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: rgba(99, 102, 241, 0.15);
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  position: relative;
}

.hamburger-icon .bar {
  display: block;
  height: 2.2px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-toggle.is-active .bar-1 {
  transform: translateY(7px) rotate(45deg);
  background: var(--primary);
}

.mobile-toggle.is-active .bar-2 {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.is-active .bar-3 {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--primary);
}

/* ==========================================================================
   HERO SECTION: High-Tech SaaS Matrix with 3D Hologram Showcase & Bento Stats
   ========================================================================== */
.hero-section {
  padding: 65px 0 85px;
  position: relative;
  background-color: #f8faff;
  background-image: 
    radial-gradient(rgba(99, 102, 241, 0.12) 1.2px, transparent 1.2px),
    radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(124, 58, 237, 0.1) 0%, transparent 45%);
  background-size: 26px 26px, 100% 100%, 100% 100%;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 55px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Eyebrow Pill with Live Beacon Ring */
.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(99, 102, 241, 0.28);
  border-radius: var(--radius-full);
  color: #4338ca;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
  box-shadow: 0 4px 18px rgba(99, 102, 241, 0.12);
}

.eyebrow-pulse-beacon {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6366f1;
  box-shadow: 0 0 10px #6366f1;
  position: relative;
  display: inline-block;
}

.eyebrow-pulse-beacon::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1.5px solid #6366f1;
  animation: beaconWave 2s infinite ease-out;
}

@keyframes beaconWave {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.9); opacity: 0; }
}

.hero-title {
  font-size: 3.45rem;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--dark);
  margin-bottom: 22px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.14rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 34px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}

/* Elevated Frosted Glass Metric Cards (Bento Style) */
.hero-metrics-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 10px;
}

.metric-bento-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(99, 102, 241, 0.22);
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 10px 25px -8px rgba(79, 70, 229, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.metric-bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.52);
  box-shadow: 0 16px 36px -8px rgba(99, 102, 241, 0.24);
  background: #ffffff;
}

.metric-bento-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.metric-bento-icon {
  font-size: 1.15rem;
}

.metric-bento-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.08);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.16);
}

.metric-bento-card .stat-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: #3730a3;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.metric-bento-card .stat-label {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
}

/* ==========================================================================
   HERO VISUAL SHOWCASE: 3D Hologram Frame & Overlapping Floating Badges
   ========================================================================== */
.hero-visual-wrapper {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

/* Ambient Radial Flare Aura */
.hero-glow-aura {
  position: absolute;
  top: -8%;
  left: -8%;
  width: 116%;
  height: 116%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.26) 0%, rgba(139, 92, 246, 0.18) 45%, rgba(6, 182, 212, 0.08) 70%, transparent 80%);
  filter: blur(48px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  animation: auraFloat 7s ease-in-out infinite alternate;
}

@keyframes auraFloat {
  0% { transform: scale(0.96) translate(0, 0); opacity: 0.7; }
  100% { transform: scale(1.05) translate(8px, 12px); opacity: 1; }
}

/* Overlapping 3D Floating Glass Badges */
.floating-chip {
  position: absolute;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(99, 102, 241, 0.32);
  border-radius: 20px;
  padding: 11px 18px;
  box-shadow: 0 16px 36px -6px rgba(79, 70, 229, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  pointer-events: auto;
  transition: transform 0.3s ease;
}

.floating-chip:hover {
  transform: scale(1.05) translateY(-3px) !important;
}

.chip-top-left {
  top: -18px;
  left: -32px;
  animation: floatChip1 5s ease-in-out infinite;
}

.chip-bottom-right {
  bottom: 85px;
  right: -32px;
  animation: floatChip2 6s ease-in-out infinite;
}

@keyframes floatChip1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-1.5deg); }
}

@keyframes floatChip2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(8px) rotate(1.5deg); }
}

.chip-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.chip-icon-box.rocket-glow {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(124, 58, 237, 0.25));
  border: 1px solid rgba(99, 102, 241, 0.32);
}

.chip-icon-box.star-glow {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(234, 179, 8, 0.25));
  border: 1px solid rgba(245, 158, 11, 0.32);
}

.chip-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.chip-sub {
  font-size: 0.74rem;
  font-weight: 600;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.chip-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  display: inline-block;
  animation: pulseGlow 1.8s infinite ease-in-out;
}

/* Main Cyber Shield Console Card */
.hero-visual-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 248, 255, 0.8) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(99, 102, 241, 0.3);
  border-radius: 32px;
  padding: 16px;
  box-shadow: 0 28px 70px -15px rgba(79, 70, 229, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual-card:hover {
  border-color: rgba(99, 102, 241, 0.55);
  box-shadow: 0 35px 80px -15px rgba(79, 70, 229, 0.35), 0 0 35px rgba(124, 58, 237, 0.18);
}

/* Console Top Bar with macOS Window Dots */
.hero-console-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px 14px;
}

.console-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.console-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.console-dots .dot.red { background: #f43f5e; box-shadow: 0 0 6px rgba(244, 63, 94, 0.4); }
.console-dots .dot.yellow { background: #f59e0b; box-shadow: 0 0 6px rgba(245, 158, 11, 0.4); }
.console-dots .dot.green { background: #10b981; box-shadow: 0 0 6px rgba(16, 185, 129, 0.4); }

.console-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: #4338ca;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.console-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: pulseGlow 1.8s infinite;
}

.console-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.08);
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.18);
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 22px;
  overflow: hidden;
  background: #0f172a;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.hero-visual-card:hover .hero-img-wrap img {
  transform: scale(1.03);
}

.img-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.5) 100%);
  pointer-events: none;
}

.hero-card-footer {
  padding: 14px 8px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-expert-info h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.hero-expert-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

.hero-online-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.live-dot-mini {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: pulseGlow 1.8s infinite;
}

/* ==========================================================================
   TRUST PILLARS DOCK (Unified Seamless Frosted Glass Command Console)
   Replaces the old 4 standalone cards with a high-tech connected dock
   ========================================================================== */
.trust-bar {
  padding: 5px 0 65px;
  margin-bottom: 20px;
  position: relative;
  z-index: 5;
}

.trust-dock {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(246, 248, 255, 0.8) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1.5px solid rgba(99, 102, 241, 0.28);
  border-radius: 28px;
  padding: 12px 20px;
  box-shadow: 0 22px 50px -15px rgba(79, 70, 229, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  position: relative;
  overflow: hidden;
}

.trust-dock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6366f1, #a855f7, #06b6d4, transparent);
  border-radius: 999px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  position: relative;
  z-index: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 18px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: default;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.25), transparent);
}

.trust-item:hover {
  background: rgba(99, 102, 241, 0.08) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px -6px rgba(99, 102, 241, 0.18) !important;
}

.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #ffffff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover .trust-icon {
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.45);
}

.trust-text h4 {
  font-size: 0.96rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
  line-height: 1.25;
}

.trust-text p {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
  margin: 0;
  line-height: 1.35;
}

/* ==========================================================================
   COMPACT ANALYTICS SHOWCASE (macOS / SaaS Dark Glass App Window)
   Scaled down to balanced width with color-matching dark violet theme
   ========================================================================== */
.analytics-section {
  padding: 60px 0 90px;
}

.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 46px;
}

.section-head .badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.09);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid rgba(99, 102, 241, 0.22);
}

.section-head h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

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

/* Reduced size container (max-width 840px) */
.analytics-card {
  max-width: 840px;
  margin: 0 auto;
  background: #090d16;
  border: 1px solid rgba(99, 102, 241, 0.28);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 25px 65px -15px rgba(9, 13, 22, 0.6), 0 0 45px rgba(99, 102, 241, 0.2);
  transition: var(--transition);
}

.analytics-card:hover {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 30px 75px -15px rgba(9, 13, 22, 0.7), 0 0 55px rgba(99, 102, 241, 0.3);
}

/* App Window Title Bar */
.analytics-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.window-title {
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.window-sync-tag {
  font-size: 0.72rem;
  color: #06b6d4;
  background: rgba(6, 182, 212, 0.1);
  padding: 2px 8px;
  border-radius: 9999px;
  border: 1px solid rgba(6, 182, 212, 0.25);
  font-weight: 700;
}

.analytics-img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.analytics-img-wrap img {
  width: 100%;
  height: auto;
}

.analytics-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.metric-box {
  background: rgba(255, 255, 255, 0.04);
  padding: 16px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: var(--transition);
}

.metric-box:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.35);
  transform: translateY(-2px);
}

.metric-box .label {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.metric-box .value {
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  margin: 3px 0;
}

.metric-box .growth {
  font-size: 0.78rem;
  font-weight: 700;
  color: #38bdf8;
}

/* ==========================================================================
   SERVICES SECTION (FROSTED GLASSMORPHIC CARDS)
   ========================================================================== */
.services-section {
  padding: 85px 0;
  background: #ffffff;
  border-top: 1px solid rgba(99, 102, 241, 0.12);
  border-bottom: 1px solid rgba(99, 102, 241, 0.12);
}

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

.service-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(99, 102, 241, 0.45);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card-num-tag {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(99, 102, 241, 0.18);
}

.service-icon-box {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.2));
  color: #4f46e5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 24px;
  border: 1px solid rgba(99, 102, 241, 0.22);
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
  line-height: 1.65;
}

.service-features {
  list-style: none;
  margin-bottom: 26px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 10px;
  font-weight: 600;
}

.service-features li span.check {
  color: #6366f1;
  font-weight: 800;
}

.service-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: #4f46e5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.service-link:hover {
  gap: 10px;
  color: #4338ca;
}

/* ==========================================================================
   FEATURED CASE STUDY (Frosted Glass Container)
   ========================================================================== */
.case-study-section {
  padding: 95px 0;
}

.case-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 45px -10px rgba(79, 70, 229, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  transition: var(--transition);
}

.case-card:hover {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: var(--shadow-hover);
}

.case-content {
  padding: 48px;
}

.case-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4338ca;
  background: rgba(99, 102, 241, 0.1);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  text-transform: uppercase;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.case-content h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.case-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

.case-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.case-result-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(99, 102, 241, 0.14);
}

.case-result-item .val {
  font-size: 1.6rem;
  font-weight: 800;
  color: #4f46e5;
}

.case-result-item .desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.case-image {
  height: 100%;
  min-height: 400px;
  background: var(--bg-subtle);
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-card:hover .case-image img {
  transform: scale(1.03);
}

/* ==========================================================================
   PORTFOLIO PAGE REDESIGNED GRID & FILTER BAR
   ========================================================================== */
.portfolio-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.portfolio-filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(99, 102, 241, 0.18);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-muted);
  transition: var(--transition);
}

.portfolio-filter-btn.active, .portfolio-filter-btn:hover {
  background: var(--accent-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.portfolio-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.portfolio-glass-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.portfolio-glass-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(99, 102, 241, 0.45);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.portfolio-card-thumb {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.portfolio-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-glass-card:hover .portfolio-card-thumb img {
  transform: scale(1.05);
}

.portfolio-badge-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(9, 13, 22, 0.75);
  backdrop-filter: blur(8px);
  color: #38bdf8;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.portfolio-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.portfolio-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.portfolio-mini-metrics {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.mini-metric-pill {
  flex: 1;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.16);
  border-radius: 12px;
  padding: 8px 10px;
  text-align: center;
}

.mini-metric-pill .m-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #4338ca;
}

.mini-metric-pill .m-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   TESTIMONIALS (FROSTED GLASSMORPHIC REVIEWS)
   ========================================================================== */
.testimonials-section {
  padding: 85px 0;
  background: var(--bg-page);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.16);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(99, 102, 241, 0.45);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stars {
  color: #f59e0b;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.testimonial-card p.quote {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 22px;
  font-style: italic;
}

.client-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.client-author h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.client-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   INTERACTIVE AUDIT FORM (Frosted Glass Lead Capture)
   ========================================================================== */
.audit-section {
  padding: 85px 0;
}

.audit-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.22);
  border-radius: 28px;
  padding: 50px;
  box-shadow: 0 20px 50px -15px rgba(79, 70, 229, 0.16);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.audit-left h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.audit-left p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.audit-checklist {
  list-style: none;
}

.audit-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 0.92rem;
}

.audit-checklist li span {
  color: #6366f1;
  font-weight: 800;
}

.audit-form {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 34px;
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.18);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3.5px rgba(99, 102, 241, 0.18);
}

.audit-submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

/* ==========================================================================
   FAQ SECTION (Frosted Glass Accordion)
   ========================================================================== */
.faq-section {
  padding: 85px 0;
  background: #ffffff;
  border-top: 1px solid rgba(99, 102, 241, 0.12);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(99, 102, 241, 0.14);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(99, 102, 241, 0.45);
  background: #ffffff;
  box-shadow: 0 8px 24px -6px rgba(99, 102, 241, 0.14);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 1.25rem;
  color: #4f46e5;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

/* ==========================================================================
   BLOG PREVIEW (Frosted Glass Cards)
   ========================================================================== */
.blog-preview-section {
  padding: 85px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.16);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(99, 102, 241, 0.45);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-card-thumb {
  height: 200px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.05);
}

.blog-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,13,22,0.1) 0%, rgba(9,13,22,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.blog-category-tag {
  background: var(--accent-gradient);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
  flex-grow: 1;
}

.blog-card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: #4f46e5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   FINAL HIGH-IMPACT CTA BANNER
   ========================================================================== */
.final-cta-section {
  padding: 85px 0 105px;
}

.final-cta-card {
  background: #090d16;
  border: 1px solid rgba(99, 102, 241, 0.32);
  border-radius: 28px;
  padding: 70px 40px;
  text-align: center;
  box-shadow: 0 25px 60px -12px rgba(9, 13, 22, 0.6), 0 0 40px rgba(99, 102, 241, 0.25);
  position: relative;
  overflow: hidden;
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.28) 0%, rgba(139, 92, 246, 0.1) 40%, transparent 70%);
  pointer-events: none;
}

.final-cta-card h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.final-cta-card h2 span {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-cta-card p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER (Links, Menus, Socials & WhatsApp)
   ========================================================================== */
.site-footer {
  background: #090d16;
  color: #ffffff;
  padding: 85px 0 32px;
  border-top: 1px solid rgba(99, 102, 241, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .brand-logo {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: #6366f1;
  border-color: #6366f1;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.45);
}

.social-btn.facebook:hover { background: #1877F2; border-color: #1877F2; }
.social-btn.linkedin:hover { background: #0A66C2; border-color: #0A66C2; }
.social-btn.whatsapp:hover { background: #25D366; border-color: #25D366; }

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #38bdf8;
  padding-left: 6px;
}

.footer-contact p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 0.86rem;
  flex-wrap: wrap;
  gap: 16px;
  padding-right: 95px;
}

/* Developer Name WhatsApp Link */
.dev-credit-inline {
  color: var(--text-light);
  font-size: 0.86rem;
  margin: 0;
}

.dev-author-link {
  color: #38bdf8 !important;
  font-weight: 700;
  text-decoration: underline !important;
  text-underline-offset: 4px;
  transition: all 0.2s ease;
}

.dev-author-link:hover {
  color: #93c5fd !important;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

/* Floating WhatsApp Quick Action Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  border: 2px solid #ffffff;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

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

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* ==========================================================================
   ADVANCED CROSS-DEVICE RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .hero-visual-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .trust-item:nth-child(2)::after {
    display: none;
  }
  .services-grid, .testimonials-grid, .blog-grid, .portfolio-grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .audit-card {
    grid-template-columns: 1fr;
    padding: 38px;
    gap: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 868px) {
  body {
    padding-top: 74px;
  }
  .header-inner {
    padding: 8px 14px;
    gap: 8px;
  }
  .brand-logo {
    font-size: 1.05rem;
    min-width: 0;
    flex-shrink: 1;
    gap: 8px;
  }
  .brand-text {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
  }
  .brand-logo span.tag {
    display: none !important;
  }
  .header-desktop-btn, .header-wa-btn {
    display: none !important;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(99, 102, 241, 0.15);
    flex-direction: column;
    padding: 22px 18px;
    gap: 8px;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.98);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-menu .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
  }
  .nav-menu .nav-link:hover, .nav-menu .nav-link.active {
    background: rgba(99, 102, 241, 0.1) !important;
    color: #4338ca !important;
    box-shadow: none !important;
  }
  .mobile-menu-cta {
    display: block;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border-card);
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-section {
    padding: 25px 0 45px;
    overflow: hidden;
  }
  .hero-title {
    font-size: clamp(1.85rem, 5.5vw, 2.4rem);
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .hero-metrics-bento {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .metric-bento-card {
    padding: 14px 16px;
  }
  .metric-bento-card .stat-num {
    font-size: 1.6rem;
  }
  .metric-bento-card .stat-label {
    font-size: 0.78rem;
  }
  .hero-visual-wrapper {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0 4px;
  }
  .floating-chip {
    position: static !important;
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 10px 0 !important;
    animation: none !important;
    transform: none !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
  }
  .chip-top-left {
    margin-bottom: 12px !important;
  }
  .chip-bottom-right {
    margin-top: 12px !important;
  }
  .trust-bar {
    padding: 10px 0 35px;
    margin-bottom: 20px;
  }
  .trust-dock {
    padding: 12px;
    border-radius: 18px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .trust-item:not(:last-child)::after {
    display: none;
  }
  .trust-item {
    padding: 10px 14px;
  }
  .analytics-section {
    padding: 35px 0 50px;
  }
  .section-head {
    margin-bottom: 30px;
  }
  .section-head h2 {
    font-size: clamp(1.75rem, 5vw, 2.1rem);
  }
  .analytics-card {
    padding: 16px 12px;
    border-radius: 20px;
    max-width: 100%;
  }
  .analytics-metrics-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .services-section {
    padding: 45px 0;
  }
  .services-grid, .testimonials-grid, .blog-grid, .portfolio-grid-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-card {
    padding: 24px 18px;
  }
  .case-study-section {
    padding: 45px 0;
  }
  .case-card {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .case-content {
    padding: 24px 18px;
  }
  .case-image {
    min-height: 220px;
  }
  .audit-section {
    padding: 45px 0;
  }
  .audit-card {
    padding: 24px 16px;
    border-radius: 20px;
    max-width: 100%;
  }
  .audit-left h2 {
    font-size: 1.75rem;
  }
  .auditor-profile-card {
    padding: 12px 14px;
    max-width: 100%;
  }
  .audit-form {
    padding: 20px 14px;
  }
  .form-control {
    font-size: 16px;
  }
  .final-cta-section {
    padding: 45px 0 55px;
    overflow: hidden;
  }
  .final-cta-card {
    padding: 36px 16px;
    border-radius: 20px;
    overflow: hidden;
  }
  .final-cta-card h2 {
    font-size: clamp(1.75rem, 5vw, 2.1rem);
  }
}

@media (max-width: 500px) {
  .brand-text {
    max-width: 140px;
    font-size: 0.95rem;
  }
  .header-inner {
    padding: 8px 10px;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero-title {
    font-size: clamp(1.65rem, 6.8vw, 2.05rem);
  }
  .hero-visual-card {
    border-radius: 18px;
    padding: 10px;
  }
  .hero-console-bar {
    padding: 2px 2px 8px;
    flex-wrap: wrap;
    gap: 6px;
  }
  .console-title {
    font-size: 0.65rem;
    letter-spacing: 0.04em;
  }
  .console-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
  }
  .hero-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hero-online-status {
    align-self: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}


/* ==========================================================================
   ADVANCED GLASSMORPHISM, GLOWING OUTLINES & MICRO-ANIMATIONS
   ========================================================================== */

/* Shimmer Button Keyframes */
@keyframes btnGlowShine {
  0% { left: -120%; }
  100% { left: 180%; }
}

@keyframes outlinePulse {
  0%, 100% {
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.12);
  }
  50% {
    border-color: rgba(99, 102, 241, 0.55);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.28);
  }
}

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

/* Glassmorphism & Outlines for ALL Buttons */
.btn {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.95) 0%, rgba(124, 58, 237, 0.95) 50%, rgba(147, 51, 234, 0.98) 100%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6), 0 10px 28px -4px rgba(99, 102, 241, 0.45), 0 0 20px rgba(124, 58, 237, 0.25) !important;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.85), 0 16px 36px -4px rgba(99, 102, 241, 0.65), 0 0 35px rgba(99, 102, 241, 0.45) !important;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-22deg);
  pointer-events: none;
}

.btn-primary:hover::after {
  animation: btnGlowShine 0.8s ease-in-out forwards;
}

.btn-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.95), rgba(18, 140, 126, 0.98)) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6), 0 10px 25px -4px rgba(37, 211, 102, 0.45) !important;
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.85), 0 14px 32px -4px rgba(37, 211, 102, 0.6), 0 0 25px rgba(37, 211, 102, 0.35) !important;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.65) !important;
  border: 1.5px solid rgba(99, 102, 241, 0.4) !important;
  color: #4338ca !important;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), 0 6px 18px rgba(99, 102, 241, 0.1) !important;
}

.btn-outline:hover {
  background: rgba(99, 102, 241, 0.12) !important;
  border-color: #6366f1 !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 10px 25px rgba(99, 102, 241, 0.25) !important;
}

/* Glassmorphism & Glowing Outlines on ALL Cards */
.service-card,
.testimonial-card,
.case-card,
.portfolio-glass-card,
.blog-card,
.audit-card,
.trust-dock,
.faq-item {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1.5px solid rgba(99, 102, 241, 0.22) !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8), 0 18px 45px -10px rgba(79, 70, 229, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.35) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.service-card:hover,
.testimonial-card:hover,
.case-card:hover,
.portfolio-glass-card:hover,
.blog-card:hover,
.audit-card:hover,
.trust-dock:hover,
.faq-item:hover {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(99, 102, 241, 0.58) !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.95), 0 26px 60px -15px rgba(99, 102, 241, 0.28), 0 0 35px rgba(124, 58, 237, 0.22) !important;
  transform: translateY(-6px) !important;
}

/* Service Matrix Layout: Modern High-Converting Services Bento */
.service-matrix-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(99, 102, 241, 0.24);
  border-radius: 30px;
  padding: 44px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8), 0 20px 50px -12px rgba(79, 70, 229, 0.12);
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-matrix-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(99, 102, 241, 0.6);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.95), 0 28px 65px -15px rgba(99, 102, 241, 0.3), 0 0 40px rgba(124, 58, 237, 0.2);
  transform: translateY(-6px);
}

.service-matrix-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);
  opacity: 0.85;
}

.srv-header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.srv-num-pill {
  font-size: 0.76rem;
  font-weight: 800;
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.srv-badge-live {
  font-size: 0.74rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 5px;
}

.srv-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.srv-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 26px;
}

/* 2x2 Feature Bento Chips */
.srv-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.srv-feature-chip {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: var(--transition);
}

.srv-feature-chip:hover {
  background: #ffffff;
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.12);
}

.srv-feature-chip .f-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.18));
  color: #4f46e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.srv-feature-chip .f-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
}

/* Service Actions Row */
.srv-action-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Service Visual Preview with Glass Bezel */
.srv-visual-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow: 0 16px 40px -10px rgba(15, 23, 42, 0.15), 0 0 25px rgba(99, 102, 241, 0.15);
  background: #090d16;
}

.srv-visual-frame img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-matrix-card:hover .srv-visual-frame img {
  transform: scale(1.04);
}

.srv-visual-overlay-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(99, 102, 241, 0.35);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
}

.srv-visual-overlay-tag span.badge-num {
  color: #38bdf8;
  font-weight: 800;
}

/* Methodology Steps connected line */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.methodology-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);
  z-index: 0;
  opacity: 0.35;
}

.methodology-step-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(99, 102, 241, 0.22);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: var(--transition);
}

.methodology-step-card:hover {
  background: #ffffff;
  border-color: rgba(99, 102, 241, 0.55);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.2);
  transform: translateY(-6px);
}

.methodology-badge-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #7c3aed);
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid #ffffff;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

@media (max-width: 900px) {
  .service-matrix-card {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }
  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .methodology-grid::before {
    display: none;
  }
}

@media (max-width: 550px) {
  .srv-feature-grid {
    grid-template-columns: 1fr;
  }
  .methodology-grid {
    grid-template-columns: 1fr;
  }
}

/* Auditor Personal Verification Card (Audit Section) */
.auditor-profile-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 12px 18px;
  margin-top: 24px;
  max-width: 440px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.auditor-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #10b981;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.35);
  flex-shrink: 0;
}

.auditor-meta {
  display: flex;
  flex-direction: column;
}

.auditor-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #10b981;
  text-transform: uppercase;
}

.auditor-name {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.auditor-name .verified-tick {
  color: #10b981;
  font-size: 0.85rem;
}

.auditor-role {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 2px;
}

