/* ==========================================================================
   ŁUKASZ MARCINIAK | B2B LANDING PAGE - MODERN ENTERPRISE DESIGN SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette: Obsidian, Deep Slate, Microsoft Cobalt/Azure */
  --bg-primary: #090d16;
  --bg-secondary: #0f172a;
  --bg-surface: rgba(15, 23, 42, 0.7);
  --bg-surface-hover: rgba(30, 41, 59, 0.85);
  --bg-glass: rgba(15, 23, 42, 0.65);
  
  --primary-300: #7dd3fc;
  --primary-400: #38bdf8;
  --primary-500: #0078d4;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-glow: rgba(0, 120, 212, 0.35);

  --indigo-300: #a5b4fc;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #8b5cf6;
  --purple-600: #7c3aed;
  
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.25);

  --rose-300: #fda4af;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;

  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-highlight: rgba(56, 189, 248, 0.4);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  --shadow-glow: 0 0 35px -5px rgba(0, 120, 212, 0.3);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: 0 20px 40px -15px rgba(0, 120, 212, 0.25);
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--slate-100);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background: radial-gradient(circle at 50% 0%, #111827 0%, var(--bg-primary) 70%);
}

::selection {
  background: var(--primary-500);
  color: #ffffff;
}

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

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

/* Ambient Background Glows */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.bg-glow-1 {
  top: -100px;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 120, 212, 0.45) 0%, rgba(99, 102, 241, 0.1) 70%);
}

.bg-glow-2 {
  top: 35%;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(6, 182, 212, 0.05) 70%);
}

.bg-glow-3 {
  bottom: 10%;
  left: 20%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(0, 120, 212, 0.05) 70%);
}

/* --------------------------------------------------------------------------
   3. Utility Classes (Layout, Sizing, Colors, Borders, Flex, Grid)
   -------------------------------------------------------------------------- */

/* Layout & Containers */
.max-w-7xl { max-width: 80rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.pointer-events-none { pointer-events: none; }

/* Spacing */
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.p-3\.5 { padding: 0.875rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }

.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pt-32 { padding-top: 8rem; }

.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }

