/* =============================================
   Mevrick Solution — Custom CSS
   Replaces Tailwind compiled output.
   All design tokens, utility classes, and
   component styles match the original project.
   ============================================= */

/* ---------- Google Fonts (Geist via Inter fallback) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --background: #ffffff;
  --foreground: #1a1f2e;
  --card: #ffffff;
  --card-foreground: #1a1f2e;
  --popover: #ffffff;
  --popover-foreground: #1a1f2e;
  --primary: #2d3a6b;
  --primary-foreground: #fafafa;
  --secondary: #3d4e9c;
  --secondary-foreground: #fafafa;
  --muted: #f5f6f9;
  --muted-foreground: #6b7280;
  --accent: #5cb8d0;
  --accent-foreground: #1a1f2e;
  --destructive: #ef4444;
  --border: #e5e7eb;
  --input: #e5e7eb;
  --ring: #3d4e9c;
  --radius: 0.625rem;
  --dark-navy: #111827;
  --dark-navy-2: #151b2a;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { font-family: 'Inter', system-ui, -apple-system, sans-serif; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--background); color: var(--foreground); line-height: 1.5; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ---------- Scroll-bar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--muted); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 9999px; }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container { width: 100%; max-width: 80rem; margin-inline: auto; padding-inline: 1.5rem; }
.container-sm { width: 100%; max-width: 48rem; margin-inline: auto; padding-inline: 1.5rem; }
.container-md { width: 100%; max-width: 56rem; margin-inline: auto; padding-inline: 1.5rem; }

/* flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.flex-1 { flex: 1; }
.shrink-0 { flex-shrink: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-14 { gap: 3.5rem; }

/* grid */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }

/* spacing */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.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; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mx-auto { margin-inline: auto; }
.-mt-20 { margin-top: -5rem; }

