* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --deep-navy: #0f1729;
  --royal-blue: #1e3a8a;
  --ocean-blue: #1e40af;
  --sky-blue: #2563eb;
  --electric-blue: #06b6d4;
  --cyan-bright: #00d4ff;
  --cyan-light: #67e8f9;
  --accent-orange: #f97316;
  --accent-green: #10b981;
  --text-dark: #0f1729;
  --text-gray: #64748b;
  --bg-light: #fafbfc;
  --bg-blue-light: #f0f9ff;
  --bg-cyan-light: #ecfeff;

  /* Common Values */
  --border-radius-card: 24px;
  --border-radius-button: 16px;
  --backdrop-blur: blur(32px);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.3s ease;
  --shadow-card: 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 40px rgba(30, 58, 138, 0.4);
  --gradient-primary: linear-gradient(135deg, var(--royal-blue), var(--electric-blue));
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));

  /* Animation Timings */
  --animation-duration-slow: 0.8s;
  --animation-duration-medium: 0.6s;
  --animation-duration-fast: 0.3s;
  --animation-easing: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont,
    sans-serif;
  background: linear-gradient(135deg,
      var(--bg-blue-light) 0%,
      var(--bg-cyan-light) 50%,
      #f0f9ff 100%);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  nav {
    padding: 16px 0;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 12px 0;
  }
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 20px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.logo-text {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--royal-blue), var(--sky-blue));
  /* -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
  background-clip: text;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0 1px 2px rgba(30, 58, 138, 0.3));
}

.logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(30, 58, 138, 0.3));
}

@media (max-width: 768px) {
  .logo img {
    height: 36px;
  }

  .logo-text {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 32px;
  }

  .logo-text {
    font-size: 24px;
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: linear-gradient(135deg,
      var(--royal-blue),
      var(--electric-blue));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--royal-blue);
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-btn {
  background: linear-gradient(135deg,
      var(--royal-blue),
      var(--ocean-blue));
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  border: none;
  cursor: pointer;
}

/* Navigation transparent state styles */
nav:not(.scrolled) .cta-btn {
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.4), 0 0 20px rgba(6, 182, 212, 0.3);
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--sky-blue) 100%);
}

.cta-btn:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.1s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg,
      var(--bg-blue-light) 0%,
      var(--bg-cyan-light) 30%,
      #f0f9ff 100%);
  padding: 140px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Animated Background Elements */
.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg,
      rgba(30, 58, 138, 0.1),
      rgba(6, 182, 212, 0.08));
  backdrop-filter: blur(8px);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  will-change: transform;
}

.floating-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation: floatDiagonal 12s infinite;
  animation-delay: 0s;
}

.floating-shape-2 {
  width: 150px;
  height: 150px;
  top: 70%;
  right: 15%;
  animation: floatVertical 10s infinite;
  animation-delay: -2s;
}

.floating-shape-3 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 25%;
  animation: floatHorizontal 14s infinite;
  animation-delay: -4s;
}

.floating-shape-4 {
  width: 80px;
  height: 80px;
  top: 15%;
  right: 8%;
  animation: floatCircular 16s infinite;
  animation-delay: -1s;
}

.floating-shape-5 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation: floatScale 11s infinite;
  animation-delay: -3s;
}

.floating-shape-6 {
  width: 180px;
  height: 180px;
  bottom: 10%;
  right: 40%;
  animation: floatRotate 13s infinite;
  animation-delay: -5s;
}

/* Particle System */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(103, 232, 249, 0.6),
      rgba(37, 99, 235, 0.3));
  animation: particleFloat linear infinite;
  will-change: transform;
}

/* Dynamic particles with different sizes and speeds */
.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 20%;
  animation-duration: 20s;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 40%;
  animation-duration: 25s;
  animation-delay: -5s;
}

.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  left: 60%;
  animation-duration: 18s;
  animation-delay: -10s;
}

.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  left: 80%;
  animation-duration: 22s;
  animation-delay: -15s;
}

.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  left: 15%;
  animation-duration: 24s;
  animation-delay: -8s;
}

.particle:nth-child(6) {
  width: 3px;
  height: 3px;
  left: 35%;
  animation-duration: 19s;
  animation-delay: -12s;
}

.particle:nth-child(7) {
  width: 5px;
  height: 5px;
  left: 55%;
  animation-duration: 21s;
  animation-delay: -3s;
}