.pl-3 { padding-left: 0.75rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-2\.5 { margin-top: 0.625rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mt-28 { margin-top: 7rem; }
.mt-32 { margin-top: 8rem; }

@media (min-width: 640px) {
  .sm\:mt-16 { margin-top: 4rem; }
  .sm\:mt-20 { margin-top: 5rem; }
  .sm\:mt-24 { margin-top: 6rem; }
  .sm\:mt-28 { margin-top: 7rem; }
}

.mt-auto { margin-top: auto !important; }
.my-0\.5 { margin-top: 0.125rem; margin-bottom: 0.125rem; }
.-my-1 { margin-top: -0.25rem; margin-bottom: -0.25rem; }
.-ml-3 { margin-left: -0.75rem; }

/* Sizing */
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-20 { height: 5rem; }
.max-h-\[85vh\] { max-height: 85vh; }
.w-0\.5 { width: 0.125rem; }
.h-4 { height: 1rem; }
.w-1\.5 { width: 0.375rem; } .h-1\.5 { height: 0.375rem; }
.w-2 { width: 0.5rem; } .h-2 { height: 0.5rem; }
.w-3 { width: 0.75rem; } .h-3 { height: 0.75rem; }
.w-3\.5 { width: 0.875rem; } .h-3\.5 { height: 0.875rem; }
.w-4 { width: 1rem; } .h-4 { height: 1rem; }
.w-5 { width: 1.25rem; } .h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; } .h-6 { height: 1.5rem; }
.w-8 { width: 2rem; } .h-8 { height: 2rem; }
.w-10 { width: 2.5rem; } .h-10 { height: 2.5rem; }
.w-12 { width: 3rem; } .h-12 { height: 3rem; }
.w-16 { width: 4rem; } .h-16 { height: 4rem; }
.w-24 { width: 6rem; } .h-24 { height: 6rem; }

/* Display & Flexbox/Grid */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.grid { display: grid; }
.hidden { display: none !important; }
.block { display: block; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-stretch { align-items: stretch; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-wrap { flex-wrap: wrap; }
.whitespace-nowrap { white-space: nowrap; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-y-2\.5 { row-gap: 0.625rem; }
.gap-x-6 { column-gap: 1.5rem; }

.space-y-1\.5 > * + * { margin-top: 0.375rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Positioning */
.relative { position: relative; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.top-6 { top: 1.5rem; }
.right-6 { right: 1.5rem; }
.inset-0 { inset: 0; }
.-inset-1 { top: -0.25rem; right: -0.25rem; bottom: -0.25rem; left: -0.25rem; }
.-bottom-6 { bottom: -1.5rem; }
.-left-6 { left: -1.5rem; }
.z-50 { z-index: 50; }

/* Borders & Radius */
.rounded-md { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-md); }
.rounded-xl { border-radius: var(--radius-lg); }
.rounded-2xl { border-radius: var(--radius-xl); }
.rounded-3xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: 9999px; }
.rounded-\[14px\] { border-radius: 14px; }

.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; border-top-style: solid; border-bottom-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }

.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/15 { border-color: rgba(255, 255, 255, 0.15); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-slate-700 { border-color: var(--slate-700); }
.border-slate-700\/40 { border-color: rgba(51, 65, 85, 0.4); }
.border-slate-700\/50 { border-color: rgba(51, 65, 85, 0.5); }
.border-slate-700\/60 { border-color: rgba(51, 65, 85, 0.6); }
.border-slate-800 { border-color: var(--slate-800); }
.border-slate-800\/50 { border-color: rgba(30, 41, 59, 0.5); }
.border-slate-800\/60 { border-color: rgba(30, 41, 59, 0.6); }
.border-slate-800\/80 { border-color: rgba(30, 41, 59, 0.8); }

.border-primary-400\/30 { border-color: rgba(56, 189, 248, 0.3); }
.border-primary-500 { border-color: var(--primary-500); }
.border-primary-500\/20 { border-color: rgba(0, 120, 212, 0.2); }
.border-primary-500\/30 { border-color: rgba(0, 120, 212, 0.3); }
.border-primary-500\/40 { border-color: rgba(0, 120, 212, 0.4); }
.border-primary-500\/50 { border-color: rgba(0, 120, 212, 0.5); }

.border-emerald-500\/20 { border-color: rgba(16, 185, 129, 0.2); }
.border-emerald-500\/30 { border-color: rgba(16, 185, 129, 0.3); }
.border-emerald-500\/40 { border-color: rgba(16, 185, 129, 0.4); }

.border-rose-500\/20 { border-color: rgba(244, 63, 94, 0.2); }
.border-rose-500\/30 { border-color: rgba(244, 63, 94, 0.3); }

.border-amber-500\/20 { border-color: rgba(245, 158, 11, 0.2); }
.border-amber-500\/30 { border-color: rgba(245, 158, 11, 0.3); }

.border-indigo-500\/20 { border-color: rgba(99, 102, 241, 0.2); }
.border-indigo-500\/30 { border-color: rgba(99, 102, 241, 0.3); }

.border-purple-500\/20 { border-color: rgba(139, 92, 246, 0.2); }
.border-purple-500\/30 { border-color: rgba(139, 92, 246, 0.3); }

.border-cyan-500\/20 { border-color: rgba(6, 182, 212, 0.2); }
.border-cyan-500\/30 { border-color: rgba(6, 182, 212, 0.3); }

.border-blue-500\/20 { border-color: rgba(59, 130, 246, 0.2); }

/* Typography */
.font-sans { font-family: var(--font-sans); }
.font-mono { font-family: var(--font-mono); }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-\[10px\] { font-size: 0.625rem; line-height: 0.875rem; }
.text-\[11px\] { font-size: 0.6875rem; line-height: 0.9375rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.15\] { line-height: 1.15; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* Colors */
.text-white { color: #ffffff; }
.text-slate-100 { color: var(--slate-100); }
.text-slate-200 { color: var(--slate-200); }
.text-slate-300 { color: var(--slate-300); }
.text-slate-400 { color: var(--slate-400); }
.text-slate-500 { color: var(--slate-500); }

.text-primary-300 { color: var(--primary-300); }
.text-primary-400 { color: var(--primary-400); }
.text-emerald-300 { color: var(--emerald-300); }
.text-emerald-400 { color: var(--emerald-400); }
.text-rose-300 { color: var(--rose-300); }
.text-rose-400 { color: var(--rose-400); }
.text-amber-300 { color: var(--amber-300); }
.text-amber-400 { color: var(--amber-400); }
.text-indigo-300 { color: var(--indigo-300); }
.text-indigo-400 { color: var(--indigo-400); }
.text-purple-300 { color: var(--purple-300); }
.text-purple-400 { color: var(--purple-400); }
.text-cyan-300 { color: var(--cyan-300); }
.text-cyan-400 { color: var(--cyan-400); }
.text-blue-300 { color: #93c5fd; }
.text-blue-400 { color: #60a5fa; }

/* Backgrounds */
.bg-dark { background-color: var(--bg-primary); }
.bg-slate-800 { background-color: var(--slate-800); }
.bg-slate-800\/60 { background-color: rgba(30, 41, 59, 0.6); }
.bg-slate-800\/80 { background-color: rgba(30, 41, 59, 0.8); }
.bg-slate-900 { background-color: var(--slate-900); }
.bg-slate-900\/40 { background-color: rgba(15, 23, 42, 0.4); }
.bg-slate-900\/60 { background-color: rgba(15, 23, 42, 0.6); }
.bg-slate-900\/80 { background-color: rgba(15, 23, 42, 0.8); }
.bg-slate-900\/90 { background-color: rgba(15, 23, 42, 0.9); }
.bg-slate-900\/95 { background-color: rgba(15, 23, 42, 0.95); }
.bg-slate-950 { background-color: var(--slate-950); }
.bg-slate-950\/80 { background-color: rgba(2, 6, 23, 0.8); }

.bg-primary-500 { background-color: var(--primary-500); }
.bg-primary-500\/10 { background-color: rgba(0, 120, 212, 0.1); }
.bg-primary-500\/15 { background-color: rgba(0, 120, 212, 0.15); }
.bg-primary-500\/20 { background-color: rgba(0, 120, 212, 0.2); }

.bg-emerald-400 { background-color: var(--emerald-400); }
.bg-emerald-500\/10 { background-color: rgba(16, 185, 129, 0.1); }
.bg-emerald-500\/20 { background-color: rgba(16, 185, 129, 0.2); }
.bg-emerald-500\/80 { background-color: rgba(16, 185, 129, 0.8); }
.bg-emerald-950\/40 { background-color: rgba(6, 78, 59, 0.4); }

.bg-rose-500\/10 { background-color: rgba(244, 63, 94, 0.1); }
.bg-rose-500\/80 { background-color: rgba(244, 63, 94, 0.8); }

.bg-amber-500\/10 { background-color: rgba(245, 158, 11, 0.1); }
.bg-amber-500\/20 { background-color: rgba(245, 158, 11, 0.2); }
.bg-amber-500\/80 { background-color: rgba(245, 158, 11, 0.8); }

.bg-indigo-500\/10 { background-color: rgba(99, 102, 241, 0.1); }
.bg-indigo-500\/15 { background-color: rgba(99, 102, 241, 0.15); }
.bg-indigo-500\/20 { background-color: rgba(99, 102, 241, 0.2); }

.bg-purple-500\/10 { background-color: rgba(139, 92, 246, 0.1); }
.bg-purple-500\/15 { background-color: rgba(139, 92, 246, 0.15); }
.bg-purple-500\/20 { background-color: rgba(139, 92, 246, 0.2); }
.bg-purple-900\/30 { background-color: rgba(88, 28, 135, 0.3); }

.bg-cyan-500\/10 { background-color: rgba(6, 182, 212, 0.1); }
.bg-cyan-500\/15 { background-color: rgba(6, 182, 212, 0.15); }
.bg-cyan-500\/20 { background-color: rgba(6, 182, 212, 0.2); }
.bg-cyan-900\/30 { background-color: rgba(22, 78, 99, 0.3); }
.bg-cyan-950\/40 { background-color: rgba(8, 51, 68, 0.4); }

.bg-blue-500\/10 { background-color: rgba(59, 130, 246, 0.1); }
.bg-blue-500\/20 { background-color: rgba(59, 130, 246, 0.2); }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops, #0078d4, #6366f1)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops, #0078d4, #6366f1)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops, #0078d4, #6366f1)); }

.from-primary-500 { --tw-gradient-from: var(--primary-500); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 120, 212, 0)); }
.from-primary-500\/30 { --tw-gradient-from: rgba(0, 120, 212, 0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 120, 212, 0)); }
.from-primary-900\/40 { --tw-gradient-from: rgba(12, 74, 110, 0.4); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(12, 74, 110, 0)); }
.from-primary-900\/60 { --tw-gradient-from: rgba(12, 74, 110, 0.6); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(12, 74, 110, 0)); }
.from-primary-950\/20 { --tw-gradient-from: rgba(8, 47, 73, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(8, 47, 73, 0)); }
.from-purple-900\/30 { --tw-gradient-from: rgba(88, 28, 135, 0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 28, 135, 0)); }
.from-cyan-900\/30 { --tw-gradient-from: rgba(22, 78, 99, 0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(22, 78, 99, 0)); }

.via-primary-600 { --tw-gradient-stops: var(--tw-gradient-from, #0078d4), var(--primary-600), var(--tw-gradient-to, #6366f1); }
.via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from, #0078d4), var(--indigo-600), var(--tw-gradient-to, #6366f1); }
.via-slate-800\/60 { --tw-gradient-stops: var(--tw-gradient-from, #0078d4), rgba(30, 41, 59, 0.6), var(--tw-gradient-to, #6366f1); }
.via-slate-900 { --tw-gradient-stops: var(--tw-gradient-from, #0078d4), var(--slate-900), var(--tw-gradient-to, #6366f1); }
.via-slate-900\/80 { --tw-gradient-stops: var(--tw-gradient-from, #0078d4), rgba(15, 23, 42, 0.8), var(--tw-gradient-to, #6366f1); }

.to-indigo-500\/30 { --tw-gradient-to: rgba(99, 102, 241, 0.3); }
.to-indigo-600 { --tw-gradient-to: var(--indigo-600); }
.to-indigo-950\/40 { --tw-gradient-to: rgba(30, 27, 75, 0.4); }
.to-indigo-950\/80 { --tw-gradient-to: rgba(30, 27, 75, 0.8); }
.to-purple-600 { --tw-gradient-to: var(--purple-600); }
.to-slate-900\/90 { --tw-gradient-to: rgba(15, 23, 42, 0.9); }
.to-slate-950 { --tw-gradient-to: var(--slate-950); }

/* Backdrop Blur & Shadows */
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.backdrop-blur-2xl { backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); }
.blur-2xl { filter: blur(40px); }
.opacity-60 { opacity: 0.6; }

.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6); }
.shadow-primary-500\/20 { box-shadow: 0 10px 25px -5px rgba(0, 120, 212, 0.2); }
.shadow-primary-500\/25 { box-shadow: 0 10px 25px -5px rgba(0, 120, 212, 0.25); }
.shadow-primary-500\/30 { box-shadow: 0 10px 25px -5px rgba(0, 120, 212, 0.3); }
.shadow-primary-600\/30 { box-shadow: 0 10px 25px -5px rgba(2, 132, 199, 0.3); }

/* Transitions */
.transition-all { transition-property: all; }
.transition-colors { transition-property: color, background-color, border-color; }
.transition-transform { transition-property: transform; }
.duration-300 { transition-duration: 300ms; }

/* Interactive Hover States */
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-primary-300:hover { color: var(--primary-300); }
.hover\:text-slate-300:hover { color: var(--slate-300); }
.hover\:bg-slate-800\/60:hover { background-color: rgba(30, 41, 59, 0.6); }
.hover\:bg-slate-800\/80:hover { background-color: rgba(30, 41, 59, 0.8); }
.hover\:border-primary-500:hover { border-color: var(--primary-500); }
.hover\:border-primary-500\/40:hover { border-color: rgba(0, 120, 212, 0.4); }
.hover\:border-primary-500\/50:hover { border-color: rgba(0, 120, 212, 0.5); }
.hover\:border-indigo-500\/40:hover { border-color: rgba(99, 102, 241, 0.4); }
.hover\:border-indigo-500\/50:hover { border-color: rgba(99, 102, 241, 0.5); }
.hover\:border-emerald-500\/40:hover { border-color: rgba(16, 185, 129, 0.4); }
.hover\:border-emerald-500\/50:hover { border-color: rgba(16, 185, 129, 0.5); }
.hover\:border-cyan-500\/50:hover { border-color: rgba(6, 182, 212, 0.5); }
.hover\:border-purple-500\/40:hover { border-color: rgba(139, 92, 246, 0.4); }
.hover\:border-purple-500\/50:hover { border-color: rgba(139, 92, 246, 0.5); }
.hover\:border-amber-500\/40:hover { border-color: rgba(245, 158, 11, 0.4); }
.hover\:border-amber-500\/50:hover { border-color: rgba(245, 158, 11, 0.5); }
.hover\:border-rose-500\/40:hover { border-color: rgba(244, 63, 94, 0.4); }
.hover\:-translate-y-1:hover { transform: translateY(-4px); }
.hover\:-translate-y-1\.5:hover { transform: translateY(-6px); }
.hover\:underline:hover { text-decoration: underline; }

/* Group Hover */
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:rotate-12 { transform: rotate(12deg); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(4px); }
.group:hover .group-hover\:text-primary-300 { color: var(--primary-300); }
.group:hover .group-hover\:text-indigo-300 { color: var(--indigo-300); }
.group:hover .group-hover\:text-emerald-300 { color: var(--emerald-300); }
.group:hover .group-hover\:text-cyan-300 { color: var(--cyan-300); }
.group:hover .group-hover\:text-purple-300 { color: var(--purple-300); }
.group:hover .group-hover\:text-amber-300 { color: var(--amber-300); }
.group:hover .group-hover\:text-rose-300 { color: var(--rose-300); }

/* Focus Rings */
.focus\:outline-none:focus { outline: none; }
.focus-visible\:outline-none:focus-visible { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--primary-500); }
.focus-visible\:ring-2:focus-visible { box-shadow: 0 0 0 2px var(--primary-400); }

/* --------------------------------------------------------------------------
   4. Responsive Breakpoint Rules
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:p-10 { padding: 2.5rem; }
  .sm\:flex { display: flex; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-start { justify-content: flex-start; }
  .sm\:text-left { text-align: left; }
  .sm\:w-auto { width: auto; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sm\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}

@media (min-width: 768px) {
  .md\:pt-40 { padding-top: 10rem; }
  .md\:pb-28 { padding-bottom: 7rem; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none !important; }
  .md\:flex-row { flex-direction: row; }
  .md\:text-left { text-align: left; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-5 { grid-column: span 5 / span 5; }
  .md\:col-span-6 { grid-column: span 6 / span 6; }
  .md\:col-span-12 { grid-column: span 12 / span 12; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:flex { display: flex; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-6 { grid-column: span 6 / span 6; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:col-span-12 { grid-column: span 12 / span 12; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1.15; }
}

.col-span-full { grid-column: 1 / -1; }

/* --------------------------------------------------------------------------
   5. Glassmorphism & Complex Components
   -------------------------------------------------------------------------- */
.glass-card {
  background: var(--bg-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-card-hover);
}

/* Header & Navigation (Enterprise B2B) */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5rem;
  z-index: 50;
  background: rgba(9, 13, 22, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-normal);
}

#main-header.scrolled {
  background: rgba(9, 13, 22, 0.95);
  border-bottom-color: rgba(56, 189, 248, 0.25);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.7);
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-300);
  transition: color var(--transition-fast);
  padding: 0.375rem 0.5rem;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-400), var(--primary-400));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

/* Mobile Drawer Menu */
#mobile-menu {
  background: rgba(9, 13, 22, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none !important; }
  .lg\:flex { display: flex !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: inherit;
  line-height: 1.25;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-500) 0%, #1d4ed8 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px -4px var(--primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(0, 120, 212, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(30, 41, 59, 0.8);
  color: #ffffff;
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(51, 65, 85, 0.9);
  border-color: var(--primary-400);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   6. Interactive Elements & Range Sliders
   -------------------------------------------------------------------------- */
.slider-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #1e293b;
  outline: none;
  transition: opacity var(--transition-fast);
}

