:root {
  /* ===== Enhanced eVISIBILITY Color Palette ===== */
  --evisibility-navy: #1e3a8a;
  --evisibility-teal: #14b8a6;
  --evisibility-green: #22c55e;
  --evisibility-light-green: #84cc16;
  --evisibility-purple-start: #7c3aed;
  --evisibility-purple-end: #c026d3;
  --evisibility-dark: #0f172a;

  /* ===== Modern Accent Colors ===== */
  --accent-cyan: #06b6d4;
  --accent-blue: #3b82f6;
  --accent-indigo: #6366f1;
  --accent-pink: #ec4899;
  --accent-orange: #f97316;
  --accent-amber: #f59e0b;

  /* ===== Base Theme Variables ===== */
  --bg-main: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  --bg-secondary: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-nav: rgba(255, 255, 255, 0.7);
  --bg-nav-scrolled: rgba(255, 255, 255, 0.95);

  --text-main: #0f172a;
  --text-sec: #475569;
  --text-muted: #64748b;

  --border-color: rgba(148, 163, 184, 0.2);
  --shadow-base: rgba(0, 0, 0, 0.1);
  --glow-color: rgba(124, 58, 237, 0.4);

  /* ===== Functional Variables ===== */
  --primary-color: var(--evisibility-purple-start);
  --primary-dark: #6d28d9;
  --primary-light: var(--evisibility-purple-end);
  --secondary-color: var(--evisibility-navy);
  --accent-color: var(--evisibility-teal);
  --accent-green: var(--evisibility-green);
  --accent-light-green: var(--evisibility-light-green);

  --dark-bg: var(--bg-secondary);
  --darker-bg: var(--bg-main);
  --card-bg: var(--bg-card);

  --text-primary: var(--text-main);
  --text-secondary: var(--text-sec);

  /* ===== Modern Gradients ===== */
  --gradient-1: linear-gradient(135deg, #7c3aed 0%, #c026d3 50%, #ec4899 100%);
  --gradient-2: linear-gradient(135deg, #14b8a6 0%, #22c55e 50%, #84cc16 100%);
  --gradient-3: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #6366f1 100%);
  --gradient-purple: linear-gradient(
    120deg,
    #7c3aed 0%,
    #a855f7 50%,
    #c026d3 100%
  );
  --gradient-esg: linear-gradient(
    120deg,
    #14b8a6 0%,
    #22c55e 33%,
    #84cc16 66%,
    #f59e0b 100%
  );
  --gradient-ocean: linear-gradient(
    135deg,
    #0ea5e9 0%,
    #06b6d4 50%,
    #14b8a6 100%
  );
  --gradient-sunset: linear-gradient(
    135deg,
    #f97316 0%,
    #ec4899 50%,
    #c026d3 100%
  );

  /* ===== Glassmorphism ===== */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);

  /* ===== Enhanced Shadows ===== */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 60px var(--glow-color), 0 0 30px rgba(124, 58, 237, 0.2);
  --shadow-glow-green:
    0 0 60px rgba(34, 197, 94, 0.4), 0 0 30px rgba(34, 197, 94, 0.2);
  --shadow-glow-blue:
    0 0 60px rgba(59, 130, 246, 0.4), 0 0 30px rgba(59, 130, 246, 0.2);

  /* ===== Animation Variables ===== */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f8fafc;
  background-image:
    radial-gradient(at 0% 0%, rgba(124, 58, 237, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(20, 184, 166, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(34, 197, 94, 0.05) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(59, 130, 246, 0.05) 0px, transparent 50%);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  transition:
    background-color var(--transition-slow),
    color var(--transition-base);
}

/* Animated background pattern */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(124, 58, 237, 0.02) 35px,
    rgba(124, 58, 237, 0.02) 70px
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* Smooth transitions for theme changes */
*,
*::before,
*::after {
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

/* ===== Standardized Typography System ===== */
/* Base font size: 14px for body text */
body {
  font-size: 0.875rem; /* 14px */
}

/* Paragraph and body text */
p {
  font-size: 0.875rem; /* 14px */
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Small text (captions, labels, badges) */
small,
.text-small {
  font-size: 0.75rem; /* 12px */
  line-height: 1.5;
}

/* Headings */
h1 {
  font-size: 3rem; /* 48px - Hero titles */
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem; /* 40px - Section titles */
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

h3 {
  font-size: 1.375rem; /* 22px - Subsection titles */
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

h4 {
  font-size: 1.25rem; /* 20px - Card titles */
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  font-size: 1rem; /* 16px */
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.4;
}

h6 {
  font-size: 0.875rem; /* 14px */
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.4;
}

/* Legacy heading styles for compatibility */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ===== Smooth Scrolling ===== */
html {
  scroll-behavior: smooth;
}

/* ===== Header & Navigation ===== */
.navbar {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 0.75rem 0;
  transition: all var(--transition-base);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1000;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(124, 58, 237, 0.3) 50%,
    transparent 100%
  );
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  padding: 0.5rem 0;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.06);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-container i {
  color: var(--primary-color);
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

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

.logo-text {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-image {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
  .logo-image {
    height: 36px;
  }
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary) !important;
}

/* Active link styling - same as hover */
.nav-link.active {
  color: var(--text-primary) !important;
}

.nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-2);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:not(.dropdown-toggle):hover::after,
.nav-link:not(.dropdown-toggle).active::after {
  width: 80%;
}

/* Dropdown toggle gets underline on hover and active */
.nav-link.dropdown-toggle::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-2);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link.dropdown-toggle:hover::before,
.nav-link.dropdown-toggle.active::before {
  width: 80%;
}

/* Remove Bootstrap's default arrow */
.nav-link.dropdown-toggle::after {
  display: none !important;
}

/* Dropdown toggle styling - simplified without Bootstrap arrow */
.dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
}

/* Custom SVG dropdown icon styling */
.dropdown-icon {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

/* Rotate icon when dropdown is open */
.dropdown-toggle[aria-expanded="true"] .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  background: var(--bg-nav-scrolled);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  margin-top: 0.5rem;
}

.dropdown-item {
  color: var(--text-secondary);
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(0, 102, 255, 0.1);
  color: var(--text-primary);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all var(--transition-base);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.btn-outline-light::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width var(--transition-slow),
    height var(--transition-slow);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline-light:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #14b8a6 0%, #22c55e 50%, #84cc16 100%);
  background-size: 200% 200%;
  border: none;
  color: white;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all var(--transition-base);
  box-shadow:
    0 8px 25px rgba(20, 184, 166, 0.3),
    0 4px 12px rgba(20, 184, 166, 0.2);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background-position: 100% 0;
  box-shadow:
    0 12px 35px rgba(20, 184, 166, 0.4),
    0 6px 16px rgba(20, 184, 166, 0.3),
    0 0 30px rgba(20, 184, 166, 0.2);
  animation: gradient-shift 3s ease infinite;
}

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

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-light {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--primary-color);
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all var(--transition-base);
  box-shadow:
    0 4px 20px rgba(255, 255, 255, 0.3),
    0 2px 8px rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
  background: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 35px rgba(255, 255, 255, 0.5),
    0 6px 16px rgba(255, 255, 255, 0.3);
  border-color: white;
}

/* ===== Navbar Toggler & Mobile Menu ===== */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15, 23, 42, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.navbar-toggler:active,
.navbar-toggler:focus:active {
  outline: none;
  box-shadow: none;
}

/* Mobile menu alignment */
@media (max-width: 991px) {
  .navbar-collapse {
    text-align: left;
    margin-top: 1rem;
    padding: 1rem 0;
  }

  .navbar-nav {
    align-items: flex-start !important;
  }

  .nav-item {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .nav-link {
    padding: 0.75rem 0 !important;
  }

  .dropdown-menu {
    border: none;
    background: transparent;
    box-shadow: none;
    padding-left: 1rem;
  }

  .dropdown-item {
    padding: 0.5rem 0;
  }
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.7) 0%,
    rgba(5, 8, 22, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 0 12rem 0;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #ffffff; /* Force white text for title on video background */
}

.animated-text {
  display: inline-block;
  background: linear-gradient(90deg, #fff, #3385ff, #00d4aa, #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(
    255,
    255,
    255,
    0.85
  ); /* Force light text for subtitle on video background */
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-cta .btn {
  margin: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ===== Metrics Ticker ===== */
.metrics-ticker {
  position: static;
  width: 100%;
  z-index: 3;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: -2rem;
}

.metrics-ticker .container {
  width: 100%;
}

.metric-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.metric-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ===== New Metric Cards Design ===== */
.metrics-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
}

.gradient-teal {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #14b8a6 100%);
}

.gradient-indigo {
  background: linear-gradient(135deg, #3730a3 0%, #4f46e5 50%, #6366f1 100%);
}

.gradient-rose {
  background: linear-gradient(135deg, #be123c 0%, #e11d48 50%, #f43f5e 100%);
}

.metric-card-new {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 1.25rem 1rem;
  text-align: left;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 1px 4px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 90px;
}

.metric-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 0;
}

.metric-card-new::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.03) 0%,
    rgba(20, 184, 166, 0.03) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
  border-radius: 16px;
}

.metric-card-new:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.12),
    0 5px 15px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.metric-card-new:hover::before {
  left: 100%;
  opacity: 1;
}

.metric-card-new:hover::after {
  opacity: 1;
}

.metric-icon-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.metric-icon-bg {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  position: relative;
  transition: all var(--transition-bounce);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.1);
}

.metric-icon-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 100%
  );
  opacity: 0.5;
}