.particle:nth-child(8) {
  width: 4px;
  height: 4px;
  left: 75%;
  animation-duration: 23s;
  animation-delay: -7s;
}

/* Responsive Animation Adjustments */
@media (max-width: 768px) {

  .floating-shape-1,
  .floating-shape-6 {
    width: 120px;
    height: 120px;
  }

  .floating-shape-2 {
    width: 100px;
    height: 100px;
  }

  .floating-shape-3 {
    width: 80px;
    height: 80px;
  }

  .floating-shape-4,
  .floating-shape-5 {
    width: 60px;
    height: 60px;
  }

  .hero-particles .particle {
    animation-duration: 15s;
  }
}

@media (max-width: 480px) {

  .floating-shape-1,
  .floating-shape-6 {
    width: 80px;
    height: 80px;
  }

  .floating-shape-2,
  .floating-shape-3 {
    width: 60px;
    height: 60px;
  }

  .floating-shape-4,
  .floating-shape-5 {
    width: 40px;
    height: 40px;
  }

  .particle {
    width: 2px !important;
    height: 2px !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .floating-shape,
  .particle {
    animation: none;
  }

  .hero-bg-animation,
  .hero-particles {
    display: none;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle,
      rgba(0, 212, 255, 0.12) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle,
      rgba(30, 58, 138, 0.15) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
  will-change: transform;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
  z-index: 3;
  margin: 0 auto;
  min-height: 600px;
}

.hero-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-image: url('../images/shield.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 1;
  opacity: 0;
  animation: shieldEntrance 2s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards,
    shieldPulse 4s ease-in-out 3s infinite,
    shieldFloat 6s ease-in-out 3s infinite;
  filter: drop-shadow(0 0 20px rgba(30, 58, 138, 0.3));
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 20px;
  opacity: 0;
  transform: translateX(60px) scale(0.9);
  animation: slideInRight 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  align-self: flex-end;
  position: relative;
  z-index: 2;
}

/* Background Animation Keyframes */
@keyframes floatDiagonal {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(30px, -20px) rotate(90deg);
  }

  50% {
    transform: translate(50px, -10px) rotate(180deg);
  }

  75% {
    transform: translate(20px, -30px) rotate(270deg);
  }
}

@keyframes floatVertical {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-40px) scale(1.05);
  }
}

@keyframes floatHorizontal {

  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  50% {
    transform: translateX(60px) rotate(180deg);
  }
}

@keyframes floatCircular {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(40px, -20px) rotate(90deg);
  }

  50% {
    transform: translate(0, -40px) rotate(180deg);
  }

  75% {
    transform: translate(-40px, -20px) rotate(270deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes floatScale {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.7;
  }

  33% {
    transform: scale(1.2) rotate(120deg);
    opacity: 0.9;
  }

  66% {
    transform: scale(0.8) rotate(240deg);
    opacity: 0.6;
  }
}

@keyframes floatRotate {
  0% {
    transform: rotate(0deg) translateX(30px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(30px) rotate(-360deg);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0;
  }
}

/* Gradient Animation */
@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Hero Entrance Animations */

.hero-badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 14px 20px;
  border-radius: 60px;
  margin-bottom: 32px;
  margin-left: 0;
  margin-right: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--electric-blue);
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.15),
    0 4px 12px rgba(30, 58, 138, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateX(-60px);
  animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(103, 232, 249, 0.2),
      transparent);
  transition: left 0.6s ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.2),
    0 6px 16px rgba(30, 58, 138, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(6, 182, 212, 0.35);
}

.hero-badge:hover::before {
  left: 100%;
}

