/* ==========================================================================
   BUILDNEX.AI - Official Modern Responsive Stylesheet
   Design Philosophy: Ultra-Modern Construction Quality & AI Ecosystem
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --navbar-height: 90px;
  --navy: #1A3F7A;
  --navy-dark: #0A193C;
  --navy-deep: #1E3A5F;
  --blue: #2176C7;
  --blue-lt: #EBF4FF;
  --blue-mid: #4A9AE8;
  --green: #2D7D32;
  --green-lt: #E8F5E9;
  --green-mid: #43A047;
  --green-bright: #86efac;
  --amber: #E07B00;

  --text: #111827;
  --text2: #4B5563;
  --text3: #6B7280;

  --border: #E5E7EB;
  --border-light: rgba(229, 231, 235, 0.6);
  --border-accent: rgba(33, 118, 199, 0.25);

  --bg: #FFFFFF;
  --bg2: #F8FAFC;
  --bg3: #EEF3FA;

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 44px rgba(26, 63, 122, 0.12);
  --shadow-card-hover: 0 20px 40px -10px rgba(26, 63, 122, 0.18), 0 0 0 1px rgba(33, 118, 199, 0.25);
  --shadow-glow-blue: 0 8px 30px rgba(33, 118, 199, 0.25);

  --r: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  overflow-y: auto;
  line-height: 1.6;
  width: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
}

section,
[id] {
  scroll-margin-top: var(--navbar-height);
}

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

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

/*========================================
UTILITIES
========================================================================== */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   1. NAVIGATION HEADER
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 76px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition-normal);
}

.nav.scrolled {
  box-shadow: 0 10px 30px rgba(10, 25, 60, 0.08);
  background: rgba(255, 255, 255, 0.98);
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-fast);
}

.nav-logo:hover {
  transform: translateY(-1px) scale(1.02);
}

.nav-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  transition: width 0.25s var(--ease-spring);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-demo {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #FFFFFF;
  padding: 11px 26px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(26, 63, 122, 0.25);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.nav-demo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s var(--ease-spring);
}

.nav-demo:hover::before {
  left: 100%;
}

.nav-demo:hover {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33, 118, 199, 0.35);
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
  border-radius: 6px;
}

.mobile-toggle svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

/* Mobile Drawer Navigation */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 199;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s var(--ease-spring), opacity 0.35s var(--ease-spring);
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.mobile-drawer-links a {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

/* ==========================================================================
   2. FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 300;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: var(--transition-normal);
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 60px 80px;
  overflow: hidden;
  background-color: #050A15;
  /* Dark navy background */
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  max-width: 650px;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 58, 138, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #E2E8F0;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s both var(--ease-spring);
}

.hero-badge i {
  color: #60A5FA;
}

.hero-title {
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #FFFFFF;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.2s both var(--ease-spring);
}

.hero-title .hl-cyan {
  background: linear-gradient(90deg, #93C5FD, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .hl-blue {
  color: #3B82F6;
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: #9CA3AF;
  max-width: 580px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.3s both var(--ease-spring);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.4s both var(--ease-spring);
}

.btn-hero-primary {
  background: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
  color: #FFFFFF;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  transition: var(--transition-normal);
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
  color: #FFF;
}

.btn-hero-secondary {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(51, 65, 85, 0.8);
  color: #E2E8F0;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-normal);
}

.btn-hero-secondary:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(71, 85, 105, 1);
  transform: translateY(-2px);
  color: #FFF;
}

.hero-trust {
  animation: fadeUp 0.8s 0.5s both var(--ease-spring);
  border-top: 1px solid rgba(51, 65, 85, 0.5);
  padding-top: 24px;
}

.trust-title {
  font-size: 12px;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.trust-list {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}

.trust-list li {
  font-size: 13px;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.trust-list li i {
  color: #22C55E;
  font-size: 16px;
}

.hero-image-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 1s 0.3s both var(--ease-spring);
  position: relative;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 480px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.45) 0%, rgba(99, 102, 241, 0.15) 60%, transparent 80%);
  filter: blur(80px);
  z-index: 0;
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

.hero-app-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(59, 130, 246, 0.25);
  transition: transform 0.5s ease;
}

