/* ==========================================================================
   GRACE SOFT TECH - EXECUTIVE LIGHT ENTERPRISE THEME (WHITE & GOLD)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Variables & Root Settings
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette - Executive Light Theme */
  --bg-dark: #F8FAFC;
  --bg-dark-alt: #F1F5F9;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.92);
  --bg-glass-strong: rgba(255, 255, 255, 0.98);

  --gold-primary: #D4AF37;
  --gold-light: #B88E18;
  --gold-amber: #C59B27;
  --gold-dark: #8F721A;
  --gold-glow: rgba(184, 142, 24, 0.2);
  --gold-glow-soft: rgba(184, 142, 24, 0.08);
  --gold-border: rgba(184, 142, 24, 0.22);
  --gold-border-strong: rgba(184, 142, 24, 0.45);

  --gold-gradient: linear-gradient(135deg, #B88E18 0%, #8F721A 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(184, 142, 24, 0.08) 0%, rgba(184, 142, 24, 0.02) 100%);
  --gold-gradient-button: linear-gradient(135deg, #D4AF37 0%, #B88E18 100%);

  --text-white: #0F172A; /* High contrast executive dark navy title */
  --text-muted: #334155; /* Readable slate body text */
  --text-dim: #64748B;   /* Secondary dim text */
  --text-gold: #9E7611;

  /* Typography */
  --font-heading: 'Outfit', 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Space Mono', monospace;

  /* Layout & Spacing */
  --container-max: 1280px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Shadows & Emitters */
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 4px 20px rgba(184, 142, 24, 0.25);
  --shadow-gold-lg: 0 8px 35px rgba(184, 142, 24, 0.35);

  /* Animation Timings */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Core Typography
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #050505;
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.6);
}

::selection {
  background: var(--gold-primary);
  color: #000000;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   3. Background Mesh & Particle Canvas
   -------------------------------------------------------------------------- */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

.ambient-glow-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.glow-orb-1 {
  top: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #D4AF37 0%, transparent 70%);
}

.glow-orb-2 {
  bottom: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #8F721A 0%, transparent 70%);
  animation-delay: -6s;
}

.glow-orb-3 {
  top: 45%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #E2B52B 0%, transparent 70%);
  opacity: 0.08;
  animation-delay: -12s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 60px) scale(1.1); }
  100% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Noise overlay */
.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   4. Custom Magnetic Cursor (Desktop Only)
   -------------------------------------------------------------------------- */
.cursor-ring, .cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.15s ease-out;
  display: none;
}

@media (pointer: fine) {
  .cursor-ring, .cursor-dot {
    display: block;
  }
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-primary);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  background: rgba(212, 175, 55, 0.05);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

body.cursor-hover .cursor-ring {
  width: 60px;
  height: 60px;
  border-color: var(--gold-light);
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

body.cursor-hover .cursor-dot {
  transform: translate(-50%, -50%) scale(1.5);
}

/* --------------------------------------------------------------------------
   5. Top Voice Assistant Bar & Sticky Header
   -------------------------------------------------------------------------- */
.voice-banner {
  background: linear-gradient(90deg, rgba(184, 142, 24, 0.1) 0%, #FFFFFF 50%, rgba(184, 142, 24, 0.1) 100%);
  border-bottom: 1px solid var(--gold-border);
  padding: 6px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 101;
}

.voice-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.voice-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.voice-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

/* Sticky Navbar */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gold-border);
  transition: transform 0.4s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header.nav-hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(184, 142, 24, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--text-white);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.brand-logo-img, .brand-logo img {
  height: 72px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  background: transparent;
  filter: contrast(1.08);
  transition: var(--transition-smooth);
}

.brand-logo:hover .brand-logo-img, .brand-logo:hover img {
  transform: scale(1.04);
}

.logo-badge {
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(184, 142, 24, 0.15), rgba(184, 142, 24, 0.05));
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

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

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link:hover::after {
  width: 100%;
}

/* Nav Dropdown Menu Styles */
.nav-item-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
  display: inline-block;
  color: var(--gold-light);
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  min-width: 260px;
  background: #FFFFFF;
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 0 20px rgba(184, 142, 24, 0.12);
  list-style: none;
  z-index: 200;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-menu li {
  margin: 3px 0;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(184, 142, 24, 0.08);
  color: var(--gold-light);
  transform: translateX(4px);
}

.dp-icon {
  font-size: 1.1rem;
}

/* Mega Dropdown Menu Styles */
.dropdown-menu.dropdown-mega {
  min-width: 640px;
  max-width: 700px;
  padding: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
}

.nav-item-dropdown:hover .dropdown-menu.dropdown-mega,
.nav-item-dropdown:focus-within .dropdown-menu.dropdown-mega {
  transform: translateX(-50%) translateY(4px);
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 10px 12px !important;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  border: 1px solid transparent;
  transition: all 0.2s ease !important;
  text-decoration: none;
}

.mega-item:hover {
  background: #F8FAFC !important;
  border-color: rgba(184, 142, 24, 0.25) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mega-item .dp-icon {
  font-size: 1.35rem;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}

.mega-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
}

.mega-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
}