.slider-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-400);
  cursor: pointer;
  border: 3px solid #ffffff;
  box-shadow: 0 0 12px var(--primary-500);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.slider-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 18px var(--primary-400);
}

.slider-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-400);
  cursor: pointer;
  border: 3px solid #ffffff;
  box-shadow: 0 0 12px var(--primary-500);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

/* Form Inputs */
.form-input {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.25);
  background: rgba(15, 23, 42, 0.98);
}

.form-input::placeholder {
  color: var(--slate-500);
}

/* Booking Date & Slot Pills */
.date-pill, .slot-pill {
  padding: 0.6rem 0.5rem;
  border-radius: var(--radius-md);
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--border-subtle);
  color: var(--slate-300);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.date-pill:hover, .slot-pill:hover {
  border-color: var(--primary-400);
  background: rgba(30, 41, 59, 0.9);
  color: #ffffff;
}

.date-pill.active, .slot-pill.active {
  background: var(--primary-500);
  border-color: var(--primary-400);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 14px var(--primary-glow);
}

.slot-pill.busy {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  text-decoration: line-through !important;
  background: rgba(15, 23, 42, 0.4) !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
  color: #64748b !important;
  pointer-events: none !important;
}

/* Mockup Tabs */
.mockup-tab-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.mockup-tab-btn.active {
  background: var(--primary-500);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 120, 212, 0.4);
}