.hero-image-wrap:hover .hero-app-img {
  transform: translateY(-6px) scale(1.01);
}

/* Floating HUD Badges */
.hud-badge {
  position: absolute;
  z-index: 5;
  background: rgba(10, 25, 60, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(99, 102, 241, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.2);
  padding: 10px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.hud-badge-1 {
  top: 10%;
  left: -20px;
}

.hud-badge-2 {
  top: 50%;
  right: -25px;
}

.hud-badge-3 {
  bottom: 8%;
  left: -15px;
}

.hud-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.green-pulse {
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse 1.8s infinite;
}

.blue-pulse {
  background: #3b82f6;
  box-shadow: 0 0 10px #3b82f6;
  animation: pulse 1.8s infinite;
}

.hud-icon-blue {
  color: #3b82f6;
  font-size: 18px;
}

.hud-icon-green {
  color: #22c55e;
  font-size: 18px;
}

.hud-text {
  display: flex;
  flex-direction: column;
}

.hud-label {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hud-val {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

/* Floating Animations */
.floating-anim {
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.floating-anim-delayed {
  animation: floatSlow 4s ease-in-out 2s infinite alternate;
}

@keyframes floatSlow {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* ==========================================================================
   4. PROBLEM / INDUSTRY CHALLENGE SECTION
   ========================================================================== */
.problem {
  padding: 30px 25px;
  background: linear-gradient(135deg, #EBF4FF 0%, #E0EDFF 100%);
  border-top: 3px solid #93C5FD;
  border-bottom: 3px solid #93C5FD;
  position: relative;
}

.problem-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.problem-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #DBEAFE;
  border: 1.5px solid #3B82F6;
  color: #1E3A8A;
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12);
}

.problem-alert-icon {
  font-size: 18px;
  animation: shake 3s ease-in-out infinite;
}

@keyframes shake {

  0%,
  100% {
    transform: rotate(0);
  }

  10% {
    transform: rotate(-8deg);
  }

  20% {
    transform: rotate(8deg);
  }

  30% {
    transform: rotate(-5deg);
  }

  40% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(0);
  }
}

.problem-headline {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: #1D4ED8;
  line-height: 1.25;
  margin-bottom: 10px;
}

.problem-sub {
  font-size: 16px;
  color: #1E40AF;
  margin-bottom: 36px;
  font-weight: 500;
}

.problem-pills {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.problem-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1.5px solid #93C5FD;
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #1E40AF;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
  transition: var(--transition-normal);
}

.problem-pill:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: #2563EB;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.problem-pill-icon {
  font-size: 22px;
  flex-shrink: 0;
}

/* ==========================================================================
   5. GENERAL SECTION HELPERS
   ========================================================================== */
.section {
  padding: 30px 25px;
}

.section.alt {
  background: var(--bg2);
}

.s-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.s-title {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 20px;
}

.s-sub {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.8;
  max-width: 640px;
}

.center {
  text-align: center;
}

.center .s-sub {
  margin: 0 auto;
}

/* ==========================================================================
   6. 5E FRAMEWORK SECTION - MODERN ELEVATED PILLARS
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  perspective: 1000px;
}

.pillar {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  opacity: 0.6;
  transition: var(--transition-normal);
}

.pillar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 0%, rgba(33, 118, 199, 0.08), transparent 70%);
  opacity: 0;
  transition: var(--transition-normal);
}

.pillar:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
  border-color: #93C5FD;
}

.pillar:hover::before {
  opacity: 1;
  height: 6px;
}

.pillar:hover::after {
  opacity: 1;
}

.pillar-ico {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #EEF6FF 0%, #E2EEFF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
  transition: var(--transition-normal);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 4px 12px rgba(33, 118, 199, 0.12);
}

.pillar:hover .pillar-ico {
  transform: scale(1.12) rotate(6deg);
  background: linear-gradient(135deg, var(--blue-lt) 0%, #D0E4FF 100%);
}

.pillar-e {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pillar-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 13.5px;
  color: var(--text3);
  line-height: 1.65;
}

/* ==========================================================================
   7. HOW IT WORKS / TRIPLE INTEGRATION SECTION
   ========================================================================== */
.how {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #FFFFFF;
  padding: 30px 25px;
  position: relative;
  overflow: hidden;
}

.how::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 154, 232, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}

.how-step {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 40px 32px;
  transition: var(--transition-normal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.how-step:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(74, 154, 232, 0.55);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 30px rgba(74, 154, 232, 0.2);
}

.how-node {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 26px;
  transition: var(--transition-normal);
}

.how-step:hover .how-node {
  transform: scale(1.1);
}

.how-node.n1 {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(33, 118, 199, 0.4);
}

.how-node.n2,
.how-node.n3 {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  font-size: 22px;
}

.how-module {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.how-title {
  font-size: 23px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.how-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 24px;
}

.how-list {
  list-style: none;
}

.how-list li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.how-list li:last-child {
  border-bottom: none;
}

.how-check {
  color: var(--green-bright);
  font-weight: 700;
  flex-shrink: 0;
}

.how-quote {
  margin-top: 60px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.how-quote strong {
  color: #7DC4FF;
}

/* ==========================================================================
   8. WHY BUILDNEX.AI SECTION
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}

.why-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 34px 28px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue));
  opacity: 0;
  transition: var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-card-hover);
  border-color: #BFDBFE;
}

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

.why-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--transition-normal);
}

.why-card:hover .why-ico {
  transform: scale(1.12) rotate(4deg);
  background: var(--blue-lt);
}

.why-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.why-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.why-desc {
  font-size: 14.5px;
  color: var(--text2);
  line-height: 1.7;
}

/* ==========================================================================
   9. PLATFORM FEATURES SECTION - MODERN IMAGE CARD ELEVATION
   ========================================================================== */
.features-section {
  background: var(--bg2);
  padding: 30px 25px;
}

.features-intro {
  max-width: 660px;
  margin-bottom: 64px;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1260px;
  margin: 0 auto;
}

.feat-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 440px;
  min-height: 280px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.feat-card.reverse {
  grid-template-columns: 440px 1fr;
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: #BFDBFE;
}

.feat-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-card.reverse .feat-body {
  order: 2;
}

.feat-card.reverse .feat-img-wrap {
  order: 1;
}

.feat-img-wrap {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.feat-card:hover .feat-img-wrap {
  transform: scale(1.04);
}

.feat-ico {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--transition-normal);
}

.feat-card:hover .feat-ico {
  transform: scale(1.1) rotate(5deg);
  background: #D0E4FF;
}

.feat-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.feat-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}

.feat-desc {
  font-size: 14.5px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 24px;
}

.feat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.feat-pill {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-lt);
  padding: 6px 14px;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.feat-card:hover .feat-pill {
  transform: translateY(-2px);
}

.feat-pill.g {
  color: var(--green);
  background: var(--green-lt);
}

/* ==========================================================================
   10. STAKEHOLDERS / SOLUTIONS SECTION
   ========================================================================== */
.stk-section {
  background: #FFFFFF;
  padding: 30px 20px;
}

.stk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}

.stk-card {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.stk-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: #BFDBFE;
}

.stk-top {
  padding: 10px 20px 20px;
  border-bottom: 1px solid var(--border);
  background: #FFFFFF;
}

.stk-ico {
  font-size: 40px;
  display: block;
  margin-bottom: 16px;
  transition: var(--transition-normal);
}

.stk-card:hover .stk-ico {
  transform: scale(1.12);
}

.stk-role {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.stk-name {
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.stk-desc {
  font-size: 14.5px;
  color: var(--text2);
  line-height: 1.65;
}

.stk-bottom {
  padding: 24px 30px;
}

.stk-list {
  list-style: none;
}

.stk-list li {
  font-size: 14px;
  color: var(--text2);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.stk-list li:last-child {
  border-bottom: none;
}

.stk-check {
  color: var(--green-mid);
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================================================
   11. TRADES SECTION
   ========================================================================== */
.trades-section {
  background: var(--bg2);
  padding: 30px 25px;
}

.trades-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 60px;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}

.trade {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.trade:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--green-mid);
  box-shadow: 0 12px 30px rgba(45, 125, 50, 0.15);
}

.trade-ico {
  font-size: 38px;
  display: block;
  margin-bottom: 16px;
  transition: var(--transition-normal);
}

.trade:hover .trade-ico {
  transform: scale(1.15) rotate(6deg);
}

.trade-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.trade-desc {
  font-size: 12.5px;
  color: var(--text3);
  line-height: 1.6;
}

/* ==========================================================================
   12. AI SECTION (COMING SOON)
   ========================================================================== */
.ai-section {
  padding: 30px 25px;
  background: linear-gradient(138deg, #EEF6FF 0%, #E8F5E9 100%);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -90px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 118, 199, 0.1) 0%, transparent 70%);
}

.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-lt);
  border: 1px solid #BFDBFE;
  color: var(--blue);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(33, 118, 199, 0.12);
}

.ai-title {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px;
  margin-bottom: 20px;
  line-height: 1.18;
}

.ai-desc {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 28px;
}

.ai-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ai-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 24px 22px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.ai-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
  background: #FFFFFF;
}

.ai-card-ico {
  font-size: 26px;
  margin-bottom: 12px;
}

.ai-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.ai-card-desc {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.6;
}

/* ==========================================================================
   13. PRICING SECTION - MODERN ELEVATED TIER CARDS
   ========================================================================== */
.pricing-section {
  background: #FFFFFF;
  padding: 104px 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 38px 34px;
  position: relative;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: #BFDBFE;
}

.price-card.hot {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-color: var(--navy);
  box-shadow: 0 16px 44px rgba(26, 63, 122, 0.35), 0 0 0 2px var(--blue);
}

.price-card.hot:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 56px rgba(26, 63, 122, 0.45), 0 0 30px rgba(33, 118, 199, 0.4);
}

.price-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #FFFFFF;
  padding: 5px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(33, 118, 199, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p-tier {
  font-size: 12px;
  font-weight: 800;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.price-card.hot .p-tier {
  color: rgba(255, 255, 255, 0.55);
}

.p-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

.price-card.hot .p-name {
  color: #FFFFFF;
}

.p-price {
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.price-card.hot .p-price {
  color: #FFFFFF;
}

.p-price-note {
  font-size: 13.5px;
  color: var(--text3);
  margin-top: 8px;
  margin-bottom: 26px;
}

.price-card.hot .p-price-note {
  color: rgba(255, 255, 255, 0.55);
}

.p-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.price-card.hot .p-divider {
  background: rgba(255, 255, 255, 0.14);
}

.p-list {
  list-style: none;
  margin-bottom: 34px;
  flex-grow: 1;
}

.p-item {
  font-size: 14px;
  color: var(--text2);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.price-card.hot .p-item {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.12);
}

.p-item:last-child {
  border-bottom: none;
}

.p-check {
  color: var(--green-mid);
  font-weight: 700;
  flex-shrink: 0;
}

.price-card.hot .p-check {
  color: var(--green-bright);
}

.p-btn {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition-normal);
}

.p-btn:hover {
  transform: translateY(-2px);
}

.btn-p-navy {
  background: var(--navy);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(26, 63, 122, 0.2);
}

.btn-p-white {
  background: #FFFFFF;
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.btn-p-white:hover {
  background: #F8FAFC;
}

.btn-p-soft {
  background: var(--bg2);
  color: var(--navy);
  border: 1.5px solid var(--border);
}

/* ==========================================================================
   14. CTA BANNER
   ========================================================================== */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 20px 30px;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 60, 0.90);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.12;
}

.cta-content p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin: 0 auto 46px;
  line-height: 1.75;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cw {
  background: #FFFFFF;
  color: var(--navy);
  padding: 16px 38px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transition: var(--transition-normal);
}

.btn-cw:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  background: #F8FAFC;
}

.btn-cw-outline {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  padding: 16px 38px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
  transition: var(--transition-normal);
}

.btn-cw-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-2px);
}