.mega-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
  font-weight: 400;
}

.mega-badge {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(184, 142, 24, 0.1);
  border: 1px solid var(--gold-border);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  background: var(--gold-gradient-button);
  color: #000000;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-gold-lg);
  color: #000;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  background: rgba(17, 17, 17, 0.6);
  border: 1px solid var(--gold-border-strong);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.nav-signup-btn {
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-light);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 1.5rem;
  padding: 6px;
}

/* --------------------------------------------------------------------------
   6. SaaS Hero Section (Refined Enterprise Theme)
   -------------------------------------------------------------------------- */
.saas-hero {
  position: relative;
  padding: 80px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
}

.saas-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.saas-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #334155;
}

.sparkle-icon {
  font-size: 0.95rem;
}

.gst-badge {
  background: #2563EB;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.saas-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0F172A;
  max-width: 1050px;
}

.text-blue-gradient {
  background: linear-gradient(135deg, #1D4ED8, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-amber-gradient {
  background: linear-gradient(135deg, #F97316, #EA580C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.saas-hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.02em;
  max-width: 820px;
  margin: -6px 0 8px;
}

.saas-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
}

.btn-demo-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #F97316 0%, #3B82F6 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border: none;
  box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-demo-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px -4px rgba(59, 130, 246, 0.5);
}

.btn-whatsapp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #86EFAC;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.btn-whatsapp-pill:hover {
  background: #22C55E;
  color: #FFFFFF;
  border-color: #22C55E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.btn-pricing-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  color: #0F172A;
  border: 1px solid #CBD5E1;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.btn-pricing-pill:hover {
  border-color: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.btn-watch-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  color: #0F172A;
  border: 1px solid #CBD5E1;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.btn-watch-demo .play-icon {
  color: #2563EB;
  font-size: 0.85rem;
}

.btn-watch-demo:hover {
  background: #F1F5F9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.saas-stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 960px;
  margin-top: 28px;
  padding: 24px 32px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.07);
}

.stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.stat-col:not(:last-child) {
  border-right: 1px solid #E2E8F0;
}

.stat-col .stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #2563EB;
  line-height: 1;
}

.stat-col .stat-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748B;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Floating Widgets Bar */
.floating-widgets-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 9999;
}

.grace-voice-ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #1D4ED8, #2563EB);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.grace-voice-ai-pill:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.6);
}

.voice-equalizer {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 14px;
}

.voice-equalizer span {
  width: 3px;
  height: 100%;
  background: #FFFFFF;
  border-radius: 2px;
  animation: bounceEq 1.2s ease-in-out infinite alternate;
}

.voice-equalizer span:nth-child(1) { animation-delay: 0.1s; }
.voice-equalizer span:nth-child(2) { animation-delay: 0.3s; }
.voice-equalizer span:nth-child(3) { animation-delay: 0.5s; }
.voice-equalizer span:nth-child(4) { animation-delay: 0.2s; }

@keyframes bounceEq {
  0% { height: 4px; }
  100% { height: 14px; }
}

.whatsapp-floating-widget {
  position: relative;
  display: flex;
  align-items: center;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.whatsapp-floating-widget:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
  animation: pulseGlow 2s infinite;
}

.whatsapp-btn-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.7);
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Hero Visual / Interactive Mockup */
.hero-visual {
  position: relative;
  width: 100%;
  perspective: 1000px;
}