.hero-badge i {
  font-size: 16px;
  color: var(--cyan-bright);
  filter: drop-shadow(0 0 8px rgba(103, 232, 249, 0.4));
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg,
      var(--text-dark),
      var(--royal-blue),
      var(--sky-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateX(-60px);
  animation: slideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 36px;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 500px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

.hero-btn-secondary {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  padding: 16px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
  color: var(--royal-blue);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(6, 182, 212, 0.3);
}

.hero-btn-secondary:active {
  transform: translateY(-1px) scale(0.95);
  transition: all 0.1s ease;
}

.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 0px;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

.hero-stat {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.hero-stat:nth-child(1) {
  animation: scaleInBounce 1s cubic-bezier(0.4, 0, 0.2, 1) 1.1s forwards;
}

.hero-stat:nth-child(2) {
  animation: scaleInBounce 1s cubic-bezier(0.4, 0, 0.2, 1) 1.3s forwards;
}

.hero-stat:nth-child(3) {
  animation: scaleInBounce 1s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
}

.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg,
      var(--royal-blue),
      var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero-stat .label {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 600;
}

/* Enhanced 3D Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

@media (max-width: 768px) {
  .hero-visual {
    perspective: 800px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    perspective: 600px;
    margin-top: 0;
  }
}

/* Sections with enhanced styling */
.section {
  padding: 140px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(30, 58, 138, 0.2),
      transparent);
}

.section-title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.4;
  background: linear-gradient(135deg,
      var(--text-dark),
      var(--royal-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 80px;
  font-size: 1.375rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 500;
}

/* Enhanced Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 60px;
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 32px;
  padding: 48px 36px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(30, 58, 138, 0.05),
      transparent);
  transition: left 0.8s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle,
      rgba(103, 232, 249, 0.15),
      transparent);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover::after {
  width: 200px;
  height: 200px;
  top: -25%;
  right: -25%;
}

.feature-card:hover {
  transform: translateY(-15px);
  border-color: rgba(30, 58, 138, 0.3);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 30px 60px rgba(30, 58, 138, 0.15);
}

.feature-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg,
      var(--royal-blue),
      var(--electric-blue));
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 40px;
  color: #ffffff;
  transition: all 0.4s ease;
  position: relative;
  /* box-shadow: 0 15px 30px rgba(30, 58, 138, 0.2); */
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  /* box-shadow: 0 20px 40px rgba(30, 58, 138, 0.35); */
}

.feature-card h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 16px;
}

/* Enhanced Module Cards */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 28px;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .modules-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
  }
}

.module-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  border-radius: 32px;
  padding: 48px 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.module-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg,
      rgba(30, 58, 138, 0.1),
      rgba(6, 182, 212, 0.1));
  border-radius: 50%;
  transform: translate(40px, -40px);
  transition: all 0.5s ease;
}

.module-card:hover::after {
  width: 200px;
  height: 200px;
  transform: translate(30px, -30px);
}

.module-card:hover {
  transform: translateY(-12px);
  border-color: rgba(30, 58, 138, 0.4);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 25px 50px rgba(30, 58, 138, 0.12);
}

.module-card h3 {
  color: var(--text-dark);
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 16px;
}

.module-card h3::before {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg,
      var(--royal-blue),
      var(--electric-blue));
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(30, 58, 138, 0.5);
}

.module-card ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--text-gray);
  transition: all 0.3s ease;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.module-card ul li:hover {
  background: linear-gradient(135deg,
      rgba(30, 58, 138, 0.08),
      rgba(6, 182, 212, 0.06));
  color: var(--text-dark);
  transform: translateX(8px);
}

.module-card ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent-green);
  font-size: 14px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Enhanced Stats Section */
.stats {
  background: linear-gradient(135deg,
      var(--bg-blue-light) 0%,
      var(--bg-cyan-light) 30%,
      #f0f9ff 100%);
  border-radius: 32px;
  padding: 80px 60px;
  margin: 50px 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(30, 58, 138, 0.05),
      rgba(6, 182, 212, 0.03));
  border-radius: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.stat-item h3 {
  font-size: 4rem;
  background: linear-gradient(135deg,
      var(--royal-blue),
      var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  font-weight: 800;
  line-height: 1;
}

.stat-item p {
  color: var(--text-gray);
  font-weight: 600;
  font-size: 18px;
}

/* Stakeholders Section */

.stakeholders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .stakeholders-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .stakeholders-grid {
    gap: 16px;
    margin-top: 40px;
  }
}

.stakeholder-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 20px;
}

.stakeholder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom,
      var(--royal-blue),
      var(--electric-blue));
  transition: height 0.4s ease;
  border-radius: 0 2px 2px 0;
}

.stakeholder-card:hover::before {
  height: 100%;
}

.stakeholder-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(30, 58, 138, 0.3);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.12);
}

.stakeholder-icon {
  font-size: 3rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      rgba(30, 58, 138, 0.1),
      rgba(6, 182, 212, 0.1));
  border-radius: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(30, 58, 138, 0.2);
}

.stakeholder-card:hover .stakeholder-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg,
      rgba(30, 58, 138, 0.15),
      rgba(6, 182, 212, 0.15));
  border-color: rgba(30, 58, 138, 0.3);
}