.px-3 { padding-inline: 0.75rem; }
.px-4 { padding-inline: 1rem; }
.px-5 { padding-inline: 1.25rem; }
.px-6 { padding-inline: 1.5rem; }
.px-7 { padding-inline: 1.75rem; }
.py-1 { padding-block: 0.25rem; }
.py-1\.5 { padding-block: 0.375rem; }
.py-2 { padding-block: 0.5rem; }
.py-2\.5 { padding-block: 0.625rem; }
.py-3 { padding-block: 0.75rem; }
.py-3\.5 { padding-block: 0.875rem; }
.py-4 { padding-block: 1rem; }
.py-5 { padding-block: 1.25rem; }
.py-6 { padding-block: 1.5rem; }
.py-16 { padding-block: 4rem; }
.py-20 { padding-block: 5rem; }
.py-24 { padding-block: 6rem; }
.py-28 { padding-block: 7rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-28 { padding-bottom: 7rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pt-24 { padding-top: 6rem; }
.p-1\.5 { padding: 0.375rem; }

/* size */
.w-auto { width: auto; }
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-full { width: 100%; }
.min-w-\[180px\] { min-width: 180px; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-52 { height: 13rem; }
.h-full { height: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.min-h-\[600px\] { min-height: 600px; }

/* position */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.top-8 { top: 2rem; }
.left-4 { left: 1rem; }
.right-8 { right: 2rem; }
.-bottom-10 { bottom: -2.5rem; }
.-right-10 { right: -2.5rem; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.pointer-events-none { pointer-events: none; }

/* text */
.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; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.1\] { line-height: 1.1; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-\[0\.15em\] { letter-spacing: 0.15em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.resize-none { resize: none; }
.antialiased { -webkit-font-smoothing: antialiased; }

/* colors */
.text-white { color: #ffffff; }
.text-foreground { color: var(--foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }
.text-accent-foreground { color: var(--accent-foreground); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-white\/90 { color: rgba(255,255,255,0.9); }
.text-primary-foreground\/60 { color: rgba(250,250,250,0.6); }
.text-primary-foreground\/70 { color: rgba(250,250,250,0.7); }
.text-primary-foreground\/80 { color: rgba(250,250,250,0.8); }
.text-primary-foreground\/90 { color: rgba(250,250,250,0.9); }

.bg-background { background: var(--background); }
.bg-card { background: var(--card); }
.bg-primary { background: var(--primary); }
.bg-primary\/10 { background: rgba(45,58,107,0.1); }
.bg-accent { background: var(--accent); }
.bg-accent\/10 { background: rgba(92,184,208,0.1); }
.bg-accent\/15 { background: rgba(92,184,208,0.15); }
.bg-accent\/20 { background: rgba(92,184,208,0.2); }
.bg-muted\/40 { background: rgba(245,246,249,0.4); }
.bg-muted { background: var(--muted); }
.bg-white\/5 { background: rgba(255,255,255,0.05); }
.bg-white\/10 { background: rgba(255,255,255,0.1); }
.bg-white\/15 { background: rgba(255,255,255,0.15); }
.bg-white\/95 { background: rgba(255,255,255,0.95); }
.bg-\[oklch\(0\.16_0\.03_257\)\] { background: #131929; }
.bg-\[oklch\(0\.21_0\.05_257\)\] { background: #1a2237; }
.bg-\[oklch\(0\.21_0\.05_257_0\.8\)\] { background: rgba(26,34,55,0.8); }

.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-border { border-color: var(--border); }
.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-primary\/30 { border-color: rgba(45,58,107,0.3); }
.border-primary\/40 { border-color: rgba(45,58,107,0.4); }

/* radius */
.rounded-md { border-radius: calc(var(--radius) * 0.8); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) * 1.4); }
.rounded-2xl { border-radius: calc(var(--radius) * 1.8); }
.rounded-3xl { border-radius: calc(var(--radius) * 2.2); }
.rounded-full { border-radius: 9999px; }

/* shadow */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-primary\/10 { box-shadow: 0 25px 50px -12px rgba(45,58,107,0.1); }
.shadow-xl.shadow-primary\/10 { box-shadow: 0 20px 25px -5px rgba(45,58,107,0.1); }
.shadow-md.shadow-primary\/20 { box-shadow: 0 4px 6px -1px rgba(45,58,107,0.2); }
.shadow-xl.shadow-accent\/25 { box-shadow: 0 20px 25px -5px rgba(92,184,208,0.25); }

/* misc */
.hidden { display: none !important; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.outline-none { outline: none; }
.transition-colors { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease; }
.transition-transform { transition: transform 0.15s ease; }
.transition-all { transition: all 0.15s ease; }
.transition-shadow { transition: box-shadow 0.15s ease; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.fill-accent { fill: var(--accent); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }

/* hover utilities */
.hover\:text-primary:hover { color: var(--primary); }
.hover\:text-accent:hover { color: var(--accent); }
.hover\:bg-muted:hover { background: var(--muted); }
.hover\:bg-accent:hover { background: var(--accent); }
.hover\:bg-white\/10:hover { background: rgba(255,255,255,0.1); }
.hover\:border-accent:hover { border-color: var(--accent); }
.hover\:border-primary\/30:hover { border-color: rgba(45,58,107,0.3); }
.hover\:border-primary\/40:hover { border-color: rgba(45,58,107,0.4); }
.hover\:text-accent-foreground:hover { color: var(--accent-foreground); }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.hover\:-translate-y-1:hover { transform: translateY(-4px); }
.hover\:-translate-y-2:hover { transform: translateY(-8px); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-150 { transform: scale(1.5); }
.group:hover .group-hover\:bg-primary { background: var(--primary); }
.group:hover .group-hover\:text-primary-foreground { color: var(--primary-foreground); }
.group:hover .group-hover\:translate-x-0\.5 { transform: translateX(2px) translateY(-2px); }

/* focus */
.focus\:border-primary:focus { border-color: var(--primary); }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(45,58,107,0.2); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in-view { opacity: 0; }
.animate-in-view.in-view {
  animation: fade-in-up 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* testimonial fade */
[data-t-quote], [data-t-name], [data-t-role] {
  transition: opacity 0.2s ease;
}

/* FAQ body */
[data-faq-body] {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: #131929;
  padding: 0.5rem 1rem;
  text-align: center;
}
.announcement-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.9);
  font-style: italic;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar {
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 80rem;
  margin-inline: auto;
  padding: 0.75rem 1.5rem;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 3rem; width: auto; object-fit: contain; }

.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.9375rem;
  font-weight: 700;
  transition: color 0.15s;
  color: var(--foreground);
}
.nav-link:hover, .nav-link.active { color: var(--primary); }

.nav-cta {
  display: none;
}

.nav-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: calc(var(--radius) * 0.8);
  background: var(--primary);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-foreground);
  box-shadow: 0 4px 6px -1px rgba(45,58,107,0.2);
  transition: transform 0.15s;
}
.nav-cta a:hover { transform: scale(1.05); }

.menu-btn {
  border-radius: var(--radius);
  padding: 0.5rem;
  color: var(--foreground);
}
.menu-btn svg { width: 1.5rem; height: 1.5rem; }

.mobile-menu {
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 1rem 1.5rem;
}
.mobile-menu .flex { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-link {
  border-radius: var(--radius);
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  display: block;
}
.mobile-link:hover { background: var(--muted); }
.mobile-link.active { background: rgba(45,58,107,0.1); color: var(--primary); }
.mobile-cta {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: calc(var(--radius) * 0.8);
  background: var(--primary);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-foreground);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(270deg, #0f172a, #1e293b, #1e1b4b, #111827);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  mix-blend-mode: overlay;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.45) 50%, rgba(45, 58, 107, 0.8) 100%);
  background-size: 200% 200%;
  animation: gradientShift 12s ease-in-out infinite alternate;
}
.hero-inner {
  position: relative;
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding: 6rem 1.5rem;
}
.hero-content { max-width: 48rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}
.hero-badge svg { color: var(--accent); width: 1rem; height: 1rem; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #ffffff;
  text-wrap: balance;
}
.hero-desc {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(255,255,255,0.7);
}
.hero-btns {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--accent);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-foreground);
  box-shadow: 0 20px 25px -5px rgba(92,184,208,0.25);
  transition: transform 0.15s;
}
.btn-accent:hover { transform: scale(1.05); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  transition: background 0.15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ============================================
   METRICS
   ============================================ */
.metrics-section {
  position: relative;
  z-index: 10;
  margin-top: -5rem;
  padding-inline: 1.5rem;
}
.metrics-card {
  max-width: 72rem;
  margin-inline: auto;
  border-radius: calc(var(--radius) * 2.2);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(45,58,107,0.1);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: calc(var(--radius) * 1.8);
  background: rgba(45,58,107,0.1);
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.metric-icon svg { width: 1.5rem; height: 1.5rem; }
.metric-value {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--foreground);
  line-height: 1;
}
.metric-label {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

/* ============================================
   SECTION HEADING
   ============================================ */
.section-heading { display: flex; flex-direction: column; gap: 1rem; }
.section-heading.center { align-items: center; text-align: center; }
.section-heading.left { align-items: flex-start; text-align: left; }

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: rgba(45,58,107,0.1);
  padding: 0.25rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow-badge.dark {
  background: rgba(255,255,255,0.1);
  color: var(--accent);
}

.section-title {
  max-width: 42rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--foreground);
  text-wrap: balance;
}
.section-title.dark { color: #ffffff; }
.section-desc {
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}
.section-desc.dark { color: rgba(255,255,255,0.7); }

/* ============================================
   HOME ABOUT CARDS
   ============================================ */
.home-about { background: var(--background); padding: 6rem 1.5rem; }
.about-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.8);
  background: #1a2237;
  padding: 2rem;
  color: #ffffff;
  transition: transform 0.3s;
}
.about-card:hover { transform: translateY(-4px); }
.about-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: calc(var(--radius) * 1.4);
  background: rgba(92,184,208,0.2);
  color: var(--accent);
}
.about-card-icon svg { width: 1.5rem; height: 1.5rem; }
.about-card h3 { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 700; line-height: 1.375; }
.about-card p { margin-top: 1rem; font-size: 0.875rem; line-height: 1.625; color: rgba(255,255,255,0.7); }
.about-card-blob {
  pointer-events: none;
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 9999px;
  background: rgba(92,184,208,0.1);
  transition: transform 0.5s;
}
.about-card:hover .about-card-blob { transform: scale(1.5); }

/* ============================================
   HOME SERVICES
   ============================================ */
.home-services { background: rgba(245,246,249,0.4); padding: 6rem 1.5rem; }
.service-card {
  display: flex;
  flex-direction: column;
  border-radius: calc(var(--radius) * 1.8);
  background: var(--primary);
  padding: 2rem;
  color: var(--primary-foreground);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-8px); }
.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: calc(var(--radius) * 1.4);
  background: rgba(255,255,255,0.15);
}
.service-card-icon svg { width: 1.75rem; height: 1.75rem; }
.service-card h3 { margin-top: 1.5rem; font-size: 1.125rem; font-weight: 700; text-align: center; }
.service-card p { margin-top: 0.75rem; flex: 1; text-align: center; font-size: 0.875rem; line-height: 1.625; color: rgba(250,250,250,0.75); }
.service-card-btn {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) * 0.8);
  background: rgba(255,255,255,0.15);
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-foreground);
  transition: background 0.15s, color 0.15s;
}
.service-card-btn:hover { background: var(--accent); color: var(--accent-foreground); }

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--background); padding: 6rem 1.5rem; }
.faq-item {
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.8);
  border: 1px solid var(--border);
  background: var(--card);
}
.faq-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
}
.faq-btn span:first-child { font-weight: 600; color: var(--foreground); }
.faq-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: rgba(45,58,107,0.1);
  color: var(--primary);
}
.faq-icon-wrap svg { width: 1rem; height: 1rem; }
.faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted-foreground); }