.glass-mockup {
  background: var(--bg-card);
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-card), 0 0 40px rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease-out;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--gold-border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.mockup-tabs {
  display: flex;
  gap: 8px;
}

.mockup-tab {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.mockup-tab.active {
  background: var(--gold-gradient-button);
  color: #000;
  font-weight: 700;
}

.mockup-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pos-preview-card {
  background: #F1F5F9;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 16px;
}

.preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
}

.preview-row:last-child {
  border-bottom: none;
}

.status-badge {
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
}

.status-success {
  background: rgba(39, 201, 63, 0.15);
  color: #27C93F;
  border: 1px solid rgba(39, 201, 63, 0.3);
}

.scroll-indicator {
  align-self: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* --------------------------------------------------------------------------
   7. Services Section
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 100px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

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

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

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

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: #1e293b;
  border: 1px solid var(--gold-border-strong);
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.filter-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  color: #FFFFFF;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
}

.filter-btn.active {
  background: var(--gold-gradient-button);
  color: #000000;
  font-weight: 800;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.45);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  will-change: transform;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--gold-primary), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.028);
  background: var(--bg-card-hover);
  border-color: var(--gold-border-strong);
  box-shadow: 0 20px 40px -10px rgba(184, 142, 24, 0.18), 0 0 30px rgba(212, 175, 55, 0.2);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.6rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--gold-gradient-button);
  color: #000;
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '✓';
  color: var(--gold-light);
  font-weight: 800;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: auto;
  transition: var(--transition-fast);
}

.card-link:hover {
  color: var(--text-white);
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   8. Features Section
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-glass-card {
  background: #FFFFFF;
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
  position: relative;
}

.feature-glass-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.25rem;
}

/* --------------------------------------------------------------------------
   9. Why Choose Us / Timeline Section
   -------------------------------------------------------------------------- */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-primary) 0%, transparent 100%);
}

.timeline-item {
  display: flex;
  gap: 24px;
  position: relative;
}

.timeline-node {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  z-index: 2;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 24px;
  flex: 1;
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  border-color: var(--gold-light);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

/* ROI Calculator Box */
.roi-calculator-box {
  background: #FFFFFF;
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-top: 60px;
  box-shadow: var(--shadow-card), 0 0 30px rgba(184, 142, 24, 0.08);
}

.roi-slider-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.roi-slider-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--gold-primary);
  height: 6px;
  background: #E2E8F0;
  border-radius: 4px;
  cursor: pointer;
}

.roi-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: #F1F5F9;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   10. Verified 5-Star Google Reviews Section
   -------------------------------------------------------------------------- */
.google-reviews-section {
  position: relative;
  background: var(--bg-card);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.google-rating-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  margin-bottom: 12px;
}

.google-g-icon {
  flex-shrink: 0;
}

.gr-badge-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1E293B;
}

.gr-badge-stars {
  color: #F59E0B;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.section-subtitle-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-max);
  margin: 40px auto 0;
}

.google-review-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.google-review-card:hover {
  transform: translateY(-6px);
  border-color: #CBD5E1;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.09);
}

.gr-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gr-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #FFFFFF;
  flex-shrink: 0;
}