.stakeholder-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.stakeholder-content p {
  color: var(--text-gray);
  font-weight: 500;
  line-height: 1.5;
  font-size: 15px;
}

@media (max-width: 768px) {
  .stakeholder-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 16px;
  }

  .stakeholder-icon {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
  }

  .stakeholder-content h3 {
    font-size: 1.1rem;
  }

  .stakeholder-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .stakeholder-card {
    padding: 24px 20px;
    gap: 12px;
  }

  .stakeholder-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .stakeholder-content h3 {
    font-size: 1rem;
  }

  .stakeholder-content p {
    font-size: 13px;
  }
}

/* Pricing Section */
.pricing-title-icon {
  background: linear-gradient(135deg, var(--royal-blue), var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 16px;
  font-size: 0.9em;
}

.pricing-container {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.pricing-card {
  background: var(--gradient-card);
  backdrop-filter: var(--backdrop-blur);
  border-radius: 28px;
  padding: 0;
  max-width: 520px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--royal-blue), var(--electric-blue), var(--cyan-bright));
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* .pricing-card:hover::before {
        opacity: 1;
      }

      .pricing-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 
          0 40px 120px rgba(30, 58, 138, 0.2),
          0 20px 60px rgba(30, 58, 138, 0.15);
      } */

.pricing-badge {
  background: linear-gradient(135deg, var(--royal-blue), var(--ocean-blue));
  color: white;
  padding: 10px 24px;
  border-radius: 20px 20px 0 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-badge i {
  font-size: 1.1rem;
}

.pricing-header {
  padding: 40px 40px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(30, 58, 138, 0.08);
}

.pricing-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.currency {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--royal-blue);
  line-height: 1;
  margin-top: 5px;
  margin-bottom: auto;
}

.price {
  font-size: 5rem;
  font-weight: 800;
  background: var(--royal-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.period {
  font-size: 1.2rem;
  color: var(--text-gray);
  font-weight: 500;
  margin-left: 8px;
  text-transform: uppercase;
}

.price-note {
  font-size: 0.9rem;
  color: var(--electric-blue);
  font-weight: 600;
  background: rgba(30, 58, 138, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
}

.pricing-features {
  padding: 40px;
}

.features-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: -0.01em;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(30, 58, 138, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* border-radius: 12px; */
}

.feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-item:hover {
  /* background: linear-gradient(135deg, rgba(30, 58, 138, 0.04), rgba(6, 182, 212, 0.02)); */
  transform: translateX(8px);
  padding-left: 12px;
  margin-left: -12px;
  margin-right: -12px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(6, 182, 212, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 1.3rem;
  color: var(--royal-blue);
}

.feature-item:hover .feature-icon {
  /* background: linear-gradient(135deg, var(--royal-blue), var(--electric-blue)); */
  transform: scale(1.1);
}

.feature-content {
  flex: 1;
  text-align: left;
}

.feature-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.4;
}

.pricing-cta {
  padding: 0 40px 40px;
  text-align: center;
}

.pricing-btn {
  background: linear-gradient(135deg, var(--royal-blue), var(--ocean-blue));
  color: white;
  padding: 18px 40px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.pricing-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.pricing-btn:hover::before {
  left: 100%;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.35);
}

.pricing-btn i:last-child {
  transition: transform 0.3s ease;
}

.pricing-btn:hover i:last-child {
  transform: translateX(4px);
}

.pricing-guarantee {
  font-size: 0.9rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-guarantee i {
  color: var(--electric-blue);
  font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(30, 58, 138, 0.05) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(6, 182, 212, 0.04) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite reverse;
}

.testimonials-container {
  margin-top: 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  mask: linear-gradient(90deg,
      transparent,
      white 10%,
      white 90%,
      transparent);
  -webkit-mask: linear-gradient(90deg,
      transparent,
      white 10%,
      white 90%,
      transparent);
}

.testimonials-marquee {
  display: flex;
  gap: 32px;
  animation: scroll-left 90s linear infinite;
  width: max-content;
  padding-top: 20px;
  padding-bottom: 30px;
}

.testimonials-marquee:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 400px;
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(30, 58, 138, 0.3);
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
}

.testimonial-quote {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  font-size: 16px;
}

.testimonial-quote::before {
  content: "";
  font-size: 3rem;
  position: absolute;
  top: -15px;
  left: -10px;
  color: var(--electric-blue);
  opacity: 0.4;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--royal-blue), var(--electric-blue)) border-box;
}

.testimonial-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.testimonial-info p {
  color: var(--text-gray);
  font-weight: 500;
  line-height: 1.5;
  font-size: 0.9rem;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1.1rem;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
  .testimonials-container {
    margin-top: 60px;
  }

  .testimonials-marquee {
    gap: 24px;
    animation-duration: 70s;
  }

  .testimonial-card {
    width: 350px;
    padding: 24px;
  }

  .testimonial-quote {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .testimonial-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .testimonials-container {
    margin-top: 50px;
  }

  .testimonials-marquee {
    gap: 20px;
    animation-duration: 60s;
  }

  .testimonial-card {
    width: 300px;
    padding: 20px;
  }

  .testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .testimonial-author {
    gap: 12px;
  }

  .testimonial-info h4 {
    font-size: 1rem;
  }

  .testimonial-info p {
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-marquee {
    animation: none;
  }

  .testimonials-container {
    overflow-x: auto;
    mask: none;
    -webkit-mask: none;
  }
}

/* Enhanced CTA Section */
.cta-section {
  background: linear-gradient(135deg,
      #1e3a8a 0%,
      #2563eb 50%,
      #3b82f6 100%);
  background: linear-gradient(135deg, var(--royal-blue), var(--ocean-blue));
  padding: 40px 60px 0;
  border-radius: 32px;
  margin: 120px 0;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite reverse;
}

/* CTA Decorative Circles */
.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0.12) 50%,
      transparent 80%);
  background: #ffffff10;
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}

.cta-circle-1 {
  width: 260px;
  height: 260px;
  top: 15%;
  right: 10%;
  animation: floatVertical 8s ease-in-out infinite;
  animation-delay: -2s;
}

.cta-circle-2 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  right: 25%;
  animation: floatHorizontal 10s ease-in-out infinite;
  animation-delay: -4s;
}