/* ============================================
   BLOG
   ============================================ */
.blog-section { background: rgba(245,246,249,0.4); padding: 6rem 1.5rem; }
.blog-card {
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.8);
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.blog-img-wrap { position: relative; height: 13rem; overflow: hidden; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  border-radius: 9999px;
  background: var(--accent);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-foreground);
}
.blog-body { padding: 1.5rem; }
.blog-date { font-size: 0.75rem; font-weight: 500; color: var(--muted-foreground); }
.blog-title { margin-top: 0.5rem; font-size: 1.125rem; font-weight: 600; line-height: 1.375; color: var(--foreground); }
.blog-read-more {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.blog-read-more svg { width: 1rem; height: 1rem; transition: transform 0.15s; }
.blog-card:hover .blog-read-more svg { transform: translate(2px, -2px); }

/* ============================================
   PARTNERS
   ============================================ */
.partners-section { background: var(--background); padding: 5rem 1.5rem; }
.partner-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 5rem;
  flex: 1;
  border-radius: calc(var(--radius) * 1.4);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  transition: border-color 0.15s, color 0.15s;
}
.partner-badge:hover { border-color: rgba(45,58,107,0.4); color: var(--primary); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--primary);
  padding: 4rem 1.5rem 2.5rem;
  color: var(--primary-foreground);
}
.footer-grid { display: grid; gap: 3rem; }
.footer-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.footer-section-title svg { width: 1.25rem; height: 1.25rem; color: var(--accent); }
.footer-office { font-size: 0.875rem; line-height: 1.625; color: rgba(250,250,250,0.7); }
.footer-office strong { color: var(--primary-foreground); font-weight: 600; }
.footer-link {
  display: block;
  font-size: 0.875rem;
  color: rgba(250,250,250,0.7);
  transition: color 0.15s;
  margin-bottom: 0.5rem;
}
.footer-link:hover { color: var(--accent); }
.cert-badge {
  display: inline-block;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(250,250,250,0.9);
  margin: 0.25rem;
}
.footer-logo {
  height: 2.75rem;
  width: auto;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.95);
  padding: 0.375rem;
  margin-top: 1.5rem;
}
.footer-socials { display: flex; justify-content: center; gap: 1rem; margin-top: 3rem; }
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(250,250,250,0.8);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.social-btn:hover { border-color: var(--accent); background: var(--accent); color: var(--accent-foreground); }
.social-btn svg { width: 1rem; height: 1rem; }
.footer-copy {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(250,250,250,0.6);
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
  position: relative;
  overflow: hidden;
  background: #131929;
}
.page-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #131929, rgba(19,25,41,0.7), transparent);
}
.page-banner-inner {
  position: relative;
  max-width: 80rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 4rem 1.5rem 5rem;
}
.page-banner h1 {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
}
.page-banner p { max-width: 28rem; font-size: 0.875rem; line-height: 1.625; color: rgba(255,255,255,0.7); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro-section, .about-mvv-section { background: var(--background); padding: 6rem 1.5rem; }
.about-trusted-section { background: rgba(245,246,249,0.4); padding: 6rem 1.5rem; }
.about-img {
  width: 100%;
  border-radius: calc(var(--radius) * 1.8);
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.about-img img { width: 100%; height: auto; object-fit: cover; }
.offerings-list { display: flex; flex-direction: column; gap: 0.75rem; }
.offering-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}
.offering-item svg { flex-shrink: 0; width: 1.25rem; height: 1.25rem; color: var(--primary); }
.why-eyebrow {
  display: inline-flex;
  border-radius: 9999px;
  background: rgba(45,58,107,0.1);
  padding: 0.25rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
}
.mvv-card {
  border-radius: calc(var(--radius) * 1.8);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  transition: box-shadow 0.15s;
}
.mvv-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.mvv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: calc(var(--radius) * 1.4);
  background: rgba(45,58,107,0.1);
  color: var(--primary);
}
.mvv-icon svg { width: 1.5rem; height: 1.5rem; }
.mvv-card h3 { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 700; color: var(--foreground); }
.mvv-card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted-foreground); }