/* --------------------------------------------------------------------------
   7. FAQ Accordions
   -------------------------------------------------------------------------- */
.faq-item {
  transition: border-color var(--transition-normal), background var(--transition-normal);
}

.faq-item.active {
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(15, 23, 42, 0.9);
}

.faq-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

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

/* --------------------------------------------------------------------------
   8. Keyframe Animations
   -------------------------------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes pingSubtle {
  0% { transform: scale(1); opacity: 0.8; }
  80%, 100% { transform: scale(2.2); opacity: 0; }
}

.animate-fade-in {
  animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-bounce-subtle {
  animation: bounceSubtle 3s ease-in-out infinite;
}

.animate-ping {
  animation: pingSubtle 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #090d16;
}

::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
  border: 2px solid #090d16;
}

::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* --------------------------------------------------------------------------
   9. Comparison & Governance & Cooperation Models Components
   -------------------------------------------------------------------------- */
/* Floating Header Badges for Pricing & Comparison */
.floating-card-badge {
  position: absolute !important;
  top: -14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  -webkit-transform: translateX(-50%) !important;
  z-index: 30 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.375rem !important;
  padding: 0.35rem 1.1rem !important;
  border-radius: 9999px !important;
  background: linear-gradient(90deg, #22d3ee 0%, #0078d4 100%) !important;
  color: #020617 !important;
  font-size: 0.6875rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  white-space: nowrap !important;
  box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.45) !important;
  border: 1px solid rgba(165, 243, 252, 0.6) !important;
  pointer-events: none !important;
}