.cta-circle-3 {
  width: 90px;
  height: 90px;
  top: 40%;
  left: 8%;
  animation: floatScale 12s ease-in-out infinite;
  animation-delay: -1s;
}

.cta-circle-4 {
  width: 200px;
  height: 200px;
  top: 60%;
  left: 15%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.08) 60%,
      transparent 80%);
  background: #ffffff10;
  animation: floatCircular 15s ease-in-out infinite;
  animation-delay: -6s;
}

/* Responsive adjustments for CTA circles */
@media (max-width: 768px) {
  .cta-circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 5%;
  }

  .cta-circle-2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    right: 20%;
  }

  .cta-circle-3 {
    width: 60px;
    height: 60px;
    top: 35%;
    left: 5%;
  }

  .cta-circle-4 {
    width: 140px;
    height: 140px;
    top: 55%;
    left: 10%;
  }
}

@media (max-width: 480px) {

  .cta-circle-1,
  .cta-circle-4 {
    width: 80px;
    height: 80px;
  }

  .cta-circle-2,
  .cta-circle-3 {
    width: 50px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-circle {
    animation: none;
  }
}

.cta-content {
  text-align: left;
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
}

.cta-content h2 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.2;
  opacity: 0;
  transform: translateX(-50px);
  position: relative;
  overflow: hidden;
}

