@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --background: #f8f9fc;
  --background-alt: #ffffff;
  --foreground: #0d1526;
  --border: #e2e8f0;
  --border-light: rgba(226, 232, 240, 0.6);

  --primary: #0c1a3d;
  --primary-mid: #152553;
  --primary-light: #1e3a7a;
  --primary-foreground: #f0f6ff;

  --secondary: #0ea5e9;
  --secondary-deep: #0284c7;
  --secondary-glow: rgba(14, 165, 233, 0.15);
  --secondary-foreground: #ffffff;

  --accent: #6366f1;
  --accent-light: rgba(99, 102, 241, 0.1);

  --muted: #f1f5f9;
  --muted-foreground: #64748b;

  --success: #10b981;
  --warning: #f59e0b;

  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 0.375rem;
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(13, 21, 38, 0.06), 0 1px 3px rgba(13, 21, 38, 0.08);
  --shadow-md: 0 4px 16px rgba(13, 21, 38, 0.09), 0 2px 6px rgba(13, 21, 38, 0.06);
  --shadow-lg: 0 10px 30px rgba(13, 21, 38, 0.12), 0 4px 12px rgba(13, 21, 38, 0.07);
  --shadow-xl: 0 20px 50px rgba(13, 21, 38, 0.15), 0 8px 20px rgba(13, 21, 38, 0.08);
  --shadow-blue: 0 8px 24px rgba(14, 165, 233, 0.25);
  --shadow-primary: 0 8px 24px rgba(12, 26, 61, 0.3);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ──────────────── CSS Reset ──────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--muted);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 3px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