/* ============================================
   METRICS (About page variant - no negative margin)
   ============================================ */
.metrics-about {
  background: rgba(245,246,249,0.4);
  padding: 0 1.5rem 7rem;
}
.metrics-about .metrics-section { margin-top: 0; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--background); padding: 6rem 1.5rem; }
.testimonial-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) * 2.2);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.testimonial-quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  color: rgba(45,58,107,0.1);
}
.testimonial-stars { display: flex; gap: 0.25rem; }
.testimonial-stars svg { width: 1.25rem; height: 1.25rem; fill: var(--accent); color: var(--accent); }
.testimonial-quote-text {
  margin-top: 1.5rem;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.625;
  color: var(--foreground);
  text-wrap: pretty;
}
.testimonial-footer {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--primary);
  font-weight: 600;
  color: var(--primary-foreground);
  font-size: 1.125rem;
}
.testimonial-name { font-weight: 600; color: var(--foreground); }
.testimonial-role { font-size: 0.875rem; color: var(--muted-foreground); }
.testimonial-nav { display: flex; gap: 0.5rem; }
.testimonial-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  color: var(--foreground);
  transition: background 0.15s;
}
.testimonial-nav-btn:hover { background: var(--muted); }
.testimonial-nav-btn svg { width: 1.25rem; height: 1.25rem; }
.testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.testimonial-dot {
  height: 0.5rem;
  border-radius: 9999px;
  transition: width 0.2s, background 0.2s;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-section { background: rgba(245,246,249,0.4); padding: 6rem 1.5rem; }
.service-grid-card {
  border-radius: calc(var(--radius) * 1.8);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  transition: transform 0.3s, border-color 0.15s, box-shadow 0.3s;
}
.service-grid-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45,58,107,0.3);
  box-shadow: 0 20px 25px -5px rgba(45,58,107,0.1);
}
.service-grid-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: calc(var(--radius) * 1.4);
  background: rgba(45,58,107,0.1);
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: background 0.15s, color 0.15s;
}
.service-grid-icon svg { width: 1.5rem; height: 1.5rem; }
.service-grid-card:hover .service-grid-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}
.service-grid-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--foreground); }
.service-grid-card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted-foreground); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: rgba(245,246,249,0.4); padding: 6rem 1.5rem; }
.contact-form-card {
  border-radius: calc(var(--radius) * 2.2);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.form-input {
  border-radius: calc(var(--radius) * 1.4);
  border: 1px solid var(--border);
  background: var(--background);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(45,58,107,0.2); }
.form-input::placeholder { color: var(--muted-foreground); }
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: calc(var(--radius) * 1.8);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.25rem;
  transition: box-shadow 0.15s;
}
.contact-info-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: calc(var(--radius) * 1.4);
  background: rgba(92,184,208,0.15);
  color: var(--accent);
}
.contact-info-icon svg { width: 1.25rem; height: 1.25rem; }
.contact-info-label { font-size: 0.75rem; color: var(--muted-foreground); }
.contact-info-value { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.office-card {
  border-radius: calc(var(--radius) * 1.8);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.25rem;
}
.office-city {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.office-city svg { width: 1rem; height: 1rem; color: var(--primary); }
.office-addr { font-size: 0.75rem; line-height: 1.625; color: var(--muted-foreground); }
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  border-radius: 9999px;
  background: var(--primary);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-foreground);
  transition: transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-submit:hover { transform: scale(1.02); }
.btn-submit svg { width: 1rem; height: 1rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 640px) {
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:p-10 { padding: 2.5rem; }
  .sm\:p-12 { padding: 3rem; }
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
  .sm\:py-28 { padding-block: 7rem; }
  .sm\:py-32 { padding-block: 8rem; }
  .sm\:py-20 { padding-block: 5rem; }
  .sm\:text-2xl { font-size: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .menu-btn { display: none; }
  .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-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .metrics-grid { grid-template-columns: repeat(5, 1fr); }
  .lg\:pt-8 { padding-top: 2rem; }
  .lg\:text-6xl { font-size: 3.75rem; }
  .metric-value { font-size: 2.5rem; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ============================================
   GRID LAYOUT HELPERS (replaces inline class combos)
   ============================================ */

/* Tablet — 2-col */
@media (min-width: 768px) {
  .home-about .container > div[style*="grid"]:last-child,
  .home-services .container > div[style*="grid"],
  .blog-section .container > div[style*="grid"],
  .about-mvv-section .container > div[style*="grid"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-section .container > div[style*="grid"] > div[style*="grid"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Desktop — 3-col overrides */
@media (min-width: 1024px) {
  .about-intro-section .container > div[style*="grid"],
  .about-trusted-section .container[style*="grid"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-mvv-section .container > div[style*="grid"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-about .container > div[style*="grid"]:last-child {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-about .container > div[style*="grid"]:first-child {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-services .container > div[style*="grid"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .blog-section .container > div[style*="grid"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .faq-section .container-md > div[style*="grid"]:not(.section-heading) {
    grid-template-columns: 1fr;
  }
  .contact-section .container > div[style*="grid"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonials-section .container-md > div[style*="grid"] {
    grid-template-columns: 1fr;
  }
}

/* Metrics about page: remove negative margin */
.metrics-about .metrics-section { margin-top: 0; padding-top: 2.5rem; }

/* Metrics card inside about */
.metrics-about .metrics-card { margin-top: 0; }

/* ============================================
   UPGRADED HOMEPAGE HERO & DMS MOCKUP
   ============================================ */

.text-glow-accent {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(92, 184, 208, 0.45);
}

.hero-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-mesh-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 5%;
  right: 5%;
  background: radial-gradient(circle, rgba(92, 184, 208, 0.15) 0%, rgba(45, 58, 107, 0.03) 60%, transparent 100%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-social-proof {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid #1a2237;
  margin-left: -0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.2);
}
.proof-avatar:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}
.proof-text strong {
  color: #ffffff;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.dms-mockup {
  width: 100%;
  max-width: 480px;
  background: rgba(26, 34, 55, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  position: relative;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1rem;
}

.mockup-dots {
  display: flex;
  gap: 0.35rem;
}

.mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.mockup-search {
  flex: 1;
  max-width: 200px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.mockup-search svg {
  opacity: 0.5;
}

.mockup-badge-live {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.45rem;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.mockup-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}

.mockup-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.stat-trend {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.trend-up {
  color: #10b981;
}
.trend-ok {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
}

.mockup-activity {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.activity-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.activity-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
}

.activity-details {
  flex: 1;
  min-width: 0;
}

.activity-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-meta {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
}

.activity-progress-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin-top: 0.25rem;
  overflow: hidden;
}

.activity-progress-fill {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  position: relative;
}

.activity-status {
  font-size: 0.7rem;
  font-weight: 700;
}

.icon-spin-pulse {
  color: var(--accent) !important;
  animation: spinPulse 2s linear infinite;
}

.mockup-float-card {
  position: absolute;
  background: rgba(30, 41, 67, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.625rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.shield-card {
  bottom: -1rem;
  left: -2rem;
  z-index: 10;
}

.speed-card {
  top: 35%;
  right: -2.5rem;
  z-index: 10;
}

.mockup-float-card h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.mockup-float-card p {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.15rem;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseInd 1.5s infinite;
}

/* Animations */
@keyframes pulseInd {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.animate-float-slow {
  animation: floatSlow 6s ease-in-out infinite;
}

.animate-float-fast {
  animation: floatFast 5s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatFast {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes spinPulse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 5;
  transition: color 0.2s;
}
.hero-scroll-indicator:hover {
  color: #ffffff;
}

.scroll-text {
  font-size: 0.65rem;
}

.mouse-icon {
  width: 20px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: wheelAnim 1.6s ease-in-out infinite;
}

@keyframes wheelAnim {
  0% { opacity: 0; transform: translateY(-3px); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translateY(6px); }
}

/* Desktop Grid layout overrides for Hero */
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }
}

/* ============================================
   BLOG LISTING PAGE
   ============================================ */

.blog-listing-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.blog-controls-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  background: var(--card);
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 15px -3px rgba(45,58,107,0.05);
}

@media (min-width: 768px) {
  .blog-controls-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
  }
}

.blog-search-box {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.blog-search-input {
  width: 100%;
}

.blog-search-box input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 0.8);
  background: var(--background);
  color: var(--foreground);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.blog-search-box input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,58,107,0.1);
}

.blog-search-box svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  color: var(--muted-foreground);
  pointer-events: none;
}

.blog-category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--background);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn:hover {
  background: var(--muted);
  color: var(--foreground);
}
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 6px -1px rgba(45,58,107,0.2);
}

.blog-grid-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  transition: opacity 0.25s ease;
}

@media (min-width: 768px) {
  .blog-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-page-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(45,58,107,0.1);
}

.blog-page-img-wrap {
  position: relative;
  height: 14rem;
  overflow: hidden;
}
.blog-page-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-page-card:hover .blog-page-img-wrap img {
  transform: scale(1.05);
}

.blog-page-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.15);
}

.blog-page-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-page-date {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.blog-page-title {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--foreground);
}

.blog-page-desc {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--muted-foreground);
  flex: 1;
}

.blog-page-footer {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.blog-page-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap 0.2s;
  cursor: pointer;
}
.blog-page-read-more svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s;
}
.blog-page-card:hover .blog-page-read-more {
  gap: 0.5rem;
}
.blog-page-card:hover .blog-page-read-more svg {
  transform: translate(2px, -2px);
}

/* No Results section */
.blog-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 480px;
  margin: 4rem auto;
}
.blog-no-results svg {
  width: 4rem;
  height: 4rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  opacity: 0.6;
}
.blog-no-results h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}
.blog-no-results p {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.blog-page-card.hidden {
  display: none !important;
}

.blog-no-results.hidden {
  display: none !important;
}

/* ============================================
   EXTRAORDINARY GRADIENT EFFECTS & ANIMS
   ============================================ */

/* Text Gradient Headers */
.section-title {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary); /* Fallback */
}

.hero h1 {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animated moving background gradient on Hero */
.hero {
  background: linear-gradient(270deg, #111827, #1e293b, #151d30, #13243d);
  background-size: 800% 800%;
  animation: gradientShift 18s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Gradient Buttons & Glow effects */
.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #46abbf 100%) !important;
  border: none !important;
  color: #111827 !important;
  box-shadow: 0 4px 20px rgba(92, 184, 208, 0.4) !important;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease !important;
}
.btn-accent:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 10px 25px rgba(92, 184, 208, 0.6) !important;
}

.nav-cta a, .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
  border: none !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(45, 58, 107, 0.3) !important;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease !important;
}
.nav-cta a:hover, .btn-primary:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 22px rgba(45, 58, 107, 0.45) !important;
}

/* Glowing card interactive animations */
.service-grid-card, .blog-card, .blog-page-card, .metrics-card, .faq-item {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-grid-card:hover {
  transform: translateY(-6px);
  border-color: rgba(92, 184, 208, 0.35);
  box-shadow: 0 20px 30px -10px rgba(92, 184, 208, 0.18);
}

.blog-card:hover, .blog-page-card:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 78, 156, 0.25);
  box-shadow: 0 20px 35px -10px rgba(45, 58, 107, 0.18);
}

.metrics-card {
  background: linear-gradient(135deg, rgba(26, 34, 55, 0.85) 0%, rgba(17, 24, 39, 0.95) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.35) !important;
}
.metrics-card:hover {
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(92, 184, 208, 0.25) !important;
}

/* ============================================
   REDESIGNED PREMIUM FOOTER
   ============================================ */

.site-footer {
  background: linear-gradient(180deg, #111827 0%, #0c101a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 3rem 0;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(92, 184, 208, 0.06) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

/* Newsletter card */
.footer-newsletter-card {
  background: linear-gradient(135deg, rgba(26, 34, 55, 0.8) 0%, rgba(45, 58, 107, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2.25rem;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.25), inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.newsletter-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.newsletter-info p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.35rem;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) * 0.8);
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  color: #ffffff;
  transition: all 0.3s;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(92, 184, 208, 0.15);
}

.btn-gradient-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #3ca0b8 100%);
  border: none;
  border-radius: calc(var(--radius) * 0.8);
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(92, 184, 208, 0.3);
}

.btn-gradient-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(92, 184, 208, 0.45);
}