.-top-3\.5 { top: -0.875rem !important; }
.-top-4 { top: -1rem !important; }
.left-1\/2 { left: 50% !important; }
.-translate-x-1\/2 { transform: translateX(-50%) !important; -webkit-transform: translateX(-50%) !important; }

/* Expert Trust Card */
.expert-trust-card {
  background: rgba(15, 23, 42, 0.7) !important;
  background-color: #0f172a !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 1rem !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5) !important;
  transition: border-color var(--transition-normal);
}

.expert-trust-card:hover {
  border-color: rgba(56, 189, 248, 0.3) !important;
}

.contact-pill-badge {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0.75rem !important;
  padding: 0.65rem 1rem !important;
  border-radius: 0.625rem !important;
  background: rgba(30, 41, 59, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #e2e8f0 !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}

.contact-pill-badge:hover {
  background: rgba(30, 41, 59, 0.95) !important;
  border-color: rgba(56, 189, 248, 0.5) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 120, 212, 0.2) !important;
}

/* Microsoft Bookings Portal Showcase Card */
.bookings-portal-card {
  background: rgba(15, 23, 42, 0.92) !important;
  background-color: #0f172a !important;
  border: 1px solid rgba(56, 189, 248, 0.35) !important;
  border-radius: 1rem !important;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  position: relative !important;
  overflow: hidden !important;
}

.bookings-portal-card:hover {
  border-color: rgba(56, 189, 248, 0.6) !important;
}

.bookings-feature-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.65rem 0.85rem !important;
  border-radius: 0.75rem !important;
  background: rgba(30, 41, 59, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #e2e8f0 !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
}

/* Interactive Demo Action Button */
.demo-action-btn {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.625rem !important;
  padding: 0.75rem 1rem !important;
  border-radius: 0.75rem !important;
  background: #0f172a !important;
  background-color: #0f172a !important;
  border: 1px solid rgba(56, 189, 248, 0.45) !important;
  color: #38bdf8 !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
  text-decoration: none !important;
}

.demo-action-btn:hover {
  background: #1e293b !important;
  background-color: #1e293b !important;
  border-color: #38bdf8 !important;
  color: #ffffff !important;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.35) !important;
  transform: translateY(-1.5px) !important;
}

.demo-action-btn .play-icon {
  width: 20px !important;
  height: 20px !important;
  border-radius: 9999px !important;
  background: rgba(56, 189, 248, 0.15) !important;
  color: #38bdf8 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.625rem !important;
  flex-shrink: 0 !important;
  transition: all 0.2s ease !important;
}

.demo-action-btn:hover .play-icon {
  background: #0078d4 !important;
  color: #ffffff !important;
  transform: scale(1.1) !important;
}

.compare-card-etat {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(244, 63, 94, 0.2);
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  padding-top: 3rem !important;
  position: relative !important;
}

.compare-card-marshmaflow {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(6, 182, 212, 0.15) 100%);
  border: 1px solid rgba(56, 189, 248, 0.5);
  box-shadow: 0 15px 35px -5px rgba(0, 120, 212, 0.3);
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  padding-top: 3rem !important;
  position: relative !important;
  overflow: visible !important;
}