.cta-contact-strip {
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  z-index: 1;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.cta-contact-item a {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  transition: var(--transition-fast);
}

.cta-contact-item a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
footer {
  background: #1E3A5F;
  padding: 10px 60px 8px;
  color: #FFFFFF;
}

.foot-top {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}

.foot-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.foot-logo-img {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  background: #FFFFFF;
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.foot-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  max-width: 310px;
}

.foot-col-title {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

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

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

.foot-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  transition: var(--transition-fast);
}

.foot-links a:hover {
  color: #FFFFFF;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  max-width: 1260px;
  margin: 0 auto;
}

.foot-copy {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}

.foot-right a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 24px;
  transition: var(--transition-fast);
}

.foot-right a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   16. ANIMATIONS & REVEAL CLASSES
   ========================================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.12s;
}

.d2 {
  transition-delay: 0.22s;
}

.d3 {
  transition-delay: 0.32s;
}

.d4 {
  transition-delay: 0.42s;
}

/* ==========================================================================
   17. MEDIA QUERIES & RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1100px) {
  .nav {
    padding: 0 28px;
  }

  .section,
  .how,
  .stk-section,
  .trades-section,
  .ai-section,
  .pricing-section,
  .features-section {
    padding: 76px 28px;
  }

  .hero {
    padding: 120px 28px 76px;
  }

  .problem {
    padding: 60px 28px;
  }

  .cta-banner {
    padding: 84px 28px;
  }

  footer {
    padding: 60px 28px 32px;
  }

  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trades-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .feat-card,
  .feat-card.reverse {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .feat-card.reverse .feat-body {
    order: 1;
  }

  .feat-card.reverse .feat-img-wrap {
    order: 2;
  }

  .feat-img-wrap {
    min-height: 240px;
  }

  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0 20px;
    height: 68px;
  }

  .nav-links {
    display: none;
  }

  .nav-demo {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-drawer {
    display: block;
    top: 68px;
  }

  .section,
  .how,
  .stk-section,
  .trades-section,
  .ai-section,
  .pricing-section,
  .features-section {
    padding: 60px 20px;
  }

  .hero {
    padding: 104px 20px 60px;
    min-height: auto;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hud-badge {
    transform: scale(0.85);
  }

  .hud-badge-1 {
    left: 0;
  }

  .hud-badge-2 {
    right: 0;
  }

  .hud-badge-3 {
    left: 10px;
  }

  .problem {
    padding: 48px 20px;
  }

  .cta-banner {
    padding: 68px 20px;
  }

  footer {
    padding: 52px 20px 28px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .hero-stat:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .hero-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trades-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .stk-grid,
  .pricing-grid,
  .ai-cards {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    max-width: 480px;
  }

  .problem-pills {
    flex-direction: column;
  }

  .cta-contact-strip {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    justify-content: center;
    width: 100%;
  }

  .feat-body {
    padding: 32px 24px;
  }

  .foot-top {
    grid-template-columns: 1fr;
  }

  .foot-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .foot-right a {
    margin: 0 10px;
  }

  .whatsapp-float {
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 480px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .trades-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }

  .hero-stat:last-child {
    border-bottom: none !important;
  }
}

.mro-toolkit {
  background: #1E0A2D;
  /* Deep purple */
  color: #FFFFFF;
  padding: 1.5rem 0;
}