@media (min-width: 1024px) {
  .footer-newsletter-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 3.5rem;
  }
  
  .newsletter-info {
    max-width: 52%;
  }

  .newsletter-form {
    flex-direction: row;
    max-width: 440px;
    gap: 0.5rem;
  }
}

/* Footer layout cols */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 1fr 0.9fr;
    gap: 2.5rem;
  }
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo-brand {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
  background: #ffffff;
  padding: 0.4rem 0.75rem;
  border-radius: calc(var(--radius) * 0.8);
}

.brand-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-circle-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-circle-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

.social-circle-btn:hover {
  color: #111827;
  background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(92, 184, 208, 0.35);
}

/* Widget Header Titles */
.footer-widget-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

/* Links column with underlines */
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  list-style: none;
}

.footer-links-list a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.25s ease;
}

.footer-links-list a svg {
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
}

.footer-links-list a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-links-list a:hover svg {
  opacity: 1;
  transform: translateX(0);
}

/* Contact List */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.contact-icon-wrapper {
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.contact-icon-wrapper svg {
  width: 1rem;
  height: 1rem;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}

.contact-value {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: color 0.2s;
  margin-top: 0.15rem;
}
.contact-value:hover {
  color: var(--accent);
}

/* Offices */
.footer-offices-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.footer-offices-list li {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.footer-offices-list li strong {
  display: block;
  font-size: 0.875rem;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

/* Bottom Copy & Certification Bar */
.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2.5rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .footer-bottom-bar {
    flex-direction: row;
    padding-top: 2rem;
  }
}

.footer-certificates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cert-badge-glow {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 0 10px rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.cert-badge-glow:hover {
  background: rgba(92, 184, 208, 0.08);
  border-color: rgba(92, 184, 208, 0.25);
  color: var(--accent);
}

.footer-copyright-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ============================================
   BLOG POST DETAIL PAGES
   ============================================ */

.blog-detail-layout {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.blog-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .blog-detail-grid {
    grid-template-columns: 2fr 1fr;
    max-width: 80rem;
    margin-inline: auto;
  }
}

/* Article Body */
.blog-article-body {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

@media (min-width: 768px) {
  .blog-article-body {
    padding: 3.5rem;
  }
}

.blog-article-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.blog-author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-author-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--foreground);
}

.blog-author-role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.1rem;
}

.blog-article-main-title {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--foreground);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.blog-featured-image-wrapper {
  width: 100%;
  border-radius: calc(var(--radius) * 0.8);
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.blog-featured-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

/* Rich Text Formatting */
.blog-article-rich-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(26, 31, 46, 0.85);
}

.blog-article-rich-text p {
  margin-bottom: 1.5rem;
}

.blog-article-rich-text p.lead {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--primary);
  margin-bottom: 2rem;
}