.governance-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-normal);
}

.governance-card:hover {
  border-color: rgba(56, 189, 248, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -5px rgba(6, 182, 212, 0.2);
}

.package-card {
  position: relative;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  padding-top: 3rem !important;
  transition: all var(--transition-normal);
}

.package-card:hover {
  transform: translateY(-6px);
}

.package-card-featured {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.35) 50%, rgba(6, 182, 212, 0.15) 100%);
  border: 1px solid rgba(56, 189, 248, 0.5);
  box-shadow: 0 20px 45px -10px rgba(0, 120, 212, 0.35);
  padding-top: 3rem !important;
}

/* --------------------------------------------------------------------------
   10. Microsoft Power Apps Model-Driven / Fluent 2 Light Mode Demo Modal
   -------------------------------------------------------------------------- */
.fluent-modal-overlay {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.powerapps-modal-window {
  background: #ffffff;
  color: #201f1e;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  border-radius: 4px;
  border: 1px solid #d2d0ce;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24), 0 1px 4px rgba(0, 0, 0, 0.12);
  height: 88vh !important;
  max-height: 860px !important;
  min-height: 560px !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  position: relative !important;
}

.powerapps-workspace {
  flex: 1 1 0% !important;
  min-height: 0 !important;
  height: 100% !important;
  overflow: hidden !important;
}

.powerapps-silo {
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.powerapps-silo-scroll {
  flex: 1 1 0% !important;
  min-height: 0 !important;
  overflow-y: auto !important;
}

.powerapps-header {
  background: #0078d4;
  color: #ffffff;
  height: 44px;
}

.powerapps-command-bar {
  background: #f3f2f1;
  border-bottom: 1px solid #edebe9;
  height: 44px;
}

.powerapps-cmd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  background: transparent;
  color: #201f1e;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}

.powerapps-cmd-btn:hover {
  background: #edebe9;
}

.powerapps-cmd-btn:active {
  background: #e1dfdd;
}

/* DetailList Grid (Tabela Faktur) */
.powerapps-grid-header {
  background: #faf9f8;
  border-bottom: 1px solid #edebe9;
  color: #605e5c;
  font-size: 0.75rem;
  font-weight: 600;
}

.powerapps-grid-row {
  background: #ffffff;
  border-bottom: 1px solid #f3f2f1;
  border-left: 3px solid transparent;
  transition: background 0.1s ease;
  cursor: pointer;
}

.powerapps-grid-row:hover {
  background: #f3f2f1;
}

.powerapps-grid-row.active {
  background: #edebe9;
  border-left-color: #0078d4;
}

/* Business Process Flow (BPF) */
.powerapps-bpf-stage {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 2px;
}

.powerapps-bpf-active {
  background: #0078d4;
  color: #ffffff;
}

.powerapps-bpf-completed {
  background: #dff6dd;
  color: #107c10;
  border: 1px solid #bad80a;
}

.powerapps-bpf-inactive {
  background: #f3f2f1;
  color: #605e5c;
  border: 1px solid #edebe9;
}

/* Buttons */
.powerapps-btn-primary {
  background: #0078d4;
  color: #ffffff;
  border: 1px solid #0078d4;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.powerapps-btn-primary:hover {
  background: #106ebe;
  border-color: #106ebe;
}

.powerapps-btn-outline {
  background: #ffffff;
  color: #0078d4;
  border: 1px solid #0078d4;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.powerapps-btn-outline:hover {
  background: #f3f2f1;
}

.powerapps-btn-danger {
  background: #ffffff;
  color: #a80000;
  border: 1px solid #a80000;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.powerapps-btn-danger:hover {
  background: #fde7e9;
}

/* Form Fields */
.powerapps-field-box {
  background: #faf9f8;
  border: 1px solid #edebe9;
  border-radius: 2px;
  padding: 0.45rem 0.65rem;
}

.powerapps-select,
.powerapps-input {
  background: #ffffff;
  border: 1px solid #d2d0ce;
  border-radius: 2px;
  padding: 0.4rem 0.6rem;
  font-size: 0.8125rem;
  color: #201f1e;
  width: 100%;
  transition: border-color 0.15s ease;
}

.powerapps-select:focus,
.powerapps-input:focus {
  outline: none;
  border-color: #0078d4;
}

/* 3-Silos Layout Elements */
.powerapps-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.powerapps-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.powerapps-invoice-card {
  background: #faf9f8;
  border: 1px solid #edebe9;
  border-radius: 2px;
  transition: all 0.15s ease;
  cursor: pointer;
}

.powerapps-invoice-card:hover {
  background: #f3f2f1;
  border-color: #c7e0f4;
}

.powerapps-invoice-card.active {
  background: #ffffff !important;
  border: 2px solid #0078d4 !important;
  box-shadow: 0 1px 4px rgba(0, 120, 212, 0.15);
}

.powerapps-pdf-sheet {
  background: #ffffff;
  border: 1px solid #edebe9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  font-family: 'Segoe UI', -apple-system, Roboto, sans-serif;
}

/* MessageBar Notification */
.powerapps-messagebar {
  background: #dff6dd;
  border-left: 4px solid #107c10;
  color: #107c10;
  animation: slideDownToast 0.25s ease-out forwards;
}

.powerapps-messagebar.error {
  background: #fde7e9;
  border-left-color: #a80000;
  color: #a80000;
}

/* PO Picker Dialog */
#ksef-po-picker-dialog {
  position: absolute !important;
  inset: 0 !important;
  z-index: 100 !important;
  background-color: rgba(15, 23, 42, 0.65) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem !important;
}

#ksef-po-picker-dialog.hidden {
  display: none !important;
}