main {
  flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ──────────────── Scroll Animations ──────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ──────────────── Layout ──────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

/* ──────────────── Typography ──────────────── */
.text-center {
  text-align: center;
}

.font-serif {
  font-family: var(--font-serif);
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-muted {
  color: var(--muted-foreground);
}

.text-white {
  color: #fff;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.5rem;
  line-height: 2.75rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1.1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1.05;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

/* ──────────────── Gradient Text ──────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ──────────────── Buttons ──────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.4);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--primary);
  background: transparent;
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  background: var(--muted);
  border-color: var(--primary);
}

/* ──────────────── Navbar ──────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
}

.logo {
  margin-right: auto;
  display: flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  transition: var(--transition-fast);
}

.logo:hover {
  color: var(--secondary);
}

.logo-img {
  height: 90px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-fast);
  letter-spacing: -0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--secondary);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 2rem;
}

.nav-actions .nav-text-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: var(--transition-fast);
  letter-spacing: -0.01em;
}

.nav-actions .nav-text-link:hover {
  color: var(--primary);
}

.masthead {
  display: none;
}

.mobile-menu-btn {
  display: none;
  color: var(--muted-foreground);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
  color: var(--primary);
  background: var(--muted);
}

.mobile-nav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80%;
  max-width: 320px;
  z-index: 1005;
  box-shadow: 10px 0 30px rgba(13, 21, 38, 0.15);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-logo {
  height: 36px;
  width: auto;
}

.mobile-close-btn {
  color: var(--muted-foreground);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.mobile-close-btn:hover {
  color: var(--primary);
}

.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 21, 38, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1004;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-inner {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav a {
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.mobile-nav a:hover {
  background: var(--muted);
  color: var(--primary);
}

.mobile-nav a.active {
  color: var(--secondary);
  background: var(--secondary-glow);
}

@media (max-width: 900px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .text-6xl {
    font-size: 2.5rem;
  }

  .text-4xl {
    font-size: 2rem;
  }
}

/* ──────────────── Main padding for fixed nav ──────────────── */
body>main {
  padding-top: 4rem;
}


/* ──────────────── Hero ──────────────── */
.hero {
  position: relative;
  background: var(--primary);
  color: #fff;
  padding: 4rem 0 6rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(255, 255, 255, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 5% 80%, rgba(255, 255, 255, 0.07) 0%, transparent 50%),
    linear-gradient(140deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
  z-index: 0;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin-left: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  font-family: var(--font-sans);
  backdrop-filter: blur(8px);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.125rem;
  max-width: 580px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2.75rem;
  flex-wrap: wrap;
}

.hero-float-card {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  min-width: 280px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat .stat-num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.stat-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .hero-float-card {
    display: none;
  }
}

/* ──────────────── Badge / Eyebrow ──────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: var(--secondary-glow);
  color: var(--secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(14, 165, 233, 0.25);
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  font-family: var(--font-sans);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

/* ──────────────── Stats Bar ──────────────── */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item .stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.stat-item .stat-label {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-top: 0.25rem;
}

.stat-item .stat-accent {
  color: var(--secondary);
}

@media (max-width: 640px) {
  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid var(--border);
    border-right: none;
  }
}

/* ──────────────── Grids ──────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ──────────────── Cards ──────────────── */
.card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(14, 165, 233, 0.15);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 3.25rem;
  height: 3.25rem;
  background: linear-gradient(135deg, var(--secondary-glow), var(--accent-light));
  color: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  transform: scale(1.08);
}

/* ──────────────── Feature Boxes ──────────────── */
.feature-box {
  background: var(--muted);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-box.primary {
  background: linear-gradient(135deg, var(--primary-mid) 0%, var(--primary) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}

.feature-box.primary h3 {
  color: #fff;
}

/* ──────────────── Footer ──────────────── */
.footer {
  background: linear-gradient(160deg, #0a1530 0%, #0c1a3d 60%, #091228 100%);
  color: var(--primary-foreground);
  padding: 5rem 0 2.5rem;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.5), transparent);
}

.footer::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-col-brand,
  .footer-col-contact {
    grid-column: 1 / -1;
  }

  .footer-col-brand {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: var(--transition-fast);
  font-size: 1rem;
}

.footer-socials a:hover {
  background: var(--secondary);
  color: #fff;
}

.footer-newsletter-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer-newsletter-form {
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  outline: none;
  width: 100%;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-form button {
  border-radius: 0;
  padding: 0.75rem 1.25rem;
}

.back-to-top {
  position: fixed;
  bottom: 7rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}

.footer h3 {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

h3.footer-follow-heading {
  margin-top: 1.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ──────────────── Section backgrounds ──────────────── */
.bg-muted {
  background-color: var(--muted);
}

.bg-white {
  background-color: #fff;
}

.bg-primary {
  background-color: var(--primary);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 50%, var(--primary-light) 100%);
}

.bg-dot-pattern {
  background-color: var(--background);
  background-image: radial-gradient(var(--border) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

/* ──────────────── Section Divider / Wave ──────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ──────────────── CTA Block ──────────────── */
.cta-block {
  background: linear-gradient(135deg, var(--primary-mid) 0%, var(--primary) 50%, #0a1834 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-block::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* ──────────────── Testimonial / Highlight Card ──────────────── */
.highlight-card {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(99, 102, 241, 0.06));
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  position: relative;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--secondary), var(--accent));
  border-radius: 4px 0 0 4px;
}

/* ──────────────── Check List ──────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.check-list .check-icon {
  width: 1.375rem;
  height: 1.375rem;
  background: var(--secondary-glow);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ──────────────── Form Styles (global) ──────────────── */
.form-container {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  letter-spacing: -0.01em;
}

.form-input,
.form-select {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  background: var(--background);
  color: var(--foreground);
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
  background: #fff;
}

.form-input::placeholder {
  color: var(--muted-foreground);
  opacity: 0.7;
}

.file-upload-box {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  background: var(--muted);
  transition: var(--transition);
  cursor: pointer;
}

.file-upload-box:hover {
  border-color: var(--secondary);
  background: rgba(14, 165, 233, 0.04);
}

.success-message {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.success-message.show {
  display: block;
}

.inquiry-form.hide {
  display: none;
}

/* ──────────────── Page Header ──────────────── */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, #0a1834 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-header::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

/* ──────────────── Advantage Cards ──────────────── */
.advantage-card {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 165, 233, 0.2);
}

.advantage-card.dark {
  background: linear-gradient(135deg, var(--primary-mid), var(--primary));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-primary);
}

.advantage-card.dark:hover {
  box-shadow: var(--shadow-xl);
}

/* ──────────────── Utils ──────────────── */
.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.text-2xl {
  font-size: 1.5rem;
}

/* ──────────────── Geometric Decorators ──────────────── */
.geo-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  transform: rotate(45deg);
  border-radius: 6px;
}

.geo-deco.outline {
  background: transparent;
  border: 2.5px solid rgba(255, 255, 255, 0.2);
}

.geo-deco.filled {
  background: rgba(255, 255, 255, 0.09);
}

.geo-deco.tinted {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.geo-deco.sz-xl {
  width: 130px;
  height: 130px;
}

.geo-deco.sz-lg {
  width: 85px;
  height: 85px;
}

.geo-deco.sz-md {
  width: 52px;
  height: 52px;
}

.geo-deco.sz-sm {
  width: 32px;
  height: 32px;
}

/* ──────────────── Dark Stats Bar ──────────────── */
.stats-dark {
  background: linear-gradient(90deg, #0a1628 0%, #0f2044 100%);
  padding: 2.75rem 0;
}

.stats-dark .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-dark .sd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-dark .sd-item:last-child {
  border-right: none;
}

.stats-dark .sd-num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: #60a5fa;
  line-height: 1;
}

.stats-dark .sd-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 0.375rem;
}

@media (max-width: 640px) {
  .stats-dark .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-dark .sd-item:nth-child(2) {
    border-right: none;
  }

  .stats-dark .sd-item:nth-child(3),
  .stats-dark .sd-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stats-dark .sd-item:nth-child(4) {
    border-right: none;
  }
}

/* ──────────────── Blue Accent Section ──────────────── */
.section-blue-accent {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 60%, #3b82f6 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.section-blue-accent::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.07);
  transform: rotate(45deg);
  border-radius: 12px;
}

.section-blue-accent::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(45deg);
  border-radius: 12px;
}

/* ──────────────── Hero Split Layout ──────────────── */
.hero .container {
  max-width: 1240px;
  margin: 0 auto;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-photo-wrap {
  position: relative;
  flex-shrink: 0;
}

.hero-photo-wrap>img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 26, 61, 0.55) 0%, transparent 55%);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.hero-badge-floating {
  position: absolute;
  bottom: 1.75rem;
  left: -1.25rem;
  background: rgba(12, 26, 61, 0.88);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  min-width: 210px;
  z-index: 4;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-stats-inline {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.hero-stats-inline>div {
  display: flex;
  flex-direction: column;
}

.hero-stats-inline strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-stats-inline span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-photo-wrap {
    display: none;
  }
}

/* ──────────────── Industries Strip ──────────────── */
.industries-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.industries-strip .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.industries-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  padding-right: 1.5rem;
  border-right: 2px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
}

.industry-tag {
  padding: 0.3125rem 0.875rem;
  border-radius: 9999px;
  background: var(--muted);
  color: var(--muted-foreground);
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.industry-tag:hover {
  background: var(--secondary-glow);
  color: var(--secondary);
  border-color: rgba(14, 165, 233, 0.3);
}

@media (max-width: 900px) {
  .industries-strip .container {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    min-width: auto;
  }

  .industries-label {
    border: none;
    padding: 0;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    align-self: center;
    text-align: center;
  }

  .industry-grid {
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
  }

  .industry-tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
  }
}

/* ──────────────── About Image Block ──────────────── */
.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: block;
}

.about-stat-float {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-primary);
  text-align: center;
  min-width: 130px;
  z-index: 2;
}