.blog-article-rich-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.blog-article-rich-text blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--muted);
  border-left: 4px solid var(--accent);
  border-radius: 0 calc(var(--radius) * 0.8) calc(var(--radius) * 0.8) 0;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--primary);
}

.blog-article-rich-text ul, .blog-article-rich-text ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-article-rich-text li {
  margin-bottom: 0.5rem;
  position: relative;
}

.blog-article-rich-text ul li::before {
  content: '•';
  color: var(--accent);
  font-weight: 900;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Sidebar Widgets */
.blog-article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: sticky;
  top: 6rem;
}

.sidebar-widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.widget-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 32px;
  height: 2px;
  background: var(--primary);
}

.widget-posts-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}

.widget-post-link {
  display: block;
  transition: all 0.2s;
}

.widget-post-category {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.widget-post-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--foreground);
  margin-top: 0.25rem;
  transition: color 0.15s;
}
.widget-post-link:hover .widget-post-title {
  color: var(--primary);
}

.widget-post-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.sidebar-social-share {
  display: flex;
  gap: 0.75rem;
}

.share-btn {
  flex: 1;
  height: 2.75rem;
  border-radius: calc(var(--radius) * 0.8);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.25s;
  background: var(--background);
}

.share-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

.share-btn:hover {
  color: var(--primary);
  background: rgba(45, 58, 107, 0.05);
  border-color: rgba(45, 58, 107, 0.2);
  transform: translateY(-2px);
}