.po-picker-modal-card {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #201f1e !important;
  border: 1px solid #c8c6c4 !important;
  border-radius: 4px !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  width: 100% !important;
  max-width: 540px !important;
  max-height: 85vh !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  position: relative !important;
  z-index: 101 !important;
}

.po-picker-modal-header {
  background: #0078d4 !important;
  background-color: #0078d4 !important;
  color: #ffffff !important;
  padding: 0.65rem 1rem !important;
}

.po-picker-modal-sub {
  background: #faf9f8 !important;
  background-color: #faf9f8 !important;
  border-bottom: 1px solid #edebe9 !important;
  padding: 0.75rem 1rem !important;
}

.po-picker-modal-body {
  background: #f3f2f1 !important;
  background-color: #f3f2f1 !important;
  padding: 0.65rem !important;
  overflow-y: auto !important;
  flex: 1 1 auto !important;
}

.po-picker-modal-footer {
  background: #faf9f8 !important;
  background-color: #faf9f8 !important;
  border-top: 1px solid #edebe9 !important;
  padding: 0.65rem 1rem !important;
}

.po-picker-item {
  background: #ffffff !important;
  background-color: #ffffff !important;
  padding: 10px 12px !important;
  border-radius: 2px !important;
  border: 1px solid #edebe9 !important;
  margin-bottom: 6px !important;
  transition: all 0.15s ease !important;
  cursor: pointer !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

.po-picker-item:hover {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #0078d4 !important;
  box-shadow: 0 2px 6px rgba(0, 120, 212, 0.2) !important;
  transform: translateY(-1px) !important;
}

.po-picker-item.selected {
  background: #eff6fc !important;
  background-color: #eff6fc !important;
  border-color: #0078d4 !important;
  border-left-width: 3px !important;
}

.po-dialog-close-btn {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  width: 32px !important;
  height: 32px !important;
  font-size: 16px !important;
  font-weight: bold !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  transition: background 0.15s ease !important;
  opacity: 1 !important;
}

.po-dialog-close-btn:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

.po-picker-search-input {
  background: #ffffff !important;
  border: 1px solid #d2d0ce !important;
  border-radius: 2px !important;
  padding: 0.45rem 0.75rem 0.45rem 2.25rem !important;
  font-size: 0.75rem !important;
  color: #201f1e !important;
  width: 100% !important;
  line-height: normal !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.15s ease !important;
}

.po-picker-search-input:focus {
  outline: none !important;
  border-color: #0078d4 !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05), 0 0 0 1px #0078d4 !important;
}

/* ==============================================================================
   14. MOBILE & SMALL SCREENS (320px - 640px) RWD HARDENING
   ============================================================================== */

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
  box-sizing: border-box !important;
}