.about-stat-float strong {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--secondary);
  display: block;
  line-height: 1;
}

.about-stat-float span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  display: block;
  margin-top: 0.25rem;
}

/* ──────────────── Feature Mini Card ──────────────── */
.feature-mini-card {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: var(--transition);
}

.feature-mini-card:hover {
  border-color: rgba(14, 165, 233, 0.2);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.feature-mini-card h4 {
  font-size: 0.9375rem;
  font-family: var(--font-serif);
  color: var(--primary);
  margin-bottom: 0.375rem;
}

.feature-mini-card p {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  margin: 0;
}

/* ──────────────── Testimonial Card ──────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 165, 233, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9625rem;
  color: var(--foreground);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--primary);
  display: block;
  line-height: 1.3;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  display: block;
  margin-top: 0.125rem;
}

/* ──────────────── Insight Card ──────────────── */
.insight-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.insight-img-wrap {
  overflow: hidden;
}

.insight-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.insight-card:hover .insight-img {
  transform: scale(1.05);
}

.card:hover>div>img {
  transform: scale(1.05);
}

.insight-body {
  padding: 1.5rem;
}

.insight-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.625rem;
  display: block;
}

.insight-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  color: var(--primary);
  line-height: 1.45;
  margin-bottom: 1rem;
  display: block;
  transition: var(--transition-fast);
}

.insight-card:hover .insight-title {
  color: var(--secondary);
}

.insight-meta {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ──────────────── Team Card ──────────────── */
.team-card {
  text-align: center;
}

.team-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s;
  filter: grayscale(20%);
}