.cta-content.animate h2 {
  animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.cta-content h2::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.cta-content.animate h2::after {
  animation: shimmer 2s ease-in-out 1.5s forwards;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
}

.cta-content.animate p {
  animation: slideInFromBottom 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.cta-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
}

.cta-content .cta-btn {
  background: rgba(255, 255, 255, 0.95);
  color: var(--royal-blue);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-content.animate .cta-btn {
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.cta-content .cta-btn:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-gray);
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
  color: var(--royal-blue);
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate3d {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@keyframes chartGrow {
  0% {
    transform: scaleY(0.5);
  }

  100% {
    transform: scaleY(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleInBounce {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatGentle {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }

  50% {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 30px rgba(6, 182, 212, 0.2);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Section Title Entrance Animations */
@keyframes titleSlideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes titleFadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes subtitleSlideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shield Animations */
@keyframes shieldEntrance {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3) rotate(-10deg);
    filter: drop-shadow(0 0 0px rgba(30, 58, 138, 0));
  }

  60% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.1) rotate(2deg);
    filter: drop-shadow(0 0 25px rgba(30, 58, 138, 0.4));
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: drop-shadow(0 0 20px rgba(30, 58, 138, 0.3));
  }
}

@keyframes shieldPulse {

  0%,
  100% {
    /* opacity: 0.25; */
    filter: drop-shadow(0 0 20px rgba(30, 58, 138, 0.3));
  }

  50% {
    /* opacity: 0.4; */
    filter: drop-shadow(0 0 35px rgba(30, 58, 138, 0.5));
  }
}

@keyframes shieldFloat {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) translateY(0px) rotate(0deg);
  }

  33% {
    transform: translate(-50%, -50%) scale(1) translateY(-8px) rotate(1deg);
  }

  66% {
    transform: translate(-50%, -50%) scale(1) translateY(5px) rotate(-1deg);
  }
}

/* Animation Classes */
.section-title {
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-subtitle {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.animate-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.section-subtitle.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: none;
  }

  .hero {
    padding: 120px 0 0;
  }

  .hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1.1rem;
    max-width: 500px;
  }

  .hero-image {
    min-height: 500px;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    align-self: flex-end;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
  }

  .modules-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }

  .section {
    padding: 100px 0;
  }

  .section-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-container .cta-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .container {
    padding: 0 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    min-height: auto;
  }

  .hero-image {
    min-height: 350px;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    align-self: flex-end;
  }

  .hero-content {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero {
    padding: 100px 0 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 32px;
  }

  .hero-badge {
    padding: 10px 20px;
    font-size: 13px;
    margin-bottom: 28px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
  }

  .cta-btn {
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-btn-secondary {
    padding: 14px 20px;
    font-size: 14px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-stat .number {
    font-size: 2rem;
  }

  .hero-stat .label {
    font-size: 13px;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    line-height: 1.5;
  }

  .features-grid,
  .modules-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card,
  .module-card {
    padding: 32px 24px;
    border-radius: 24px;
    text-align: center;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-card h3,
  .module-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .feature-card p,
  .module-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  .benefits-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-item {
    padding: 24px 20px;
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .benefit-item p {
    font-size: 14px;
    line-height: 1.5;
  }

  .stats {
    padding: 50px 24px;
    margin: 60px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stat-item h3 {
    font-size: 3rem;
  }

  .stat-item p {
    font-size: 16px;
  }

  .cta-section {
    padding: 60px 32px 0;
    margin: 60px 0;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .cta-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .cta-content h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.5;
  }

  .cta-image img {
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 90px 0 0;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 28px;
  }

  .hero-badge {
    padding: 8px 16px;
    font-size: 12px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.1;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .hero-main-card {
    padding: 20px 16px;
    width: 260px;
  }

  .hero-3d-container {
    width: 280px;
    height: 280px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-card,
  .module-card {
    padding: 28px 20px;
    text-align: center;
  }

  .feature-card h3,
  .module-card h3 {
    font-size: 1.25rem;
  }

  .feature-card p,
  .module-card p {
    font-size: 14px;
  }

  .stats {
    padding: 40px 20px;
    margin: 50px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .stat-item p {
    font-size: 15px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero-stat {
    min-width: 120px;
  }

  .hero-stat .number {
    font-size: 1.8rem;
  }

  .hero-stat .label {
    font-size: 12px;
  }

  .hero-image {
    min-height: 280px;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    border-radius: 16px;
    display: block;
    align-self: flex-end;
  }

  .cta-section {
    padding: 50px 24px 0;
    margin: 50px 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .cta-content p {
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.4;
  }

  .cta-image img {
    max-width: 280px;
  }

  .cta-content .cta-btn {
    font-size: 14px;
    padding: 14px 28px;
  }

  .benefit-item {
    padding: 20px 16px;
  }

  .benefit-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .benefit-item h4 {
    font-size: 1rem;
  }

  .benefit-item p {
    font-size: 13px;
  }

  .module-card ul li {
    padding: 12px 16px;
    font-size: 14px;
  }

  nav {
    padding: 16px 0;
  }

  .logo {
    font-size: 28px;
  }

  .mobile-sidebar {
    width: 280px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }

  .hero-buttons {
    margin-bottom: 40px;
  }
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  z-index: 2000;
  padding: 20px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

@media (max-width: 480px) {
  .mobile-sidebar {
    width: 100%;
    max-width: 100%;
    right: -100%;
  }
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.mobile-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-sidebar-logo img {
  height: 36px;
  width: auto;
}

.mobile-sidebar-logo .logo-text {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--royal-blue), var(--sky-blue));
  /* -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
  background-clip: text;
  letter-spacing: -0.02em;
}

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-close-btn:hover {
  color: var(--royal-blue);
  transform: rotate(90deg);
}

.mobile-sidebar-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-nav-links {
  list-style: none;
  margin-bottom: 30px;
  flex: 1;
}

.mobile-nav-links li {
  margin-bottom: 20px;
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sidebar.active .mobile-nav-links li {
  transform: translateX(0);
  opacity: 1;
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(5) {
  transition-delay: 0.5s;
}

.mobile-nav-links a {
  display: block;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(30, 58, 138, 0.1),
      transparent);
  transition: left 0.6s ease;
}

.mobile-nav-links a:hover::before {
  left: 100%;
}

.mobile-nav-links a:hover {
  color: var(--royal-blue);
  background: linear-gradient(135deg,
      rgba(30, 58, 138, 0.1),
      rgba(6, 182, 212, 0.05));
  transform: translateX(10px);
}

.mobile-cta-btn {
  background: linear-gradient(135deg,
      var(--royal-blue),
      var(--ocean-blue));
  color: #ffffff;
  padding: 16px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  display: block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  margin-top: auto;
  flex-shrink: 0;
}

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Footer */
footer {
  background: var(--deep-navy);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

@media (max-width: 768px) {
  footer {
    padding: 60px 0 32px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 50px 0 24px;
  }
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.1));
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }
}

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-section ul li a:hover {
  color: var(--cyan-bright);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.footer-bottom p:last-child {
  margin-top: 16px;
  font-weight: 600;
}

.footer-bottom span {
  background: linear-gradient(135deg,
      var(--cyan-bright),
      var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Benefits Section */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .benefits-list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 50px;
  }

  .pricing-container {
    padding: 60px 0;
  }

  .pricing-card {
    margin: 0 16px;
    max-width: 100%;
  }

  .pricing-header {
    padding: 32px 24px 16px;
  }

  .pricing-title {
    font-size: 1.3rem;
  }

  .price {
    font-size: 4rem;
  }

  .currency {
    font-size: 2rem;
  }

  .period {
    font-size: 1.1rem;
  }

  .pricing-features {
    padding: 32px 24px;
  }

  .feature-item {
    padding: 16px 0;
    gap: 16px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-icon i {
    font-size: 1.1rem;
  }

  .feature-name {
    font-size: 1rem;
  }

  .feature-desc {
    font-size: 0.9rem;
  }

  .pricing-cta {
    padding: 0 24px 32px;
  }

  .pricing-btn {
    padding: 16px 32px;
    font-size: 1rem;
    gap: 8px;
  }

  .pricing-guarantee {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .benefits-list {
    gap: 12px;
    margin-top: 40px;
  }

  .pricing-container {
    padding: 40px 0;
  }

  .pricing-card {
    margin: 0 8px;
    border-radius: 24px;
  }

  .pricing-header {
    padding: 24px 20px 12px;
  }

  .pricing-title {
    font-size: 1.2rem;
  }

  .price {
    font-size: 3.5rem;
  }

  .currency {
    font-size: 1.8rem;
  }

  .period {
    font-size: 1rem;
  }

  .price-wrapper {
    gap: 2px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pricing-features {
    padding: 24px 20px;
  }

  .feature-item {
    padding: 14px 0;
    gap: 12px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
  }

  .feature-icon i {
    font-size: 1rem;
  }

  .feature-name {
    font-size: 0.95rem;
  }

  .feature-desc {
    font-size: 0.85rem;
  }

  .pricing-cta {
    padding: 0 20px 24px;
  }

  .pricing-btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

.benefit-item {
  display: flex;
  /* align-items: center; */
  gap: 24px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom,
      var(--royal-blue),
      var(--electric-blue));
  transition: height 0.4s ease;
  border-radius: 0 2px 2px 0;
}

.benefit-item:hover::before {
  height: 100%;
}

.benefit-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(30, 58, 138, 0.3);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.12);
}

.benefit-icon {
  background: linear-gradient(135deg,
      var(--royal-blue),
      var(--electric-blue));
  color: #ffffff;
  font-size: 24px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.3);
}

.benefit-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.benefit-item p {
  color: var(--text-gray);
  font-weight: 500;
  line-height: 1.5;
}