*, *::before, *::after {
  box-sizing: border-box !important;
}

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

@media (max-width: 640px) {
  /* Prevent horizontal layout shifts and overflow */
  * {
    max-width: 100% !important;
  }

  /* Global Container Padding for Mobile */
  .max-w-7xl, .max-w-5xl, .max-w-4xl, .max-w-3xl, .max-w-2xl, .max-w-xl, .max-w-lg, .max-w-md {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    width: 100% !important;
  }

  /* Typography scale down for small viewports (320px - 430px) */
  h1, .text-5xl, .text-4xl, .text-3xl {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
    text-wrap: balance !important;
  }

  h2 {
    font-size: 1.45rem !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    text-wrap: balance !important;
  }

  h3 {
    font-size: 1.15rem !important;
    line-height: 1.35 !important;
    word-break: break-word !important;
  }

  /* Buttons & CTA flexibility */
  #nav-cta-btn {
    display: none !important;
  }

  #mobile-menu-btn {
    background: rgba(30, 41, 59, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #f1f5f9 !important;
    border-radius: 0.625rem !important;
    width: 42px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
  }

  #mobile-menu-btn:hover {
    background: rgba(30, 41, 59, 0.95) !important;
    border-color: rgba(56, 189, 248, 0.5) !important;
    color: #38bdf8 !important;
  }

  .btn, .btn-primary, .btn-secondary, .demo-action-btn, #main-bookings-cta-btn, .powerapps-btn-primary {
    white-space: normal !important;
    text-align: center !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0.75rem 0.85rem !important;
    font-size: 0.8125rem !important;
    line-height: 1.35 !important;
    word-break: break-word !important;
    text-wrap: balance !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .btn span, .demo-action-btn span {
    white-space: normal !important;
    word-break: break-word !important;
  }

  /* Card padding and containment */
  .glass-card, .service-card, .pain-card, .package-card, .compare-card-etat, .compare-card-marshmaflow, .bookings-portal-card {
    padding: 1.25rem 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .floating-card-badge {
    font-size: 0.5625rem !important;
    padding: 0.25rem 0.6rem !important;
    white-space: nowrap !important;
    top: -12px !important;
  }

  /* Decorative glow blobs containment */
  .bg-glow-1, .bg-glow-2, .bg-glow-3 {
    width: 250px !important;
    height: 250px !important;
    opacity: 0.2 !important;
    filter: blur(60px) !important;
    right: 0 !important;
    left: auto !important;
  }

  /* Bookings feature items */
  .bookings-feature-item {
    font-size: 0.75rem !important;
    padding: 0.5rem 0.65rem !important;
    word-break: break-word !important;
  }
}