.metric-card-new:hover .metric-icon-bg {
  transform: rotate(-10deg) scale(1.2);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 15px rgba(124, 58, 237, 0.4);
}

.metric-icon-bg i {
  position: relative;
  z-index: 1;
  animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-3px) rotate(5deg);
  }
}

.gradient-blue {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c026d3 100%);
}

.gradient-green {
  background: linear-gradient(135deg, #14b8a6 0%, #22c55e 50%, #10b981 100%);
}

.gradient-purple {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

.gradient-orange {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ec4899 100%);
}

.metric-content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.metric-card-new .metric-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
  margin-bottom: 0;
  line-height: 1.1;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--text-sec) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all var(--transition-base);
}

.metric-card-new:hover .metric-value {
  transform: scale(1.05);
  letter-spacing: 0.5px;
}

.metric-card-new .metric-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
  transition: color var(--transition-base);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.metric-card-new:hover .metric-label {
  color: var(--text-primary);
}

.metric-trend {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1) 0%,
    rgba(34, 197, 94, 0.15) 100%
  );
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

.metric-card-new:hover .metric-trend {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.2) 0%,
    rgba(34, 197, 94, 0.3) 100%
  );
  border-color: rgba(16, 185, 129, 0.5);
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.metric-trend i {
  font-size: 0.625rem;
  animation: bounce-up 2s ease-in-out infinite;
}

@keyframes bounce-up {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* ===== Feature Icon Image Styles ===== */
.feature-icon-img {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.feature-icon-img img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.feature-card:hover .feature-icon-img {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
}

.metric-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 0;
}

.metric-card-new::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.03) 0%,
    rgba(20, 184, 166, 0.03) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
  border-radius: 16px;
}

.metric-card-new:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.12),
    0 5px 15px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.metric-card-new:hover::before {
  left: 100%;
  opacity: 1;
}

.metric-card-new:hover::after {
  opacity: 1;
}

.metric-icon-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.metric-icon-bg {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  position: relative;
  transition: all var(--transition-bounce);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.1);
}

.metric-icon-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 100%
  );
  opacity: 0.5;
}

.metric-card-new:hover .metric-icon-bg {
  transform: rotate(-10deg) scale(1.2);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 0 15px rgba(124, 58, 237, 0.4);
}

.metric-icon-bg i {
  position: relative;
  z-index: 1;
  animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-3px) rotate(5deg);
  }
}

.gradient-blue {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c026d3 100%);
}

.gradient-green {
  background: linear-gradient(135deg, #14b8a6 0%, #22c55e 50%, #10b981 100%);
}

.gradient-purple {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

.gradient-orange {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ec4899 100%);
}

.metric-content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric-card-new .metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
  margin-bottom: 0.1rem;
  line-height: 1;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--text-sec) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all var(--transition-base);
}