.gr-avatar-pink { background: linear-gradient(135deg, #EC4899, #DB2777); }
.gr-avatar-blue { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.gr-avatar-purple { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.gr-avatar-green { background: linear-gradient(135deg, #10B981, #047857); }
.gr-avatar-orange { background: linear-gradient(135deg, #F97316, #C2410C); }
.gr-avatar-teal { background: linear-gradient(135deg, #14B8A6, #0F766E); }

.gr-author-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.gr-author-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
}

.gr-review-meta {
  font-size: 0.78rem;
  color: #64748B;
  font-weight: 500;
}

.gr-google-logo {
  margin-left: auto;
  opacity: 0.85;
}

.gr-stars-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px dashed #E2E8F0;
}

.gr-stars {
  color: #F59E0B;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.gr-verified-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #16A34A;
  background: #DCFCE7;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.gr-review-text {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.6;
  font-weight: 500;
  font-style: normal;
}

.gr-owner-reply {
  margin-top: 8px;
  padding: 12px 14px;
  background: #F8FAFC;
  border-left: 3px solid #2563EB;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gr-owner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #1E293B;
}

.gr-owner-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: #2563EB;
  background: #EFF6FF;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.gr-owner-text {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.45;
  font-style: italic;
}

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

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

/* --------------------------------------------------------------------------
   11. Pricing Section
   -------------------------------------------------------------------------- */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-content {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

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

.testimonial-card {
  width: 380px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.stars {
  color: var(--gold-light);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   11. Contact Section & Animated Forms
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.form-glass {
  background: var(--bg-card);
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-input, .form-select, .form-textarea {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-white);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-select option {
  background: #FFFFFF;
  color: #0F172A;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 15px rgba(184, 142, 24, 0.2);
  background: #FFFFFF;
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

/* --------------------------------------------------------------------------
   12. Footer Section
   -------------------------------------------------------------------------- */
.site-footer {
  background: #F1F5F9;
  border-top: 1px solid var(--gold-border);
  padding: 70px 24px 30px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h4 {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   13. Floating Action Buttons & Modals
   -------------------------------------------------------------------------- */
.floating-widgets,
.floating-widgets-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 9999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  position: relative;
}

.float-btn-whatsapp {
  background: #25D366;
}

.float-btn-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

.float-btn-ai {
  background: linear-gradient(135deg, #0A66FF 0%, #10B981 50%, #F59E0B 100%);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 30px rgba(10, 102, 255, 0.4), 0 0 15px rgba(245, 158, 11, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.float-btn-ai:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 12px 35px rgba(10, 102, 255, 0.6), 0 0 25px rgba(245, 158, 11, 0.6);
}

.float-ai-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1.6rem;
}

.ai-sparkle {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 0.85rem;
  animation: sparkleRotate 3s infinite linear;
}

@keyframes sparkleRotate {
  0% { transform: scale(0.8) rotate(0deg); opacity: 0.6; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
  100% { transform: scale(0.8) rotate(360deg); opacity: 0.6; }
}

.float-ai-badge {
  position: absolute;
  bottom: -6px;
  background: var(--gold-primary);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

/* WhatsApp-Style Grace AI Floating Conversation Widget */
.wa-chat-widget {
  position: fixed;
  right: 24px;
  bottom: 95px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 530px;
  max-height: calc(100vh - 120px);
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-chat-widget.active {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wa-chat-container {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22), 0 0 15px rgba(0, 128, 105, 0.15);
}

.wa-chat-header {
  background: linear-gradient(135deg, #008069 0%, #075E54 100%);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.wa-chat-avatar-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #005c4b;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1.2rem;
  border: 1.5px solid #FFFFFF;
  flex-shrink: 0;
}

.wa-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid #008069;
}

.wa-chat-header-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-left: 10px;
}

.wa-chat-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wa-chat-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.wa-verified-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #25D366;
  background: rgba(255, 255, 255, 0.2);
  padding: 1px 5px;
  border-radius: 4px;
}

.wa-chat-subtext {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.88);
}

.wa-chat-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #FFF;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.wa-chat-close-btn:hover {
  background: #FFFFFF;
  color: #008069;
}

.wa-quick-chips-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 12px;
  background: #F0F2F5;
  border-bottom: 1px solid #E9EDEF;
  flex-shrink: 0;
  scrollbar-width: none;
}

.wa-quick-chips-scroll::-webkit-scrollbar {
  display: none;
}

.wa-quick-chips-scroll .quick-tag-chip {
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  color: #111B21;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.wa-quick-chips-scroll .quick-tag-chip:hover {
  background: #008069;
  color: #FFFFFF;
  border-color: #008069;
}

.wa-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ECE5DD;
  background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 16px 16px;
}

.wa-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #008069;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: #FFF;
}

.chat-message-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}

.chat-message-row.user-row {
  justify-content: flex-end;
}

.chat-bubble {
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 0.88rem;
  max-width: 85%;
  line-height: 1.5;
  word-wrap: break-word;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.chat-bubble-ai {
  background: #FFFFFF;
  color: #111B21;
  border: 1px solid #E9EDEF;
  border-top-left-radius: 2px;
  align-self: flex-start;
}

.chat-bubble-ai strong {
  color: #075E54;
  font-weight: 700;
}

.chat-bubble-user {
  background: #DCF8C6;
  color: #111B21;
  font-weight: 500;
  border: 1px solid #C8E6C9;
  border-top-right-radius: 2px;
  align-self: flex-end;
}

.chat-timestamp {
  display: block;
  font-size: 0.65rem;
  color: #667781;
  text-align: right;
  margin-top: 4px;
}

.wa-chat-footer {
  padding: 10px 12px;
  background: #F0F2F5;
  border-top: 1px solid #E9EDEF;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.wa-input-wrapper {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 20px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
}

.wa-input-wrapper input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #111B21;
  font-size: 0.88rem;
}

.wa-input-wrapper input::placeholder {
  color: #667781;
}

.wa-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #008069;
  border: none;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  flex-shrink: 0;
}

.wa-send-btn:hover {
  background: #005c4b;
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .wa-chat-widget {
    right: 16px;
    bottom: 85px;
    width: calc(100vw - 32px);
    height: 480px;
  }
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-container {
  background: var(--bg-card);
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 580px;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-card), 0 0 40px rgba(212, 175, 55, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--gold-primary);
  color: #000;
}

/* Chat AI Modal */
.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 380px;
  min-height: 240px;
  overflow-y: auto;
  margin: 12px 0 16px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-lg);
}

.chat-message-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}

.chat-message-row.user-row {
  justify-content: flex-end;
}

.chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A66FF 0%, #10B981 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid var(--gold-primary);
  flex-shrink: 0;
}

.chat-bubble {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  max-width: 88%;
  line-height: 1.6;
  word-wrap: break-word;
}

.chat-bubble-user {
  background: var(--gold-gradient-button);
  color: #000;
  font-weight: 600;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-bubble-ai {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--gold-border);
  color: var(--text-white);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-bubble-ai strong {
  color: var(--gold-light);
}

.chat-bubble-ai ul, .chat-bubble-ai ol {
  margin: 8px 0 8px 18px;
}

.chat-bubble-ai li {
  margin-bottom: 4px;
}

/* --------------------------------------------------------------------------
   13.5 Case Studies & Enterprise Success Stories Section
   -------------------------------------------------------------------------- */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.case-study-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cs-image-wrap {
  width: 100%;
  height: 210px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.cs-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover .cs-image-wrap img {
  transform: scale(1.06);
}

.case-study-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-light);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.25);
}

.cs-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cs-industry-badge {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.cs-metric-highlight {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.3) 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34D399;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
}

.cs-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
  line-height: 1.35;
}

.cs-client-tag {
  font-size: 0.88rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.4;
}

.cs-client-tag em {
  color: var(--text-muted);
  font-style: normal;
  font-weight: 400;
}

.cs-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  margin-bottom: 22px;
}