.toolkit-main-title {
  color: #00E5FF;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
  text-wrap: balance;
}

.toolkit-tracker-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.toolkit-subtitle-box {
  color: #00E5FF;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.toolkit-connector-line {
  width: 2px;
  height: 30px;
  background: #00E5FF;
}

.toolkit-connector-bar {
  width: 100%;
  height: 2px;
  background: #00E5FF;
  position: relative;
}

.toolkit-connector-bar::before,
.toolkit-connector-bar::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 15px;
  background: #00E5FF;
  top: 0;
}

.toolkit-connector-bar::before {
  left: 0;
}

.toolkit-connector-bar::after {
  right: 0;
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1rem;
  padding-top: 0rem;
}

.toolkit-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tc-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tc-icon {
  font-size: 2.2rem;
  color: #FFFFFF;
  opacity: 0.9;
  grid-row: 1 / span 2;
}

.tc-category {
  font-size: 0.95rem;
  color: #FFFFFF;
  line-height: 1.3;
  grid-column: 2;
  grid-row: 1;
}

.tc-badge {
  background: #5973FF;
  color: #FFFFFF;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
  white-space: nowrap;
}

.tc-desc {
  color: #E2E8F0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .toolkit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .toolkit-main-title {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   INTERACTIVE SUITE SHOWCASE SECTION
   ========================================================================== */
.suite-interactive-section {
  background: #080D1A;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.suite-tabs-wrap {
  margin-top: 50px;
}

.suite-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.suite-tab {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(51, 65, 85, 0.6);
  color: #94A3B8;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.suite-tab:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(99, 102, 241, 0.5);
  color: #E2E8F0;
  transform: translateY(-2px);
}

.suite-tab.active {
  background: linear-gradient(135deg, #4F46E5 0%, #3B82F6 100%);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4);
}

.suite-tab-content {
  position: relative;
}

.tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: center;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.15);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.panel-info h3 {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.25;
}

.panel-info p {
  color: #94A3B8;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.panel-list li {
  font-size: 14px;
  color: #CBD5E1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.panel-list li i {
  color: #22C55E;
  font-size: 16px;
  margin-top: 2px;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(51, 65, 85, 0.6);
  padding-top: 20px;
}

.p-metric {
  display: flex;
  flex-direction: column;
}

.p-metric-num {
  font-size: 24px;
  font-weight: 800;
  color: #38BDF8;
}

.p-metric-lbl {
  font-size: 12px;
  color: #64748B;
  font-weight: 600;
  margin-top: 2px;
}

/* Panel Preview & Live Cards */
.panel-preview {
  position: relative;
}

.live-preview-card {
  background: #0B132B;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.15);
}

.lpc-header {
  background: #050A18;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #94A3B8;
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

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

.lpc-badge {
  margin-left: auto;
  background: rgba(34, 197, 94, 0.2);
  color: #4ADE80;
  border: 1px solid rgba(34, 197, 94, 0.4);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
}

.lpc-badge.badge-blue {
  background: rgba(59, 130, 246, 0.2);
  color: #60A5FA;
  border-color: rgba(59, 130, 246, 0.4);
}

.lpc-badge.badge-red {
  background: rgba(239, 68, 68, 0.2);
  color: #F87171;
  border-color: rgba(239, 68, 68, 0.4);
}

.lpc-body {
  padding: 24px;
}

/* Face Scan Box */
.bio-scan-box {
  background: #030712;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.scan-target-frame {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(15, 23, 42, 0.8);
}

.scan-user-icon {
  font-size: 60px;
  color: #38BDF8;
}

.scan-target-frame .corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid #38BDF8;
}

.corner.tl {
  top: -2px;
  left: -2px;
  border-right: 0;
  border-bottom: 0;
}

.corner.tr {
  top: -2px;
  right: -2px;
  border-left: 0;
  border-bottom: 0;
}

.corner.bl {
  bottom: -2px;
  left: -2px;
  border-right: 0;
  border-top: 0;
}

.corner.br {
  bottom: -2px;
  right: -2px;
  border-left: 0;
  border-top: 0;
}

.scanning-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #38BDF8, transparent);
  box-shadow: 0 0 15px #38BDF8;
  animation: scanMove 2.5s ease-in-out infinite alternate;
}