.metric-card-new:hover .metric-value {
  transform: scale(1.08);
  letter-spacing: 0.5px;
}

.metric-card-new .metric-label {
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.2;
  transition: color var(--transition-base);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.metric-card-new:hover .metric-label {
  color: var(--text-primary);
}

.metric-trend {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  color: #10b981;
  font-weight: 700;
  padding: 0.4rem 0.65rem;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1) 0%,
    rgba(34, 197, 94, 0.15) 100%
  );
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

.metric-card-new:hover .metric-trend {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.2) 0%,
    rgba(34, 197, 94, 0.3) 100%
  );
  border-color: rgba(16, 185, 129, 0.5);
  transform: scale(1.08);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.metric-trend i {
  font-size: 0.6rem;
  animation: bounce-up 2s ease-in-out infinite;
}

@keyframes bounce-up {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .metric-card-new {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0.9rem 0.85rem;
  }

  .metric-icon-wrapper {
    margin-bottom: 0.75rem;
  }

  .metric-content {
    width: 100%;
  }

  .metric-card-new .metric-label {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .metric-trend {
    margin-top: 0.5rem;
    align-self: flex-start;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .metric-card-new {
    padding: 0.75rem 0.9rem;
    gap: 0.75rem;
  }

  .metric-icon-bg {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .metric-card-new .metric-value {
    font-size: 1.3rem;
  }

  .metric-card-new .metric-label {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .metric-trend {
    font-size: 0.65rem;
    padding: 0.35rem 0.55rem;
    gap: 0.25rem;
  }
}

/* ===== About Section ===== */
.about-section {
  background: var(--dark-bg);
  padding: 6rem 0;
}

.about-image-container {
  position: relative;
}

.about-image-container img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.floating-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--gradient-2);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.section-label {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1) 0%,
    rgba(20, 184, 166, 0.1) 100%
  );
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  border: 2px solid rgba(124, 58, 237, 0.2);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.section-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.section-label:hover::before {
  left: 100%;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--text-sec) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 0.875rem; /* 14px - Standard body text */
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.feature-list {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem; /* 14px - Standard body text */
  padding: 0.75rem;
  border-radius: 12px;
  transition: all var(--transition-base);
}

.feature-item:hover {
  background: rgba(124, 58, 237, 0.05);
  transform: translateX(10px);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1) 0%,
    rgba(20, 184, 166, 0.1) 100%
  );
  border-radius: 10px;
  transition: all var(--transition-bounce);
}

.feature-item:hover i {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.2) 0%,
    rgba(20, 184, 166, 0.2) 100%
  );
}

/* ===== About Features Grid - Modern Card Design ===== */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-slow);
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  animation: fadeInUp 0.6s ease-out backwards;
}

.about-feature-card[data-index="1"] {
  animation-delay: 0.1s;
}

.about-feature-card[data-index="2"] {
  animation-delay: 0.2s;
  transform: translateY(20px);
}

.about-feature-card[data-index="3"] {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.05) 0%,
    rgba(20, 184, 166, 0.05) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: 24px;
  z-index: 0;
}

.about-feature-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.8);
}

.about-feature-card[data-index="2"]:hover {
  transform: translateY(8px) scale(1.03);
}

.about-feature-card:hover::before {
  opacity: 1;
}

.feature-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.3) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  z-index: 0;
}

.about-feature-card:hover .feature-card-glow {
  opacity: 1;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
  }
}

.feature-card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  font-family: "Outfit", sans-serif;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.15) 0%,
    rgba(20, 184, 166, 0.15) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  z-index: 1;
  transition: all var(--transition-base);
}

.about-feature-card:hover .feature-card-number {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.3) 0%,
    rgba(20, 184, 166, 0.3) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.1);
}

.feature-card-icon-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.feature-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.feature-card-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: all 0.6s ease;
}

.about-feature-card:hover .feature-card-icon {
  transform: translateY(-8px) rotate(5deg) scale(1.1);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-feature-card:hover .feature-card-icon::before {
  opacity: 1;
  animation: shine 1.5s ease-in-out infinite;
}

@keyframes shine {
  0% {
    transform: translate(-100%, -100%) rotate(45deg);
  }
  100% {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

.feature-card-icon.gradient-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #14b8a6 100%);
}

.feature-card-icon.gradient-purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c026d3 100%);
}

.feature-card-icon.gradient-green {
  background: linear-gradient(135deg, #14b8a6 0%, #22c55e 50%, #84cc16 100%);
}

.feature-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.about-feature-card:hover .feature-card-title {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.feature-card-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-feature-card[data-index="2"] {
    transform: translateY(0);
  }

  .about-feature-card {
    padding: 2rem 1.5rem;
  }

  .feature-card-number {
    font-size: 2.5rem;
    top: 1rem;
    right: 1rem;
  }

  .feature-card-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
}

/* ===== About Video Styles ===== */
.about-video-container {
  position: relative;
  width: 100%;
}

.about-video-container .ratio {
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-video-container iframe {
  border-radius: 24px;
}

.about-video-section {
  background: var(--darker-bg);
  padding: 3rem 0 4rem;
}

.about-video-section .text-center.mb-4 {
  margin-bottom: 1.5rem !important;
}

.about-video-section .ratio {
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ===== Products Section ===== */
.products-section {
  background: var(--darker-bg);
  padding: 6rem 0;
}

/* Product Card Container */
.product-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 2rem;
  height: 100%;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-2);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.02) 0%,
    rgba(20, 184, 166, 0.02) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
  border-radius: 24px;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
}

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

.product-card:hover::after {
  opacity: 1;
}

/* All content inside product card should be above the pseudo-elements */
.product-card > * {
  position: relative;
  z-index: 1;
}

.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
}

.video-container:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.15),
    0 6px 16px rgba(0, 0, 0, 0.1),
    0 0 40px rgba(124, 58, 237, 0.15);
}