.sidebar-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
  transition: all 0.25s;
  text-align: center;
}
.sidebar-back-btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}
.sidebar-back-btn:hover {
  background: rgba(45, 58, 107, 0.03);
  color: var(--secondary);
}
.sidebar-back-btn:hover svg {
  transform: translateX(-4px);
}

/* ============================================
   METRICS SECTION (Solid Background)
   ============================================ */

.metrics-section {
  background: linear-gradient(135deg, #1a2237 0%, #111827 50%, #0f172a 100%);
  padding: 5rem 1.5rem;
}

/* About page variant — full width, no container constraints */
.metrics-about {
  background: linear-gradient(135deg, #1a2237 0%, #111827 50%, #0f172a 100%);
}

.metrics-about .metrics-section {
  padding: 5rem 0;
  background: none;
}

.metrics-about .metrics-card {
  max-width: 100%;
  border-radius: 0;
  border-left: none;
  border-right: none;
  padding: 3.5rem 2rem;
}

.metrics-card {
  max-width: 80rem;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: calc(var(--radius) * 2);
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.metric-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: calc(var(--radius) * 1.2);
  background: linear-gradient(135deg, rgba(92, 184, 208, 0.15) 0%, rgba(61, 78, 156, 0.15) 100%);
  border: 1px solid rgba(92, 184, 208, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.metric-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.metric-value {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ffffff;
}

.metric-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   PARTNER BADGES (Enhanced Visibility)
   ============================================ */

.partner-badge {
  border: 2px solid rgba(45, 58, 107, 0.15) !important;
  background: var(--card) !important;
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}

.partner-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92, 184, 208, 0.03) 0%, rgba(45, 58, 107, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.partner-badge:hover {
  border-color: rgba(92, 184, 208, 0.4) !important;
  color: var(--primary) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px -5px rgba(92, 184, 208, 0.15) !important;
}

.partner-badge:hover::before {
  opacity: 1;
}

/* ============================================
   CUSTOM IT CURSOR EFFECT
   ============================================ */

/* Custom cursor dot that follows the mouse */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.2s;
  box-shadow: 0 0 12px rgba(92, 184, 208, 0.6), 0 0 30px rgba(92, 184, 208, 0.2);
  mix-blend-mode: screen;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(92, 184, 208, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s,
              background 0.25s,
              opacity 0.25s;
}

/* Hover states — enlarge on interactive elements */
.cursor-dot.cursor-hover {
  width: 6px;
  height: 6px;
  background: #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.cursor-ring.cursor-hover {
  width: 52px;
  height: 52px;
  border-color: rgba(92, 184, 208, 0.5);
  background: rgba(92, 184, 208, 0.06);
}

/* Text input state */
.cursor-dot.cursor-text {
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(92, 184, 208, 0.4);
}

.cursor-ring.cursor-text {
  opacity: 0;
}

/* Hide custom cursor on touch devices and small screens */
@media (hover: none), (max-width: 768px) {
  .cursor-dot, .cursor-ring {
    display: none !important;
  }
}