@keyframes scanMove {
  0% {
    top: 5%;
  }

  100% {
    top: 95%;
  }
}

.bio-status-pill {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ADE80;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lpc-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  background: rgba(15, 23, 42, 0.5);
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(51, 65, 85, 0.4);
}

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

.lpc-stat span {
  font-size: 11px;
  color: #64748B;
  font-weight: 600;
}

.lpc-stat strong {
  font-size: 13px;
  color: #E2E8F0;
  margin-top: 2px;
}

.text-green {
  color: #4ADE80 !important;
}

.text-blue {
  color: #60A5FA !important;
}

/* Map Preview Box */
.map-preview-box {
  height: 180px;
  background: #030712;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(59, 130, 246, 0.2) 1px, transparent 1px);
  background-size: 20px 20px;
}

.map-polygon-area {
  width: 75%;
  height: 70%;
  border: 2px dashed #38BDF8;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 14px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 10px;
}

.map-label {
  font-size: 10px;
  font-weight: 800;
  color: #38BDF8;
  letter-spacing: 0.05em;
}

.map-marker-point {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #3B82F6;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px #3B82F6;
}

.pulse-marker::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #3B82F6;
  animation: pulse 2s infinite;
}

/* Payroll Preview List */
.payroll-preview-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payroll-item {
  background: #030712;
  border: 1px solid rgba(51, 65, 85, 0.5);
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pi-left {
  display: flex;
  flex-direction: column;
}

.pi-left strong {
  font-size: 14px;
  color: #F1F5F9;
}

.pi-left span {
  font-size: 12px;
  color: #64748B;
  margin-top: 2px;
}

.pi-right {
  font-size: 16px;
  font-weight: 800;
}

/* Vision Box */
.vision-scan-box {
  background: #030712;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vision-frame {
  width: 100%;
  height: 130px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(34, 197, 94, 0.4);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.vision-icon {
  font-size: 48px;
  color: #22C55E;
}

.green-box {
  position: absolute;
  border: 1.5px solid #22C55E;
  background: rgba(34, 197, 94, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.green-box span {
  font-size: 9px;
  font-weight: 800;
  color: #22C55E;
}

.green-box:nth-child(1) {
  top: 10px;
  left: 10px;
}

.green-box:nth-child(2) {
  bottom: 10px;
  right: 10px;
}

/* Interactive Showcase Responsive */
@media (max-width: 992px) {
  .panel-grid {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

/* =========================================================================
   COMPACT SLANTED AGENT SECTION (FACE AUTH & OTHERS)
   ========================================================================= */
.agent-compact-section {
  display: flex;
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  padding: 0;
  min-height: max(550px, 70vh);
  height: auto;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.agent-compact-content {
  width: 65%;
  padding: 3rem 22% 3rem 6%;
  z-index: 2;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agent-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.agent-icon-wrap {
  font-size: 2.5rem;
  color: #5C1D38;
  opacity: 0.9;
}

.agent-title {
  font-size: 1.6rem;
  color: #0f172a;
  line-height: 1.25;
  font-weight: 600;
  margin-top: 0.2rem;
}

.agent-hl {
  color: #5C1D38;
  font-weight: 700;
}

.agent-list-group {
  margin-bottom: 1.2rem;
  padding-left: 3.5rem;
}

.agent-list-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  border-bottom: 2px solid #00E5FF;
  padding-bottom: 0.3rem;
  width: fit-content;
}

.agent-list-header i {
  font-size: 1.5rem;
  color: #5C1D38;
}

.agent-list-title {
  font-size: 1.3rem;
  color: #5C1D38;
  font-weight: 600;
}

.agent-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.agent-list li {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
}

.agent-list li .slash {
  color: #00E5FF;
  font-weight: 700;
}

.agent-compact-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
}

.agent-compact-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: right center;
  display: block;
}

#remote-inspection .agent-compact-image img {
  object-position: center;
}

#face-auth .agent-compact-image img {
  object-fit: contain;
  object-position: center right;
  padding: 1rem 0;
}

#voice-ai .agent-compact-image img {
  object-fit: contain;
  padding: 1rem 0;
}

/* =========================================================================
   REVERSED COMPACT AGENT SECTION (IMAGE LEFT, CONTENT RIGHT)
   ========================================================================= */
.agent-compact-section.reversed .agent-compact-content {
  margin-left: auto;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
  padding: 3rem 6% 3rem 22%;
}

.agent-compact-section.reversed .agent-compact-image {
  left: 0;
  right: auto;
}

.agent-compact-section.reversed .agent-compact-image img {
  object-position: left center;
}

@media (max-width: 1024px) {
  .agent-compact-section {
    min-height: auto;
  }

  .agent-compact-content {
    width: 70%;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  }

  .agent-compact-image img {
    min-height: 400px;
    height: 50vh;
  }

  .agent-compact-section.reversed .agent-compact-content {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  }
}

@media (max-width: 768px) {
  .agent-compact-section {
    flex-direction: column;
    min-height: auto;
    height: auto;
  }

  .agent-compact-content {
    width: 100%;
    padding: 40px 24px;
    clip-path: none;
  }

  .agent-list-group {
    padding-left: 0;
  }

  .agent-compact-image {
    position: relative;
    width: 100%;
    height: auto;
  }

  .agent-compact-image img {
    min-height: 300px;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .agent-compact-section.reversed {
    display: flex;
    flex-direction: column-reverse;
  }

  .agent-compact-section.reversed .agent-compact-content {
    clip-path: none;
  }
}

/* =========================================================================
   AGENT DESC TEXT & DARK THEME OVERRIDES (COMPACT AGENT SECTIONS)
   ========================================================================= */
.agent-desc-text {
  font-size: 1.05rem;
  color: #475569;
  margin-top: -1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  padding-left: 3.5rem;
}

@media (max-width: 768px) {
  .agent-desc-text {
    padding-left: 0;
  }
}

.agent-compact-section.dark-theme {
  background: var(--navy-dark);
}

.agent-compact-section.dark-theme .agent-compact-content {
  background: var(--navy-dark);
}

.agent-compact-section.dark-theme .agent-title {
  color: #FFFFFF;
}

.agent-compact-section.dark-theme .agent-list-title {
  color: #FFFFFF;
}

.agent-compact-section.dark-theme .agent-list li {
  color: #CBD5E1;
}

.agent-compact-section.dark-theme .agent-desc-text,
.agent-compact-section.dark-theme p[style*="color: #475569"] {
  color: #CBD5E1 !important;
}

.agent-compact-section.dark-theme .agent-icon-wrap {
  color: #00E5FF;
}

.agent-compact-section.dark-theme .agent-hl {
  color: #00E5FF;
}

.agent-compact-section.dark-theme .agent-list-header i {
  color: #00E5FF;
}

.agent-compact-section.dark-theme .agent-list-header {
  border-bottom-color: #00E5FF;
}

.agent-compact-section.dark-theme .agent-list li .slash {
  color: #00E5FF;
}

/* =========================================================================
   AGENT COMPACT SECTION ANIMATIONS
   ========================================================================= */
.agent-compact-section.reveal .agent-compact-image,
.agent-compact-section.reveal .agent-compact-content {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Standard (Content Left, Image Right) */
.agent-compact-section.reveal:not(.reversed) .agent-compact-content {
  transform: translateX(-40px);
}

.agent-compact-section.reveal:not(.reversed) .agent-compact-image {
  transform: translateX(40px) scale(0.95);
}

/* Reversed (Image Left, Content Right) */
.agent-compact-section.reversed.reveal .agent-compact-image {
  transform: translateX(-40px) scale(0.95);
}

.agent-compact-section.reversed.reveal .agent-compact-content {
  transform: translateX(40px);
}

/* Active State Triggered by JS */
.agent-compact-section.reveal.in .agent-compact-image,
.agent-compact-section.reveal.in .agent-compact-content {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* =========================================================================
   MODERN FOOTER REDESIGN
   ========================================================================= */
.modern-footer {
  background-color: #0b1120;
  color: #94A3B8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
  z-index: 10;
}

.footer-top-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4px 5px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 40px;
}

.brand-col {
  padding-right: 40px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo-wrap img {
  height: 48px;
  width: auto;
}

.brand-text {
  font-size: 24px;
  font-weight: 800;
  color: #38BDF8;
  letter-spacing: 0.5px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #94A3B8;
  margin-bottom: 30px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.f-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.f-social:hover {
  transform: translateY(-3px);
}

.f-social.fb {
  background-color: #1877F2;
}

.f-social.ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.f-social.li {
  background-color: #0A66C2;
}

.f-social.x {
  background-color: #000000;
}

.back-to-top {
  width: 45px;
  height: 45px;
  background-color: #2563EB;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.back-to-top:hover {
  background-color: #1D4ED8;
}

.f-col-title {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.f-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
  width: 100%;
}

.f-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.f-links li a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.f-links li a i {
  font-size: 12px;
  color: #38BDF8;
}

.f-links li a:hover {
  color: #38BDF8;
}

.f-contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}

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

.f-icon-box {
  width: 36px;
  height: 36px;
  background-color: rgba(59, 130, 246, 0.1);
  color: #38BDF8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.f-text-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.f-text-box strong {
  color: #FFFFFF;
  font-size: 15px;
}

.f-text-box span {
  color: #94A3B8;
  font-size: 14px;
}

.f-btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #2563EB;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s ease;
}

.f-btn-quote:hover {
  background-color: #1D4ED8;
}

.footer-bottom-bar {
  background-color: #060913;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.f-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #64748B;
}

.f-copy i {
  background-color: #2563EB;
  color: #FFF;
  border-radius: 50%;
  padding: 2px;
  font-size: 10px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}

.f-credit strong {
  color: #38BDF8;
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .brand-col {
    padding-right: 0;
  }

  .f-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}