.product-video,
.infographic-video {
  width: 100%;
  border-radius: 20px;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4.5rem;
  color: rgba(255, 255, 255, 0.95);
  pointer-events: none;
  opacity: 0;
  transition: all var(--transition-base);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.video-container:hover .video-play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.product-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.15) 0%,
    rgba(20, 184, 166, 0.15) 100%
  );
  border: 1.5px solid rgba(124, 58, 237, 0.3);
  color: var(--primary-color);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
  transition: all var(--transition-base);
}

.product-badge:hover {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.25) 0%,
    rgba(20, 184, 166, 0.25) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.25);
}

.product-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

/* Two Column Content Headers */
.product-content-header {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.5rem;
}

.product-content-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-2);
  border-radius: 2px;
}

.product-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.7;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.product-features i {
  color: var(--accent-color);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.product-card .btn-primary {
  width: 100%;
  margin-top: 1rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* ===== Content Section ===== */
.content-section {
  background: var(--dark-bg);
  padding: 6rem 0;
}

.content-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-2);
}

.content-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.content-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.content-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.content-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ===== Infographic Section ===== */
.infographic-section {
  background: var(--darker-bg);
  padding: 6rem 0;
}

.infographic-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.infographic-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.infographic-header {
  margin-bottom: 1.5rem;
}

.infographic-header h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.infographic-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--dark-bg);
  padding: 3rem 0 4rem;
}

.cta-container {
  position: relative;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-glow);
  overflow: hidden;
  background: url("asset/maritime-ship-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 0;
}