.cs-block {
  border-radius: 10px;
  padding: 14px 16px;
  border-left: 4px solid transparent;
}

.cs-problem {
  background: rgba(220, 38, 38, 0.18);
  border: 1px solid rgba(248, 113, 113, 0.45);
  border-left: 5px solid #EF4444;
}

.cs-solution {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(52, 211, 153, 0.45);
  border-left: 5px solid #10B981;
}

.cs-block-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.cs-label-problem {
  background: #DC2626;
  color: #FFFFFF;
  border: 1px solid #EF4444;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.cs-label-solution {
  background: #059669;
  color: #FFFFFF;
  border: 1px solid #10B981;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.4);
}

.cs-block p {
  margin: 0;
  color: #FFFFFF !important;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}

.cs-problem p {
  color: #FFFFFF !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.cs-solution p {
  color: #FFFFFF !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.cs-results-box {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 10px;
  padding: 14px 16px;
}

.cs-results-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FCD34D;
  margin-bottom: 8px;
}

.cs-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cs-results-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.86rem;
  color: var(--text-white);
  line-height: 1.4;
}

.cs-results-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #10B981;
  font-weight: 800;
}

.cs-action-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 18px;
  font-size: 0.88rem;
}

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

/* --------------------------------------------------------------------------
   14. Scroll Reveal Classes & Responsive Adjustments
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .dropdown-menu.dropdown-mega {
    min-width: 480px;
    max-width: 520px;
  }
  .hero-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid, .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .brand-logo-img, .brand-logo img {
    height: 52px;
    max-width: 200px;
  }
  .nav-links {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .services-grid, .features-grid, .roi-results-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .site-header {
    padding: 10px 0;
  }
}