.team-card:hover .team-photo {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.team-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--primary);
  display: block;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--secondary);
  font-weight: 600;
  display: block;
  margin-bottom: 0.625rem;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  transition: var(--transition-fast);
}

.team-linkedin:hover {
  color: var(--secondary);
}

/* ──────────────── Responsive ──────────────── */
@media (max-width: 768px) {
  .cta-block {
    padding: 2.5rem 2rem;
  }

  .cta-block>div>div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }

  .advantage-card {
    padding: 2rem 1.5rem;
  }

  .section-blue-accent .container>div {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .hero {
    padding: 6rem 0 5rem;
  }

  .about-image-wrap img {
    height: 320px;
  }

  .about-stat-float {
    position: static;
    margin-top: 1rem;
    display: inline-flex;
    gap: 1rem;
    align-items: center;
    min-width: auto;
    text-align: left;
  }
}

/* ===================================================
   COMPONENT & UTILITY CLASSES (refactored from inline)
   =================================================== */

/* --- Utilities --- */
.bg-white {
  background: #fff;
}

.nav-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}

.mobile-cta {
  background: var(--primary) !important;
  color: #fff !important;
  text-align: center;
  border-radius: var(--radius-sm);
}

.btn-sm {
  padding: 0.5rem 1.375rem !important;
  font-size: 0.875rem !important;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-icon {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.icon-sm {
  width: 0.875rem !important;
  height: 0.875rem !important;
}

.icon-xs {
  width: 0.75rem !important;
  height: 0.75rem !important;
}

.icon-md {
  width: 1rem !important;
  height: 1rem !important;
}

.icon-lg {
  width: 2.5rem !important;
  height: 2.5rem !important;
}

.icon-star {
  width: 1rem !important;
  height: 1rem !important;
  fill: currentColor;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-header-sm {
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.grid-2-center {
  gap: 5rem;
  align-items: center;
}

.grid-2-start {
  gap: 5rem;
  align-items: start;
}

.grid-2-stretch {
  gap: 2rem;
  align-items: stretch;
}

.grid-2-ld {
  max-width: 860px;
  margin: 0 auto;
  gap: 1.25rem;
}

.grid-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.text-body-lg {
  font-size: 1.0625rem;
  line-height: 1.85;
}

.container-rel {
  position: relative;
  z-index: 2;
}

.container-narrow {
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}

.container-md {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.insight-dot {
  opacity: 0.4;
}

/* --- Hero Component --- */
.hero-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.125rem;
  max-width: 520px;
  line-height: 1.85;
  margin-top: 1.5rem;
}

.hero-em {
  font-style: italic;
  color: #93c5fd;
}

.hero-badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(37, 99, 235, 0.25);
  color: #93c5fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-title {
  font-weight: 600;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.2;
}

.hero-badge-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.125rem;
}

/* Geometric shapes */
.geo-1 {
  width: 150px;
  height: 150px;
  top: -50px;
  right: 20%;
  background: rgba(255, 255, 255, 0.07);
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.geo-2 {
  width: 90px;
  height: 90px;
  top: 8%;
  right: 6%;
  background: rgba(37, 99, 235, 0.75);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4);
}

.geo-3 {
  width: 55px;
  height: 55px;
  bottom: 20%;
  right: 14%;
  background: rgba(147, 197, 253, 0.55);
  border-radius: 6px;
}

.geo-4 {
  width: 110px;
  height: 110px;
  bottom: -40px;
  left: 1%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.geo-5 {
  width: 42px;
  height: 42px;
  top: 28%;
  left: 45%;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 4px;
}

.geo-6 {
  width: 70px;
  height: 70px;
  top: 55%;
  right: 3%;
  background: rgba(96, 165, 250, 0.45);
  border-radius: 6px;
}

/* --- Image Service Card --- */
.card-img {
  padding: 0 !important;
  overflow: hidden;
}

.card-img-wrap {
  overflow: hidden;
  height: 210px;
}

.card-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card-body {
  padding: 1.75rem;
}

.card-title-md {
  font-size: 1.2rem;
}

.card-text-sm {
  font-size: 0.9375rem;
  line-height: 1.75;
}

.card-link {
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.card-icon-mb {
  margin-bottom: 1rem;
}

/* --- Blue Accent Section --- */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ba-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.ba-heading {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.ba-body {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.0625rem;
  line-height: 1.8;
  max-width: 460px;
}

.ba-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ba-feature-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  backdrop-filter: blur(8px);
}

.ba-feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.ba-feature-icon i {
  width: 1.25rem !important;
  height: 1.25rem !important;
}

.ba-feature-title {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.ba-feature-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Advantage Component --- */
.adv-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.adv-header-lg {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.adv-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adv-icon-dark {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  color: #93c5fd;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adv-icon-primary {
  width: 3.25rem;
  height: 3.25rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-primary);
}

.adv-icon-dark-lg {
  width: 3.25rem;
  height: 3.25rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adv-tool-name {
  font-size: 1.375rem;
}

.adv-tool-name-lg {
  font-size: 1.625rem;
}

.adv-tool-name-white {
  font-size: 1.625rem;
  color: #fff;
}

.adv-tool-badge {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2563eb;
  display: block;
}

.adv-tool-badge-dark {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #93c5fd;
  display: block;
}

.adv-tool-badge-sec {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--secondary);
  display: block;
}

.adv-list-dark {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.adv-list-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.adv-list-icon {
  color: #93c5fd;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.adv-list-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.adv-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.adv-desc-dark {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.adv-desc-dark-full {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 800px;
}

.adv-desc-light {
  font-size: 1.0625rem;
  line-height: 1.85;
  max-width: 800px;
}

.adv-sub-heading {
  font-size: 1.125rem;
  color: var(--primary);
}

.adv-sub-heading-sec {
  font-size: 1.125rem;
  color: var(--secondary);
}

/* --- Newsletter Section --- */
.section-newsletter {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.nl-deco {
  position: absolute;
  transform: rotate(45deg);
  pointer-events: none;
}

.nl-deco-1 {
  top: -70px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}

.nl-deco-2 {
  bottom: -70px;
  left: -50px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
}

.nl-deco-3 {
  top: 20%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.nl-wrap {
  text-align: center;
  position: relative;
  z-index: 2;
}

.nl-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.nl-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.nl-body {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.nl-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.nl-input {
  flex: 1;
  min-width: 240px;
  padding: 0.9375rem 1.25rem;
  border-radius: var(--radius);
  border: none;
  font-size: 0.9375rem;
  outline: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-family: inherit;
}

.nl-btn {
  background: #fff;
  color: #1d4ed8;
  font-weight: 700;
  border: none;
  white-space: nowrap;
  padding: 0.9375rem 2rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.nl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* --- CTA Inner --- */
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 1rem;
}

.cta-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-body-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 200px;
}

/* --- Footer Utilities --- */
.footer-logo {
  color: #fff !important;
  font-size: 1.375rem;
  display: block !important;
  margin-bottom: 1rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-contact-head {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-contact-link {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  width: 0.875rem !important;
  height: 0.875rem !important;
  flex-shrink: 0;
  color: #60a5fa !important;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

/* --- Page Header Utilities --- */
.badge-accent {
  background: rgba(14, 165, 233, 0.15) !important;
  border-color: rgba(14, 165, 233, 0.3) !important;
}

.page-h1-mt {
  margin-top: 0.5rem;
}

.page-sub {
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-sub-wide {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- About Page --- */
.highlight-text {
  font-size: 1.375rem;
  line-height: 1.65;
}

.mantra-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.mantra-icon {
  margin: 0 auto 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
}

.mantra-title {
  font-size: 1.0625rem;
  line-height: 1.4;
}

.about-body {
  font-size: 1.0625rem;
  line-height: 1.85;
}

.about-section-max {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

.res-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2.5rem;
}

.res-check-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.res-check-icon {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.res-check-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* --- Services Page --- */
.svc-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.svc-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary);
  flex-shrink: 0;
}

.svc-icon-sec {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--secondary);
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  flex-shrink: 0;
}

.svc-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.svc-desc {
  margin-top: 0.25rem;
}

.svc-card-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.svc-card-text {
  font-size: 0.9375rem;
  line-height: 1.75;
}

.ld-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, #0a1834 100%);
  position: relative;
  overflow: hidden;
}

.ld-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.ld-radial {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.ld-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.ld-body-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.ld-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
}

.ld-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ld-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(14, 165, 233, 0.2);
  color: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ld-card-title {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.ld-card-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* --- Employers Page --- */
.emp-section {
  padding: 4rem 0 4rem;
}

.emp-h1-mt {
  margin-top: 0.5rem;
  line-height: 1.1;
}

.emp-lead {
  line-height: 1.8;
}

.emp-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.emp-stat-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.emp-stat-label {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group-inline {
  margin-bottom: 0;
}

.form-title {
  font-size: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
}

.form-submit-full {
  width: 100%;
  margin-top: 2rem;
  justify-content: center;
}

.form-privacy-note {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 1rem;
}

.success-icon-wrap {
  width: 5rem;
  height: 5rem;
  background: #f0fdf4;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* --- Jobseekers Page --- */
.jbs-form-wrap {
  position: relative;
  z-index: 10;
}

.jbs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}

.jbs-span2 {
  grid-column: span 2;
}

.jbs-span2-mt {
  grid-column: span 2;
  margin-top: 0.5rem;
}

.jbs-form-footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.jbs-form-note {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin: 0;
}

.jbs-submit {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.jbs-reset-btn {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  background: none;
  border: none;
  cursor: pointer;
}

.file-icon-wrap {
  color: var(--muted-foreground);
  display: flex;
  justify-content: center;
  margin-bottom: 0.875rem;
}

.file-upload-row {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.file-upload-trigger {
  color: var(--secondary);
  font-weight: 600;
  cursor: pointer;
}

.file-upload-hint {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.nav-active-sec {
  color: var(--secondary) !important;
}

.container-rel-z10 {
  position: relative;
  z-index: 2;
}

/* --- Responsive additions --- */
@media (max-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .cta-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .res-check-grid {
    grid-template-columns: 1fr !important;
  }

  .form-grid-2 {
    grid-template-columns: 1fr !important;
  }

  .grid-features {
    grid-template-columns: 1fr !important;
  }

  .jbs-grid {
    grid-template-columns: 1fr !important;
  }

  .jbs-span2,
  .jbs-span2-mt {
    grid-column: span 1 !important;
  }
}

@media (max-width: 640px) {
  .grid-2-ld {
    grid-template-columns: 1fr !important;
  }

  .cta-actions {
    min-width: auto;
  }
}

/* ═══════════════════════════════
   HERO REDESIGN - Attractive v2
   ═══════════════════════════════ */
.hero {
  background: linear-gradient(150deg, #030b1e 0%, #0a1535 35%, #0d2060 70%, #091840 100%) !important;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: 1;
}

.hero-glow-1 {
  width: 800px;
  height: 800px;
  top: -250px;
  right: -50px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 65%);
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.13) 0%, transparent 65%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-visual {
  position: relative;
}

.hero h1 {
  font-size: clamp(2.875rem, 5.5vw, 4.75rem) !important;
  line-height: 1.06 !important;
}

.hero-highlight {
  background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 50%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  display: inline-block;
}

/* Trust strip */
.hero-trust {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.hero-trust-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-trust-pills span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.01em;
}

/* Coloured border ring around photo */
.hero-photo-ring {
  position: relative;
  padding: 4px;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 50%, #6366f1 100%);
  border-radius: calc(var(--radius-xl) + 4px);
}

.hero-photo-ring .hero-photo-wrap>img {
  border-radius: calc(var(--radius-xl) - 2px);
}

.hero-photo-ring .hero-photo-wrap {
  border-radius: calc(var(--radius-xl) - 2px);
}

/* Second floating badge - top right of photo */
.hero-badge-floating-2 {
  position: absolute;
  top: 2rem;
  right: -1.75rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 0.75rem 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 195px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 4;
}

.hero-badge-2-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-floating-2 .hero-badge-title {
  color: var(--primary);
}

.hero-badge-floating-2 .hero-badge-sub {
  color: var(--muted-foreground);
}

/* Stat pill - bottom right */
.hero-exp-badge {
  position: absolute;
  bottom: 3.5rem;
  right: -1.25rem;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  border-radius: 50px;
  padding: 0.875rem 1.375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.55);
  z-index: 4;
}

.hero-exp-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-exp-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Ensure bottom badge still shows */
.hero-badge-floating {
  z-index: 4;
}

@media (max-width: 1100px) {

  .hero-badge-floating-2,
  .hero-exp-badge {
    display: none !important;
  }
}

/* ── Logo Image ── */
.logo-img {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo .logo-img {
  height: 64px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ═══════════════════════════════════
   HERO LIGHT — matches reference UI
   ═══════════════════════════════════ */
.hero-light {
  background: #eef3ff;
  padding: 7.5rem 0 3.5rem;
}

.hero-light-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  box-shadow: 0 4px 48px rgba(30, 64, 175, 0.1);
  min-height: 440px;
  align-items: stretch;
}

.hero-light-content {
  padding: 3.5rem 3.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-light-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-light-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-light-h1 {
  font-size: clamp(2rem, 3vw, 3.125rem) !important;
  color: #0f1f4a !important;
  line-height: 1.18 !important;
  margin-bottom: 1.125rem !important;
  letter-spacing: -0.025em !important;
  font-weight: 400 !important;
}

.hero-light-h1 strong {
  font-weight: 800;
}

.hero-light-lead {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 2rem;
}

.hero-light-btn {
  border-radius: 50px !important;
  padding: 0.9rem 2rem !important;
  align-self: flex-start !important;
  font-size: 0.9375rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-light-trust {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.hero-light-trust-label {
  font-size: 0.8rem;
  color: #94a3b8;
}

.hero-trust-pills-light {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-trust-pills-light span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
}

.hero-light-photo {
  overflow: hidden;
}

.hero-light-photo img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 900px) {
  .hero-light-card {
    grid-template-columns: 1fr;
  }

  .hero-light-photo img {
    min-height: 320px;
    height: 320px;
  }
}

@media (max-width: 640px) {
  .hero-light-content {
    padding: 2.25rem 1.5rem;
  }
}

/* ── 404 Page ── */
.error-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 8rem 0 4rem;
}

.error-wrap {
  max-width: 480px;
}

.error-icon {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--secondary);
  margin: 0 auto 1.5rem;
  display: block;
}

.error-code {
  font-size: 6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.04em;
}

.error-title {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.error-desc {
  color: var(--muted-foreground);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════
   HERO V2 — Beeko-style (reference match)
   ═══════════════════════════════════════ */
.hero-v2 {
  background: #f4f7fb;
  padding: 7rem;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-v2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=20&w=900&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.hero-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 2;
  min-height: 540px;
}

.hero-v2-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-v2-eyebrow {
  display: block;
  color: #2563eb;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-v2-h1 {
  font-size: clamp(2.5rem, 4.5vw, 4rem) !important;
  font-weight: 900 !important;
  color: #0c1a3d !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 1.375rem !important;
}

.hero-v2-lead {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.78;
  max-width: 430px;
  margin-bottom: 2.25rem;
}

.hero-v2-btn {
  border-radius: 50px !important;
  padding: 0.9rem 2rem !important;
  align-self: flex-start !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-size: 0.9375rem !important;
}

.hero-v2-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 540px;
  overflow: visible;
}

.hero-v2-photo {
  width: 88%;
  max-width: 450px;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  display: block;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.12));
}

/* ── Blue triangles ── */
.tri {
  position: absolute;
  z-index: 1;
}

.t1 {
  width: 155px;
  height: 135px;
  background: #2563eb;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  top: 6%;
  right: 9%;
}

.t2 {
  width: 100px;
  height: 90px;
  background: #93c5fd;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 0%;
  right: 1%;
}

.t3 {
  width: 80px;
  height: 80px;
  background: #1d4ed8;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: 20%;
  right: 3%;
}

.t4 {
  width: 65px;
  height: 65px;
  background: #60a5fa;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  top: 36%;
  right: -2%;
}

.t5 {
  width: 120px;
  height: 110px;
  background: #1e40af;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  top: 8%;
  right: 28%;
}

.tl1 {
  width: 130px;
  height: 115px;
  background: #2563eb;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  bottom: 0;
  left: -5px;
}

.tl2 {
  width: 90px;
  height: 80px;
  background: #1d4ed8;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  bottom: 16%;
  left: 35px;
}

@media (max-width: 1000px) {
  .hero-v2-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-v2-visual {
    min-height: 340px;
  }

  .hero-v2-photo {
    height: 340px;
    width: 100%;
  }

  .hero-v2-content {
    padding: 2rem 0;
  }
}

@media (max-width: 640px) {
  .tri {
    display: none;
  }

  .hero-v2 {
    padding: 2rem 0;
  }
}

/* ═══════════════════════════════
   ABOUT V2 — Who We Are
   ═══════════════════════════════ */
.about-v2 {
  overflow: visible;
}

.about-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Left single image */
.about-v2-images {
  position: relative;
  min-height: auto;
  overflow: visible;
}

.about-single-img-wrap {
  position: relative;
}

.about-single-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-v2-img-bottom {
  position: relative;
  z-index: 3;
  margin-top: -60px;
  margin-left: 2.5rem;
}

.about-v2-img-bottom img {
  width: 78%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
}

/* Experience badge */
.about-exp-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: #1d4ed8;
  color: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  z-index: 5;
  min-width: 145px;
}

.about-exp-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
}

.about-exp-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.375rem;
  line-height: 1.45;
  opacity: 0.88;
}

/* Profit badge */
.about-stat-badge {
  position: absolute;
  bottom: -30px;
  left: -20px;
  background: #fff;
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 6;
  white-space: nowrap;
}

.about-stat-chart {
  width: 2.75rem;
  height: 2.75rem;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

.about-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.72rem;
  color: var(--muted-foreground);
}

/* Blue triangles */
.about-tri {
  position: absolute;
  z-index: 1;
}

.at1 {
  width: 70px;
  height: 62px;
  background: #2563eb;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  bottom: 22px;
  left: -14px;
}

.at2 {
  width: 44px;
  height: 38px;
  background: #93c5fd;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  bottom: 6px;
  left: 4px;
}

/* Dot grid */
.about-v2-dots {
  position: absolute;
  bottom: -20px;
  right: -15px;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  z-index: 0;
  pointer-events: none;
}

/* Right content */
.about-v2-h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.625rem);
  font-weight: 400;
  color: #0c1a3d;
  line-height: 1.22;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.about-v2-h2 strong {
  font-weight: 800;
}

.about-v2-lead {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.78;
  margin-bottom: 1.75rem;
}

/* Feature row */
.about-v2-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.125rem;
  align-items: center;
}

.about-v2-feat-card {
  background: #f8faff;
  border: 1px solid #e0e7ff;
  border-radius: 12px;
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.about-v2-feat-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

.about-v2-feat-card h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

/* Checklist */
.about-v2-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.about-v2-checklist li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
}

.about-v2-checklist li svg {
  color: #2563eb;
  flex-shrink: 0;
}

/* Bottom row */
.about-v2-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid #e2e8f0;
  flex-wrap: wrap;
}

.about-v2-ceo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-v2-ceo-photo {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #bfdbfe;
}

.about-v2-ceo-sig {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  font-style: italic;
}

.about-v2-ceo-title {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.about-v2-btn {
  border-radius: 50px !important;
  padding: 0.875rem 1.75rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  white-space: nowrap;
}

@media(max-width:1000px) {
  .about-v2-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-v2-images {
    min-height: auto;
    margin-bottom: 3rem;
  }
}

@media(max-width:640px) {
  .about-v2-features {
    grid-template-columns: 1fr;
  }

  .about-v2-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ──────────────── Industry Grid ──────────────── */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.industry-grid .industry-tag {
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: var(--secondary-deep);
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-fast);
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.05);
}

.industry-grid .industry-tag:hover {
  background: var(--secondary-glow);
  border-color: var(--secondary);
  color: var(--secondary-deep);
  transform: translateY(-2px);
}

/* ──────────────── Masthead ──────────────── */
.masthead {
  background: var(--primary);
  padding: 0.5rem 0;
}

.masthead-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.masthead-left,
.masthead-right {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.masthead-link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  text-decoration: none;
}

.masthead-link:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .masthead {
    display: none;
  }

  .masthead-inner {
    padding: 0.5rem 1.5rem;
    justify-content: center;
  }

  .masthead-left {
    justify-content: center;
    gap: 0.75rem;
  }

  .masthead-right {
    justify-content: center;
  }

  .masthead-link {
    font-size: 0.75rem;
  }
}

/* ──────────────── Mobile Menu Buttons ──────────────── */
.mobile-btn {
  text-align: center;
  color: #fff !important;
  margin-top: 0.5rem;
  justify-content: center;
}

/* ──────────────── Footer Follow Us ──────────────── */
.footer-follow-heading {
  margin-top: 1.5rem;
}

.footer-follow-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: inline-block;
}

.footer-follow-icon {
  font-size: 1.5rem;
  transition: color 0.2s;
}

.footer-follow-link:hover .footer-follow-icon {
  color: #fff;
}

/* Fix for Services Page Image Overflow on Mobile */
.svc-hero-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

.field-error-label {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
  animation: fadeIn 0.3s ease;
}

.input-error {
  border-color: #e74c3c !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.iti {
  width: 100%;
  display: block;
}