.cta-container > * {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-description {
  font-size: 0.95rem;
  opacity: 0.95;
  color: #ffffff;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  line-height: 1.7;
  margin-bottom: 0;
}

.cta-container .btn-light {
  background: white;
  color: var(--primary-color);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-container .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ===== Footer ===== */
.footer-section {
  background: var(--darker-bg);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .product-title {
    font-size: 2rem;
  }

  .metric-value {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-container {
    padding: 3rem 2rem;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .product-title {
    font-size: 1.5rem;
  }

  .metric-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .metric-value {
    font-size: 1.75rem;
  }

  .metric-label {
    font-size: 0.8rem;
  }

  .content-card,
  .infographic-card {
    padding: 1.5rem;
  }

  .cta-container {
    padding: 2rem 1.5rem;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .hero-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    display: inline-block;
    width: auto;
    margin: 0.5rem 0.25rem;
  }

  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  /* Hero section mobile improvements */
  .hero-content {
    padding: 2.5rem 0 5rem 0;
  }

  .hero-section {
    min-height: 125vh;
    padding-top: 60px;
    align-items: flex-start;
  }

  .metrics-ticker {
    padding: 2rem 0;
    margin-top: -1rem;
    background: var(--bg-secondary);
  }

  .metrics-ticker .container {
    padding: 0 0.5rem;
  }

  .comparison-table-container {
    padding: 1rem;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 0.75rem 0.5rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* ===== Utility Classes ===== */
.text-gradient {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Accessibility & Focus States ===== */

/* Default focus state for all elements
 * Provides a visible outline when any element receives focus
 * Important for keyboard navigation accessibility */
/*
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
*/

/* Enhanced focus-visible state for interactive elements
 * Only shows when element is focused via keyboard (not mouse clicks)
 * Applies to links, buttons, and button-styled elements
 * Includes both outline and shadow for better visibility */
/*
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.2);
}
*/

/* Special focus state for navigation links
 * Adds background highlight and rounded corners
 * Provides clear visual feedback when navigating via keyboard */
/*
.nav-link:focus-visible {
    background: rgba(0, 102, 255, 0.1);
    border-radius: 8px;
}
*/

/* ===== Enhanced Transitions ===== */
.metric-card,
.content-card,
.infographic-card,
.mission-card,
.leader-card,
.expert-card,
.partner-card,
.feature-card,
.benefit-card,
.use-case-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card:hover,
.content-card:hover,
.infographic-card:hover {
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.25);
}

/* ===== Improved Button Animations ===== */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* ===== Loading States ===== */
.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary-color);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== Page Hero (Generic) ===== */
.page-hero {
  padding: 100px 0 50px;
  background: var(--darker-bg);
  position: relative;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== About Hero Split Layout ===== */
.about-hero {
  padding: 100px 0 50px;
}

.about-hero .page-title {
  font-size: 2.5rem;
}

.about-hero .page-subtitle {
  margin: 0;
  max-width: 100%;
}

.about-hero-video {
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.08);
}

.about-hero-video iframe {
  border-radius: 20px;
}

@media (max-width: 991px) {
  .about-hero {
    padding: 90px 0 30px;
    text-align: center;
  }

  .about-hero .page-title {
    font-size: 2rem;
  }

  .about-hero .page-subtitle {
    margin: 0 auto;
  }
}

/* ===== Product Hero ===== */
.product-hero {
  padding: 100px 0 3rem;
  background: var(--dark-bg);
  position: relative;
}

.product-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(20, 184, 166, 0.2),
    rgba(124, 58, 237, 0.2),
    transparent
  );
}

.product-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--text-sec) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-hero-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Ensure outline CTA is readable on light product hero backgrounds */
.product-hero .btn-outline-light {
  color: var(--primary-color);
  border-color: rgba(124, 58, 237, 0.28);
  background: rgba(255, 255, 255, 0.96);
}

.product-hero .btn-outline-light:hover {
  color: #ffffff;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.product-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-hero-cta .btn {
  flex: 0 1 auto;
}

/* ===== Mission Cards (About Page) ===== */
.mission-section {
  background: var(--darker-bg);
  padding: 4rem 0;
}

.mission-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.mission-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.mission-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.mission-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.mission-text {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.875rem;
}

/* ===== Leadership Cards ===== */
.leadership-section {
  background: var(--dark-bg);
  padding: 4rem 0;
}

.leadership-section .text-center.mb-5 {
  margin-bottom: 2.5rem !important;
}

.leader-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.leader-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.leader-card:hover .leader-image img {
  transform: scale(1.05);
}

.leader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 102, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.leader-card:hover .leader-overlay {
  opacity: 1;
}

.leader-info {
  padding: 1.25rem;
  text-align: center;
}

.leader-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.leader-role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0.5rem;
}

.leader-bio {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== Expert & Partner Cards ===== */
.council-section {
  background: var(--darker-bg);
  padding: 4rem 0;
}

.council-section .text-center.mb-5 {
  margin-bottom: 2.5rem !important;
}

.partners-section {
  background: var(--darker-bg);
  padding: 3rem 0;
}

.expert-card,
.partner-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.expert-card:hover,
.partner-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.expert-icon,
.partner-logo {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.expert-name,
.partner-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.expert-title {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.expert-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.partner-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

/* ===== Partner Scrolling Logos ===== */
.partner-scroll-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.partner-scroll-track {
  display: flex;
  gap: 3rem;
  animation: partner-scroll 30s linear infinite;
  width: max-content;
}

.partner-scroll-track:hover {
  animation-play-state: paused;
}

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

.partner-scroll-track .logo-item {
  flex-shrink: 0;
}

.partner-scroll-track .logo-item img {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  opacity: 1;
  transition: opacity var(--transition-base);
}

.partner-scroll-track .logo-item:hover img {
  opacity: 1;
}

/* ===== Product Overview Cards ===== */
.products-overview {
  background: var(--darker-bg);
}

.product-overview-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  height: 100%;
}

.product-icon-large {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.product-overview-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.product-overview-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.product-highlights {
  margin-bottom: 2rem;
}

.highlights-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.highlights-list {
  list-style: none;
  padding: 0;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.highlights-list i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

/* ===== Comparison Table ===== */
.comparison-section {
  background: var(--dark-bg);
}

.comparison-table-container {
  overflow-x: auto;
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
}

.comparison-table {
  width: 100%;
  color: var(--text-primary);
}

.comparison-table thead th {
  background: var(--gradient-2);
  padding: 1.25rem;
  font-weight: 700;
  text-align: center;
  border: none;
}

.comparison-table tbody td {
  padding: 1.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table .text-success {
  color: var(--secondary-color) !important;
}

.comparison-table .text-muted {
  color: var(--text-muted) !important;
}

.pricing-row {
  background: rgba(0, 102, 255, 0.1);
}

/* ===== Features Section ===== */
/* Subtle section separator for product pages */
.features-section,
.benefits-section,
.why-matters-section,
.workflow-section,
.use-cases-section,
.specs-section {
  position: relative;
}

.features-section::before,
.benefits-section::before,
.why-matters-section::before,
.use-cases-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(20, 184, 166, 0.15),
    rgba(124, 58, 237, 0.15),
    transparent
  );
}

.features-section {
  background: var(--darker-bg);
}

.feature-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  padding: 1.75rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-2);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.12),
    0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: white;
  margin-bottom: 1.25rem;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.feature-card:hover .feature-icon {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.feature-icon.icon-teal {
  background: linear-gradient(135deg, #14b8a6 0%, #22c55e 100%);
}
.feature-icon.icon-purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}
.feature-icon.icon-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}
.feature-icon.icon-orange {
  background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
}
.feature-icon.icon-pink {
  background: linear-gradient(135deg, #ec4899 0%, #c026d3 100%);
}
.feature-icon.icon-indigo {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ===== Solution Cards ===== */
.solutions-section {
  background: var(--dark-bg);
}

.solution-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
}

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

.solution-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.solution-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.solution-problem,
.solution-answer,
.solution-outcome {
  margin-bottom: 1.5rem;
}

.solution-problem h5,
.solution-answer h5,
.solution-outcome h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.solution-problem h5 i {
  color: var(--accent-color);
}

.solution-answer h5 i {
  color: var(--secondary-color);
}

.solution-outcome h5 i {
  color: #ffd700;
}

.solution-problem p,
.solution-answer p,
.solution-outcome p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ===== Benefits Section ===== */
.benefits-section {
  background: var(--darker-bg);
}

.benefit-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  padding: 1.75rem;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-2);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.12),
    0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-number {
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.benefit-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ===== Workflow Steps ===== */
.workflow-section {
  background: var(--dark-bg);
}

.workflow-step {
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.workflow-step:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.workflow-number {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.workflow-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  background: var(--gradient-3);
  margin-bottom: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.workflow-step:hover .workflow-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.workflow-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.workflow-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ===== Specs Cards ===== */
.specs-section {
  background: var(--dark-bg);
}

.specs-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  padding: 1.75rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.specs-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.specs-category {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.specs-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.specs-list li:last-child {
  margin-bottom: 0;
}

.specs-list i {
  color: #14b8a6;
  margin-top: 0.2rem;
  font-size: 0.75rem;
}

/* ===== Pricing Section ===== */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--card-bg);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.billing-label {
  font-weight: 600;
  color: var(--text-secondary);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.save-badge {
  background: var(--gradient-2);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-left: 0.5rem;
}

.pricing-section {
  background: var(--darker-bg);
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  background: rgba(0, 102, 255, 0.05);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-2);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-plan-name {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing-plan-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-price {
  text-align: center;
  margin-bottom: 2rem;
}

.price-currency {
  font-size: 2rem;
  vertical-align: top;
  color: var(--text-secondary);
}

.price-amount {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.price-period {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.price-custom {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  margin: 2rem 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.pricing-features li.disabled {
  opacity: 0.5;
}

.pricing-features i {
  color: var(--secondary-color);
  margin-top: 0.2rem;
}

.pricing-features li.disabled i,
.pricing-features .disabled-icon {
  color: var(--text-muted);
  opacity: 0.4;
}

.pricing-plan-tag {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1) 0%,
    rgba(20, 184, 166, 0.1) 100%
  );
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  margin-bottom: 0.75rem;
}

.pricing-credits {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(20, 184, 166, 0.15);
}

.pricing-credits i {
  margin-right: 0.5rem;
}

.coming-soon-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.enterprise-card {
  border: 2px dashed rgba(249, 158, 11, 0.4);
  background: rgba(249, 158, 11, 0.03);
}

.enterprise-card:hover {
  border-color: rgba(249, 158, 11, 0.6);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all var(--transition-base);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

/* ===== Comparison Table ===== */
.comparison-section {
  background: var(--dark-bg);
}

.comparison-table-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table {
  margin-bottom: 0;
  font-size: 0.8rem;
}

.comparison-table thead th {
  background: rgba(124, 58, 237, 0.1);
  color: var(--text-primary);
  font-weight: 700;
  padding: 1rem 1.25rem;
  border: none;
  text-align: center;
  font-size: 0.85rem;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table thead th.featured-col {
  background: rgba(124, 58, 237, 0.2);
}

.comparison-table tbody td {
  padding: 0.75rem 1.25rem;
  border-color: var(--border-color);
  color: var(--text-secondary);
  vertical-align: middle;
  text-align: center;
  background: var(--bg-card);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
}

.comparison-table tbody td.featured-col {
  background: rgba(124, 58, 237, 0.04);
}

.comparison-table tbody tr:hover td {
  background: rgba(124, 58, 237, 0.06);
}

.comparison-table .text-success {
  color: var(--accent-color) !important;
}

/* ===== Add-ons Section ===== */
.addons-section {
  background: var(--dark-bg);
}

.addon-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.addon-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.addon-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.addon-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.addon-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.addon-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== FAQ Section ===== */
.faq-section {
  background: var(--darker-bg);
}

.accordion-item {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
}

.accordion-button {
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: rgba(0, 102, 255, 0.1);
  color: var(--text-primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  background: transparent;
  color: var(--text-secondary);
  padding: 1.5rem;
  line-height: 1.7;
}

/* ===== Blog Filters ===== */
.blog-filters {
  background: var(--dark-bg);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-btn {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.blog-search {
  position: relative;
}

.blog-search input {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 0.75rem 1rem 0.75rem 3rem;
  border-radius: 50px;
}

.blog-search i {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
}

/* ===== Featured Blog Card ===== */
.featured-post {
  background: var(--darker-bg);
}

.featured-blog-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
}

.featured-blog-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.featured-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--gradient-2);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
}

.featured-blog-content {
  padding: 3rem;
}

.featured-blog-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.featured-blog-title a {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.featured-blog-title a:hover {
  color: var(--primary-color);
}

.featured-blog-excerpt {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ===== Blog Grid ===== */
.blog-grid {
  background: var(--dark-bg);
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-category.esg {
  background: rgba(0, 212, 170, 0.9);
}

.blog-category.maritime {
  background: rgba(0, 102, 255, 0.9);
}

.blog-category.regulations {
  background: rgba(255, 107, 53, 0.9);
}

.blog-category.technology {
  background: rgba(147, 51, 234, 0.9);
}

.blog-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.blog-title a {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-excerpt {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-author,
.blog-author-small {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-author img,
.blog-author-small img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--primary-light);
}

/* ===== Blog Pagination ===== */
.blog-pagination .pagination {
  gap: 0.5rem;
}

.blog-pagination .page-link {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.blog-pagination .page-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.blog-pagination .page-item.active .page-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.blog-pagination .page-item.disabled .page-link {
  opacity: 0.5;
}

/* ===== Newsletter Section ===== */
.newsletter-form .input-group {
  max-width: 500px;
  margin-left: auto;
}

.newsletter-form .form-control {
  background: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px 0 0 50px;
  color: var(--darker-bg);
  font-size: 0.95rem;
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  outline: none;
}

.newsletter-form .btn {
  border-radius: 0 50px 50px 0;
  padding: 0.75rem 2rem;
  font-weight: 700;
}

/* ===== Blog Post Page ===== */
.blog-post-header {
  padding: 150px 0 50px;
  background: var(--darker-bg);
}

.back-link {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: var(--primary-light);
}

.post-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.post-category {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
}

.post-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.post-author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.post-author-details {
  display: flex;
  flex-direction: column;
}

.post-author-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.post-author-role {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.post-share-buttons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: var(--primary-color);
  color: white;
}

.blog-post-image {
  padding: 2rem 0;
  background: var(--darker-bg);
}

.post-featured-image {
  border-radius: 24px;
  width: 100%;
}

.blog-post-content {
  background: var(--dark-bg);
}

.post-article {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.post-article .lead {
  font-size: 1.3rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 2rem;
}

.post-article h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.post-article h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-article ul,
.post-article ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.post-article li {
  margin-bottom: 0.75rem;
}

.post-highlight {
  background: var(--card-bg);
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  margin: 2.5rem 0;
  border-radius: 8px;
  position: relative;
}

.post-highlight i {
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.post-highlight p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.highlight-author {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: normal;
}

.post-image-inline {
  margin: 2.5rem 0;
}

.image-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
}

.post-cta {
  background: var(--gradient-2);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin: 3rem 0;
}

.post-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.post-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
}

.tag-label {
  font-weight: 700;
  color: var(--text-secondary);
}

.post-tag {
  background: var(--card-bg);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.post-tag:hover {
  background: var(--primary-color);
  color: white;
}

.post-share-section {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.post-share-section h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.share-buttons-large {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.share-btn-large {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.share-btn-large.linkedin {
  background: #0077b5;
  color: white;
}

.share-btn-large.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn-large.facebook {
  background: #1877f2;
  color: white;
}

.share-btn-large.email {
  background: var(--card-bg);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-btn-large:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.author-bio-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-bio-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 2rem;
}

.author-bio-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-bio-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.author-bio-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.author-bio-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.author-social-links {
  display: flex;
  gap: 0.75rem;
}

.author-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--darker-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.author-social-links a:hover {
  background: var(--primary-color);
  color: white;
}

/* ===== Blog Sidebar ===== */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.widget-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.sidebar-newsletter-form .form-control {
  background: var(--darker-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.related-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-post-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--darker-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.related-post-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.related-post-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.related-post-content h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.related-post-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  margin-bottom: 0.75rem;
}

.category-list a {
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.category-list a:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.category-list span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== Contact Page ===== */
.contact-options {
  background: var(--darker-bg);
}

.contact-option-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.contact-option-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.contact-option-card .btn-outline-light {
  color: var(--primary-color);
  border-color: rgba(20, 184, 166, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

.contact-option-card .btn-outline-light:hover {
  background: rgba(20, 184, 166, 0.15);
  color: var(--text-primary);
  border-color: rgba(20, 184, 166, 0.8);
}

.contact-option-icon {
  font-size: 2.25rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-option-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-option-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.85rem;
}

.contact-form-section {
  background: var(--dark-bg);
}

.contact-info-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.contact-info-list {
  margin-top: 1.25rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-info-content h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.contact-info-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
  font-size: 0.85rem;
}

.contact-form-container {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 2rem;
}

.contact-form .form-label {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  background: var(--darker-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: var(--darker-bg);
  border-color: var(--primary-color);
  color: var(--text-primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.25);
}

.contact-form .form-check-input {
  background-color: var(--darker-bg);
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-form .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-form .form-check-label {
  color: var(--text-secondary);
}

.demo-booking-section {
  background: var(--darker-bg);
}

.demo-booking-section.demo-revealed {
  animation: demoFadeIn 0.5s ease-out;
}

@keyframes demoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.demo-booking-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 2rem;
}

.demo-form .form-label {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.demo-form .form-control,
.demo-form .form-select {
  background: var(--darker-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
}

.demo-form .form-control:focus,
.demo-form .form-select:focus {
  background: var(--darker-bg);
  border-color: var(--primary-color);
  color: var(--text-primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.25);
}

.office-locations {
  background: var(--dark-bg);
}

.office-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.office-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.office-icon {
  font-size: 2.25rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.office-city {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.office-address {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.5;
  font-size: 0.85rem;
}

.office-contact {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
}

.office-contact i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* ===== Privacy Policy Page ===== */
.privacy-content {
  background: var(--darker-bg);
}

.privacy-document {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
}

.privacy-section {
  margin-bottom: 3rem;
}

.privacy-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
}

.privacy-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-section ul,
.privacy-section ol {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.privacy-section li {
  margin-bottom: 0.75rem;
}

.privacy-section a {
  color: var(--primary-color);
  font-weight: 600;
}

.privacy-section a:hover {
  color: var(--primary-light);
}

.contact-details {
  background: var(--darker-bg);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.contact-details p {
  margin: 0;
}

.privacy-quick-links h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.policy-link-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  color: var(--text-primary);
}

.policy-link-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  color: var(--primary-color);
}

.policy-link-card i {
  font-size: 2rem;
  color: var(--primary-color);
}

/* ===== Responsive Adjustments for New Pages ===== */
@media (max-width: 991px) {
  .page-title {
    font-size: 2.5rem;
  }

  .product-hero-title {
    font-size: 2.25rem;
  }

  .post-title {
    font-size: 2.5rem;
  }

  .author-bio-card {
    flex-direction: column;
    text-align: center;
  }

  .author-bio-avatar {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .page-title {
    font-size: 2rem;
  }

  .product-hero-title,
  .post-title {
    font-size: 1.75rem;
  }

  .featured-blog-content {
    padding: 2rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .filter-buttons {
    justify-content: center;
  }

  .blog-sidebar {
    position: static;
    margin-top: 3rem;
  }
}

/* ===== Why It Matters Section ===== */
.why-matters-section {
  background: var(--darker-bg);
}

.why-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.why-card:nth-child(1) .why-card::before,
.col-lg-4:nth-child(1) .why-card::before {
  background: linear-gradient(135deg, #7b68ee, #5b9fed);
}
.col-lg-4:nth-child(2) .why-card::before {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}
.col-lg-4:nth-child(3) .why-card::before {
  background: var(--gradient-2);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.12),
    0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
}

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

.why-card-featured {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.75);
}

.why-icon-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  position: relative;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.why-card:hover .why-icon {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.gradient-purple-blue {
  background: linear-gradient(135deg, #7b68ee 0%, #5b9fed 100%);
}

.gradient-orange-red {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
}

.gradient-green-teal {
  background: linear-gradient(135deg, #06d6a0 0%, #118ab2 100%);
}

.why-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.why-description {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
}

.why-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(123, 104, 238, 0.08);
  border: 1px solid rgba(123, 104, 238, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #7b68ee;
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.why-highlight i {
  font-size: 0.85rem;
}

.why-highlight-success {
  background: rgba(6, 214, 160, 0.08);
  border-color: rgba(6, 214, 160, 0.2);
  color: #06d6a0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .why-card {
    padding: 1.5rem 1.25rem;
    margin-bottom: 1rem;
  }

  .why-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .why-title {
    font-size: 1.05rem;
  }
}

/* ===== Use Case Cards ===== */
.use-cases-section {
  background: var(--dark-bg);
}

.use-case-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  padding: 1.75rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.use-case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-ocean);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.use-case-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.12),
    0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
}

.use-case-card:hover::before {
  opacity: 1;
}

.use-case-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: white;
  background: var(--gradient-ocean);
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.use-case-card:hover .use-case-icon {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.use-case-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.use-case-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.85rem;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .why-matters-section {
    padding: 4rem 0;
  }

  .why-card {
    padding: 1.5rem 1.25rem;
  }

  .why-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .why-title {
    font-size: 1.35rem;
  }

  .why-description {
    font-size: 0.95rem;
  }
}

/* ===== Remove Input Focus Outline ===== */
.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(123, 104, 238, 0.2);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(123, 104, 238, 0.2);
  border-color: var(--primary-color);
}

/* ===== Hero Badge ===== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
  color: var(--accent-green);
}

/* ===== Hero Features ===== */
.hero-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-feature-item i {
  color: var(--accent-green);
  font-size: 1rem;
}

/* ===== Trusted Section ===== */
.trusted-section {
  background: var(--bg-secondary);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
}

.trusted-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.trusted-logos {
  overflow: hidden;
}

.logo-track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  transition: all var(--transition-base);
  opacity: 1;
  margin: 0 auto;
}

.logo-item:hover {
  opacity: 1;
  color: var(--primary-color);
  transform: translateY(-3px);
}

.logo-item i {
  font-size: 2rem;
}

.logo-item img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

.logo-item span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: normal;
  text-align: center;
}

.logo-item {
  flex: 1 1 140px;
  max-width: 180px;
  min-width: 120px;
}

@media (max-width: 991px) {
  .logo-track {
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .logo-item {
    flex: 1 1 45%;
    max-width: 220px;
  }

  .logo-item span {
    font-size: 0.7rem;
  }
}

/* ===== Why Choose Section ===== */
.why-choose-section {
  background: var(--darker-bg);
  padding: 6rem 0;
}

/* ===== Benefit Cards ===== */
.benefit-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-2);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.benefit-card.featured {
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.1) 0%,
    rgba(34, 197, 94, 0.1) 100%
  );
  border-color: rgba(20, 184, 166, 0.3);
}

.benefit-card.featured::before {
  opacity: 1;
}

.benefit-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-2);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.benefit-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.benefit-list li i {
  color: var(--accent-color);
  font-size: 0.75rem;
}

/* ===== Benefit Swiper Slider ===== */
.benefitSwiper {
  padding-bottom: 2.5rem;
  overflow: hidden;
}

.benefitSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.benefitSwiper .benefit-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.benefitSwiper .benefit-card .benefit-description {
  flex: 1;
}

.benefitSwiper .swiper-button-next,
.benefitSwiper .swiper-button-prev {
  display: none;
}

.benefitSwiper .swiper-pagination {
  bottom: 0;
}

.benefitSwiper .swiper-pagination-bullet {
  background: var(--text-muted);
  opacity: 0.3;
  width: 6px;
  height: 6px;
  transition: all var(--transition-base);
}

.benefitSwiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
  width: 20px;
  border-radius: 3px;
}

/* ===== CTA Card Section ===== */
.cta-card-section {
  background: var(--darker-bg);
  padding: 4rem 0;
}

.cta-card-block {
  padding: 3.5rem 2.5rem;
}

.cta-card-block .section-title {
  font-size: 2rem;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  background: var(--bg-secondary);
  padding: 6rem 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all var(--transition-slow);
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(124, 58, 237, 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured {
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.05) 0%,
    rgba(34, 197, 94, 0.05) 100%
  );
  border-color: rgba(20, 184, 166, 0.2);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: #f59e0b;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.testimonialSwiper {
  padding-bottom: 3rem;
}

.testimonialSwiper .swiper-slide {
  height: auto;
}

.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev {
  display: none;
}

.testimonialSwiper .swiper-pagination {
  bottom: 0;
}

.testimonialSwiper .swiper-pagination-bullet {
  background: var(--text-muted);
  opacity: 0.3;
  width: 6px;
  height: 6px;
  transition: all var(--transition-base);
}

.testimonialSwiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
  width: 20px;
  border-radius: 3px;
}

/* ===== Stats Row ===== */
.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== New CTA Container ===== */
.cta-container-new {
  position: relative;
  border-radius: 24px;
  padding: 4rem;
  overflow: hidden;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c026d3 100%);
  text-align: center;
}

.cta-container-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

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

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-container-new .cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.cta-container-new .cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.cta-feature i {
  color: #84cc16;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-buttons .btn-light {
  background: white;
  color: var(--primary-color);
}

.cta-buttons .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.cta-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== FAQ Section ===== */
.faq-section {
  background: var(--darker-bg);
  padding: 6rem 0;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: transparent;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(124, 58, 237, 0.05);
  color: var(--primary-color);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237c3aed'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-cta p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== Responsive Updates for New Sections ===== */
@media (max-width: 991px) {
  .hero-features {
    gap: 1rem;
  }

  .hero-feature-item {
    font-size: 0.8rem;
  }

  .logo-track {
    gap: 2rem;
  }

  .stats-row {
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .cta-container-new {
    padding: 3rem 2rem;
  }

  .cta-container-new .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .logo-track {
    gap: 1.5rem;
  }

  .logo-item i {
    font-size: 1.5rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta-container-new {
    padding: 2.5rem 1.5rem;
  }

  .cta-container-new .cta-title {
    font-size: 1.75rem;
  }

  .cta-features {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* ===== Feature Icon Image Styles ===== */
.feature-icon-img {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.feature-icon-img img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.feature-card:hover .feature-icon-img {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
}

/* ===== Corporate ESG Process Flow ===== */
.corporate-process-flow {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-weight: 600;
  color: var(--text-main);
}

.process-index {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed 0%, #14b8a6 100%);
  flex-shrink: 0;
}

/* ===== Home News Update ===== */
.news-update-section {
  background: var(--darker-bg);
}

.news-date {
  font-weight: 700;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  padding: 0.5rem 1rem;
}

.news-banner {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 3.33;
}

.news-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.process-banner-esg {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  line-height: 0;
}

.process-banner-esg img {
  width: 100%;
  height: auto;
  display: block;
}

.news-banner-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 0.82) 100%
  );
}

.news-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 16px;
  padding: 1.25rem;
  height: 100%;
}

.news-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary-color);
  background: rgba(124, 58, 237, 0.12);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.7rem;
}

.news-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.news-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

/* ===== Corporate ESG For Whom ===== */
.for-whom-section {
  background: var(--darker-bg);
}

.for-whom-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  padding: 1.2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.for-whom-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.for-whom-card p {
  margin-bottom: 0;
  color: var(--primary-color);
  font-weight: 700;
}

@media (max-width: 991px) {
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .news-banner img {
    height: 200px;
  }
}

/* ===== ESG Intelligence Page ===== */
.intelligence-hero-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intelligence-hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.intelligence-media-tagline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 0.85) 100%
  );
}

.intelligence-video-wrap {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.intelligence-matrix-section {
  background: var(--darker-bg);
}

.intelligence-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.intelligence-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.8rem;
}

.intelligence-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

.intelligence-card li {
  margin-bottom: 0.45rem;
}

.intelligence-card blockquote {
  margin: 0.9rem 0 1rem;
  padding: 0.75rem;
  border-left: 3px solid var(--primary-color);
  background: rgba(124, 58, 237, 0.08);
  border-radius: 8px;
  color: var(--text-main);
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .intelligence-hero-media img {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .intelligence-hero-media img {
    height: 220px;
  }

  .intelligence-media-tagline {
    font-size: 0.9rem;
  }
}
