@import url(https://fonts.googleapis.com/css?family=Nunito:300,400,500,600,700&display=swap);/* ===========================
   HOMEPAGE SPECIFIC STYLES
   =========================== */

/* Keyframe Animations */

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

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

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

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

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

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

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

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

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

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

  50% {
    transform: scale(1.05);
  }
}

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

  50% {
    transform: scale(1.05);
  }
}

@-webkit-keyframes slideInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }

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

@keyframes slideInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }

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

@-webkit-keyframes checkmarkPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
  }

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

@keyframes checkmarkPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
  }

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

/* Hero Video Section */

.hero-video-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #000000 0%, #2d89ce 100%);
  overflow: hidden;
  padding-top: 120px;
}

.hero-text-content {
  color: white;
  -webkit-animation: fadeInLeft 1s ease-out;
          animation: fadeInLeft 1s ease-out;
  padding-right: 2rem;
}

.container {
  z-index: 10;
}

.hero-image-container {
  margin-left: 1rem;
}

.hero-image-container .hero-image-card {
  margin-top: 0;
  margin-left: 0;
}

.hero-image-container .image-wrapper {
  height: 250px;
}

.hero-image-container .hero-image {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-features-content {
  color: white;
  -webkit-animation: fadeInUp 1s ease-out 0.3s both;
          animation: fadeInUp 1s ease-out 0.3s both;
}

.features-section-hero {
  padding-right: 1rem;
}

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

.feature-list-compact li {
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  opacity: 0;
  -webkit-animation: fadeInLeft 0.6s ease-out forwards;
          animation: fadeInLeft 0.6s ease-out forwards;
}

.feature-list-compact li:nth-child(1) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.feature-list-compact li:nth-child(2) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.feature-list-compact li:nth-child(3) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.feature-list-compact li:nth-child(4) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.highlight-box-compact {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #2dce89;
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  -webkit-animation: slideInScale 1s ease-out 1.2s both;
          animation: slideInScale 1s ease-out 1.2s both;
}

.hero-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  -webkit-animation: fadeInRight 1s ease-out 0.6s both;
          animation: fadeInRight 1s ease-out 0.6s both;
}

.hero-cta-content {
  margin-top: 4rem;
  -webkit-animation: fadeInUp 1s ease-out 0.8s both;
          animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
  z-index: 1;
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  margin-top: 2rem;
  padding-right: 2rem;
  -webkit-animation: fadeInLeft 1s ease-out;
          animation: fadeInLeft 1s ease-out;
}

.hero-content h1 {
  -webkit-animation: fadeInUp 1s ease-out 0.2s both;
          animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content p {
  -webkit-animation: fadeInUp 1s ease-out 0.4s both;
          animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-content .feature-list {
  -webkit-animation: fadeInUp 1s ease-out 0.6s both;
          animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-content .highlight-box {
  -webkit-animation: slideInScale 1s ease-out 0.8s both;
          animation: slideInScale 1s ease-out 0.8s both;
}

.hero-content .d-flex.gap-3 {
  -webkit-animation: fadeInUp 1s ease-out 1s both;
          animation: fadeInUp 1s ease-out 1s both;
}

.theory-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(45, 206, 137, 0.1);
  transition: all 0.4s ease;
  border: none;
  opacity: 0;
  transform: translateY(30px);
  -webkit-animation: fadeInUp 0.8s ease-out forwards;
          animation: fadeInUp 0.8s ease-out forwards;
}

.theory-card:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.theory-card:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.theory-card:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.theory-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(45, 206, 137, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2dce89 0%, #2d89ce 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}

.feature-icon:hover {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 10px 30px rgba(45, 206, 137, 0.4);
}

.stats-section {
  background: linear-gradient(135deg, #1a7a4e 0%, #2d89ce 100%);
  color: white;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  -webkit-animation: pulse 2s ease-in-out infinite;
          animation: pulse 2s ease-in-out infinite;
}

.btn-theory-primary {
  background: linear-gradient(135deg, #2dce89 0%, #1a7a4e 100%);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

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

.btn-theory-primary:hover {
  background: linear-gradient(135deg, #1a7a4e 0%, #2dce89 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(45, 206, 137, 0.4);
  color: white;
}

.video-preview-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(45, 206, 137, 0.2);
  margin-top: 2rem;
  -webkit-animation: fadeInRight 1s ease-out 0.5s both;
          animation: fadeInRight 1s ease-out 0.5s both;
  transition: all 0.4s ease;
}

.video-preview-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(45, 206, 137, 0.3);
}

.video-preview-card:hover .video-preview {
  transform: scale(1.1);
}

.video-preview {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  -webkit-animation: pulse 2s ease-in-out infinite;
          animation: pulse 2s ease-in-out infinite;
}

.play-button:hover {
  background: white;
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 15px 40px rgba(45, 206, 137, 0.4);
}

.section-divider {
  height: 100px;
  background: linear-gradient(135deg, transparent 0%, #f8f9fa 50%, transparent 100%);
}

.btn-outline-primary {
  border-color: #2dce89;
  color: #2dce89;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #2dce89;
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-outline-primary:hover::before {
  left: 0;
}

.btn-outline-primary:hover {
  color: white;
  border-color: #2dce89;
  transform: translateY(-2px);
}

.text-primary {
  color: #2dce89 !important;
}

.cta-gradient {
  background: linear-gradient(135deg, #2dce89 0%, #2d89ce 100%);
  -webkit-animation: fadeInUp 1s ease-out;
          animation: fadeInUp 1s ease-out;
}

.accent-color {
  color: #2dce89;
  -webkit-animation: textGlow 3s ease-in-out infinite;
          animation: textGlow 3s ease-in-out infinite;
}

.secondary-accent {
  color: #2d89ce;
}

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

.feature-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  opacity: 0;
  -webkit-animation: fadeInLeft 0.6s ease-out forwards;
          animation: fadeInLeft 0.6s ease-out forwards;
}

.feature-list li:nth-child(1) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.feature-list li:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.feature-list li:nth-child(3) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.feature-list li:nth-child(4) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.feature-list li:nth-child(5) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.feature-list li:nth-child(6) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.feature-list li:hover .check-icon {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 5px 15px rgba(45, 206, 137, 0.4);
}

.feature-list .check-icon {
  width: 24px;
  height: 24px;
  background: #2dce89;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  -webkit-animation: checkmarkPop 0.6s ease-out;
          animation: checkmarkPop 0.6s ease-out;
  transition: all 0.3s ease;
}

.highlight-box {
  background: rgba(45, 206, 137, 0.1);
  border: 2px solid #2dce89;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(45, 206, 137, 0.1), transparent);
  -webkit-animation: float 4s ease-in-out infinite;
          animation: float 4s ease-in-out infinite;
}

.highlight-box:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(45, 206, 137, 0.2);
}

.trustpilot-section {
  background: #f8f9fa;
  padding: 1rem 0;
  -webkit-animation: fadeInUp 1s ease-out;
          animation: fadeInUp 1s ease-out;
}

.trustpilot-section .text-warning i {
  -webkit-animation: float 2s ease-in-out infinite;
          animation: float 2s ease-in-out infinite;
  -webkit-animation-delay: calc(var(--i) * 0.1s);
          animation-delay: calc(var(--i) * 0.1s);
}

/* Scroll Animation Classes */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Preload animation to prevent flash */

.preload * {
  -webkit-animation-duration: 0s !important;
          animation-duration: 0s !important;
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
  transition-duration: 0s !important;
}

/* Hero Image Styling */

.hero-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(45, 206, 137, 0.2);
  margin-top: 2rem;
  margin-left: 2rem;
  -webkit-animation: fadeInRight 1s ease-out 0.5s both;
          animation: fadeInRight 1s ease-out 0.5s both;
  transition: all 0.4s ease;
  z-index: 3;
}

.hero-image-card:hover {
  transform: scale(1.02) rotate(1deg);
  box-shadow: 0 30px 60px rgba(45, 206, 137, 0.3);
}

.hero-image-card:hover .hero-image {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.15) saturate(1.15);
}

.hero-image-card:hover .image-overlay {
  opacity: 1;
}

.hero-image-card:hover .floating-icon {
  opacity: 1;
  transform: scale(1.1);
}

.hero-image-card:hover .success-badge {
  transform: translateY(0);
  opacity: 1;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.6s ease;
  filter: brightness(1.05) contrast(1.1) saturate(1.1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(45, 206, 137, 0.1) 0%, rgba(45, 137, 206, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Floating Icons */

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(45, 206, 137, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.4s ease;
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}

.floating-icon.floating-icon-1 {
  top: 20%;
  left: 10%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.floating-icon.floating-icon-2 {
  top: 30%;
  right: 15%;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.floating-icon.floating-icon-3 {
  bottom: 30%;
  left: 15%;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.floating-icon.floating-icon-4 {
  bottom: 20%;
  right: 10%;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

/* Success Badge */

.success-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.6s ease;
  -webkit-animation: slideInScale 1s ease-out 1.5s both;
          animation: slideInScale 1s ease-out 1.5s both;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2dce89 0%, #2d89ce 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  -webkit-animation: pulse 2s ease-in-out infinite;
          animation: pulse 2s ease-in-out infinite;
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2dce89;
  line-height: 1;
}

.badge-subtitle {
  font-size: 0.8rem;
  color: #666;
  line-height: 1;
}

/* ===========================
   HOMEPAGE SECTIONS STYLES
   =========================== */

/* Welcome Section Modern Design */

.welcome-section {
  background: linear-gradient(135deg, #f8fffe 0%, #ffffff 50%, #f0fdf4 100%);
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.welcome-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 80%, rgba(45, 206, 137, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(45, 137, 206, 0.1) 0%, transparent 50%), linear-gradient(45deg, transparent 30%, rgba(45, 206, 137, 0.05) 50%, transparent 70%);
  -webkit-animation: patternMove 20s ease-in-out infinite;
          animation: patternMove 20s ease-in-out infinite;
}

@-webkit-keyframes patternMove {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

@keyframes patternMove {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 206, 137, 0.1), rgba(45, 137, 206, 0.1));
  -webkit-animation: floatShapes 15s infinite ease-in-out;
          animation: floatShapes 15s infinite ease-in-out;
}

.floating-shapes .shape.shape-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.floating-shapes .shape.shape-2 {
  width: 60px;
  height: 60px;
  top: 20%;
  right: 20%;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.floating-shapes .shape.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

.floating-shapes .shape.shape-4 {
  width: 40px;
  height: 40px;
  bottom: 10%;
  right: 10%;
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}

@-webkit-keyframes floatShapes {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }

  25% {
    transform: translateY(-30px) scale(1.1);
    opacity: 0.6;
  }

  50% {
    transform: translateY(0px) scale(0.9);
    opacity: 0.4;
  }

  75% {
    transform: translateY(20px) scale(1.05);
    opacity: 0.5;
  }
}

@keyframes floatShapes {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }

  25% {
    transform: translateY(-30px) scale(1.1);
    opacity: 0.6;
  }

  50% {
    transform: translateY(0px) scale(0.9);
    opacity: 0.4;
  }

  75% {
    transform: translateY(20px) scale(1.05);
    opacity: 0.5;
  }
}

.welcome-content {
  z-index: 10;
  position: relative;
}

.section-header .badge {
  font-weight: 500;
  border: 1px solid rgba(45, 206, 137, 0.2);
}

.bg-primary-soft {
  background-color: rgba(45, 206, 137, 0.1) !important;
}

.bg-success-soft {
  background-color: rgba(45, 206, 137, 0.1) !important;
}

.underline-decoration {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2dce89, #2d89ce);
  border-radius: 2px;
  -webkit-animation: underlineGrow 1s ease-out 1s both;
          animation: underlineGrow 1s ease-out 1s both;
}

@-webkit-keyframes underlineGrow {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes underlineGrow {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.welcome-text-card,
.welcome-stats-card,
.welcome-cta-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(45, 206, 137, 0.1);
  transition: all 0.3s ease;
}

.welcome-text-card:hover,
.welcome-stats-card:hover,
.welcome-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(45, 206, 137, 0.15);
}

.feature-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(45, 206, 137, 0.05), rgba(45, 137, 206, 0.05));
  border-radius: 15px;
  border-left: 4px solid #2dce89;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2dce89, #2d89ce);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2dce89, #2d89ce);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  -webkit-animation: pulse 3s ease-in-out infinite;
          animation: pulse 3s ease-in-out infinite;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #2dce89;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}

/* Features Section Modern Design */

.features-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 50%, #f0fdf4 100%);
  position: relative;
}

.features-bg-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0V30c0,0,300,30,600,0s600,30,600,0V0H0z' fill='%232dce8915'/%3E%3C/svg%3E") repeat-x;
  background-size: 1200px 120px;
  -webkit-animation: waveMove 10s ease-in-out infinite;
          animation: waveMove 10s ease-in-out infinite;
}

@-webkit-keyframes waveMove {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-20px);
  }
}

@keyframes waveMove {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-20px);
  }
}

@-webkit-keyframes patternFloat {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

@keyframes patternFloat {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.text-gradient {
  background: linear-gradient(135deg, #2dce89, #2d89ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.feature-card:hover .feature-icon-classic {
  background: #2dce89;
  color: white;
  border-color: #2dce89;
}

.feature-card:hover .feature-icon-modern {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(45, 206, 137, 0.3);
}

.classic-card {
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #e5e7eb;
}

.card-body-classic {
  padding: 2.5rem 2rem;
}

.feature-icon-classic {
  width: 70px;
  height: 70px;
  background: #f8f9fa;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2dce89;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.featured-card {
  border: 2px solid #2dce89;
  position: relative;
}

.featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 206, 137, 0.05), rgba(45, 137, 206, 0.05));
  pointer-events: none;
}

.card-header-modern {
  padding: 2rem 2rem 1rem;
  position: relative;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.5), rgba(255, 255, 255, 0.5));
}

.feature-icon-modern {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2dce89, #1a7a4e);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.gradient-icon {
  background: linear-gradient(135deg, #2dce89, #2d89ce) !important;
}

.feature-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #2dce89;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.feature-badge.featured {
  background: linear-gradient(135deg, #2dce89, #2d89ce);
}

.card-body-modern {
  padding: 1rem 2rem 2rem;
}

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

.feature-benefits li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  color: #6b7280;
  font-size: 0.9rem;
}

.features-showcase {
  background: linear-gradient(135deg, rgba(45, 206, 137, 0.05), rgba(45, 137, 206, 0.05));
  border-radius: 25px;
  padding: 3rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.showcase-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2dce89, #2d89ce);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.visual-element {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

.progress-circle {
  position: relative;
  width: 200px;
  height: 200px;
}

.progress-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-bar {
  transition: stroke-dashoffset 2s ease-in-out;
  -webkit-animation: progressFill 3s ease-in-out infinite;
          animation: progressFill 3s ease-in-out infinite;
}

@-webkit-keyframes progressFill {
  0% {
    stroke-dashoffset: 283;
  }

  50% {
    stroke-dashoffset: 28;
  }

  100% {
    stroke-dashoffset: 28;
  }
}

@keyframes progressFill {
  0% {
    stroke-dashoffset: 283;
  }

  50% {
    stroke-dashoffset: 28;
  }

  100% {
    stroke-dashoffset: 28;
  }
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.progress-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #2dce89;
  line-height: 1;
}

.progress-label {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

/* Testimonials Section Styling */

.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(45, 206, 137, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(45, 137, 206, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 2px 2px, rgba(45, 206, 137, 0.08) 1px, transparent 0);
  background-size: 30px 30px;
  opacity: 0.4;
}

.testimonial-card-wrapper {
  padding: 1rem;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(45, 206, 137, 0.08);
  border: 1px solid rgba(45, 206, 137, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2dce89, #2d89ce);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(45, 206, 137, 0.15);
  border-color: rgba(45, 206, 137, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(45, 206, 137, 0.1);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(45, 206, 137, 0.2);
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 15px rgba(45, 206, 137, 0.2);
}

.testimonial-rating {
  font-size: 1.1rem;
}

.testimonial-rating i {
  margin: 0 1px;
}

.testimonial-content {
  text-align: left;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: #6c757d;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: -15px;
  top: -10px;
  font-size: 3rem;
  color: rgba(45, 206, 137, 0.2);
  font-family: serif;
  line-height: 1;
}

.testimonial-author {
  margin-top: auto;
}

.author-name {
  color: #2dce89;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.author-title {
  color: #6c757d;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===========================
   HOMEPAGE CTA & RESPONSIVE STYLES
   =========================== */

/* CTA Section Modern Design */

.cta-section-modern {
  background: linear-gradient(135deg, #2dce89 0%, #2d89ce 100%);
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* Interactive Background */

.cta-bg-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  -webkit-animation: backgroundPulse 8s ease-in-out infinite;
          animation: backgroundPulse 8s ease-in-out infinite;
}

@-webkit-keyframes backgroundPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes backgroundPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Animated Particles */

.cta-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.cta-particles .particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-animation: particleFloat 20s infinite ease-in-out;
          animation: particleFloat 20s infinite ease-in-out;
}

.cta-particles .particle.particle-1 {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.cta-particles .particle.particle-2 {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 20%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.cta-particles .particle.particle-3 {
  width: 3px;
  height: 3px;
  top: 40%;
  left: 60%;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.cta-particles .particle.particle-4 {
  width: 5px;
  height: 5px;
  top: 80%;
  left: 80%;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.cta-particles .particle.particle-5 {
  width: 4px;
  height: 4px;
  top: 30%;
  left: 90%;
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

.cta-particles .particle.particle-6 {
  width: 7px;
  height: 7px;
  top: 70%;
  left: 50%;
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

.cta-particles .particle.particle-7 {
  width: 3px;
  height: 3px;
  top: 10%;
  left: 70%;
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}

.cta-particles .particle.particle-8 {
  width: 5px;
  height: 5px;
  top: 90%;
  left: 30%;
  -webkit-animation-delay: 14s;
          animation-delay: 14s;
}

@-webkit-keyframes particleFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.7;
  }

  25% {
    transform: translateY(-100px) translateX(50px) scale(1.2);
    opacity: 1;
  }

  50% {
    transform: translateY(-50px) translateX(-30px) scale(0.8);
    opacity: 0.5;
  }

  75% {
    transform: translateY(-80px) translateX(70px) scale(1.1);
    opacity: 0.8;
  }
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.7;
  }

  25% {
    transform: translateY(-100px) translateX(50px) scale(1.2);
    opacity: 1;
  }

  50% {
    transform: translateY(-50px) translateX(-30px) scale(0.8);
    opacity: 0.5;
  }

  75% {
    transform: translateY(-80px) translateX(70px) scale(1.1);
    opacity: 0.8;
  }
}

/* Grid Pattern */

.cta-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 100px 100px;
  -webkit-animation: gridMove 25s linear infinite;
          animation: gridMove 25s linear infinite;
  opacity: 0.4;
}

@-webkit-keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(100px, 100px);
  }
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(100px, 100px);
  }
}

/* Content Card */

.cta-content-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.cta-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.text-gradient-cta {
  background: linear-gradient(45deg, #ffffff, #f0f9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.9);
}

/* Feature Items */

.cta-features {
  margin: 2rem 0;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  color: white;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.cta-feature-item i {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Buttons */

.btn-white {
  background: white;
  color: #2dce89;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
  background: #f8f9fa;
  color: #2dce89;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

#green-button {
  color: #2dce89 !important;
}

#green-button:hover {
  color: #ffffff !important;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

/* Trust Indicators */

.cta-trust-indicators {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

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

.trust-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  line-height: 1;
}

.trust-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

/* Device Mockup */

.cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.cta-device-mockup {
  perspective: 1000px;
  -webkit-animation: deviceFloat 6s ease-in-out infinite;
          animation: deviceFloat 6s ease-in-out infinite;
}

@-webkit-keyframes deviceFloat {
  0%, 100% {
    transform: translateY(0px) rotateY(0deg);
  }

  50% {
    transform: translateY(-20px) rotateY(5deg);
  }
}

@keyframes deviceFloat {
  0%, 100% {
    transform: translateY(0px) rotateY(0deg);
  }

  50% {
    transform: translateY(-20px) rotateY(5deg);
  }
}

.device-frame {
  width: 280px;
  height: 400px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.9);
  position: relative;
}

.device-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.screen-content {
  padding: 20px;
  height: 100%;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
}

.app-logo {
  font-weight: bold;
  color: #2dce89;
  font-size: 1.2rem;
}

.success-indicator {
  color: #2dce89;
  font-size: 1.5rem;
  -webkit-animation: successPulse 2s ease-in-out infinite;
          animation: successPulse 2s ease-in-out infinite;
}

@-webkit-keyframes successPulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.progress-dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #6b7280;
}

.progress-item.completed {
  color: #2dce89;
  font-weight: 600;
}

.progress-bar-mini {
  width: 80px;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.progress-bar-mini::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, #2dce89, #2d89ce);
  border-radius: 3px;
  -webkit-animation: progressGrow 3s ease-in-out infinite;
          animation: progressGrow 3s ease-in-out infinite;
}

.progress-bar-mini.full::after {
  width: 100%;
  background: #2dce89;
}

@-webkit-keyframes progressGrow {
  0% {
    width: 0%;
  }

  50% {
    width: 70%;
  }

  100% {
    width: 70%;
  }
}

@keyframes progressGrow {
  0% {
    width: 0%;
  }

  50% {
    width: 70%;
  }

  100% {
    width: 70%;
  }
}

/* Theory Topics Additional Styles */

.theory-topics-section {
  padding: 3rem 0;
}

.theory-badge {
  background: rgba(45, 206, 137, 0.1);
  color: #2dce89;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(45, 206, 137, 0.2);
  font-size: 0.9rem;
}

.theory-topic-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
}

.theory-topic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  border-color: rgba(45, 206, 137, 0.2);
}

.theory-topic-card:hover .topic-icon {
  background: linear-gradient(135deg, #2dce89, #2d89ce);
  color: white;
  border-color: #2dce89;
  transform: scale(1.1);
}

.theory-topic-card:hover .topic-icon::before {
  left: 100%;
}

.topic-card-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2rem 2rem 1rem;
  text-align: center;
  position: relative;
}

.topic-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(45, 206, 137, 0.1), rgba(45, 137, 206, 0.1));
  border: 2px solid rgba(45, 206, 137, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2dce89;
  font-size: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.topic-icon::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.6s;
}

.topic-card-body {
  padding: 1rem 2rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Payment Partners Styles */

.payment-partners-section {
  padding: 2rem 0;
}

.partner-logo-wrapper {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  margin: 0.5rem 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.partner-logo-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(45, 206, 137, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.partner-logo-wrapper:hover .partner-logo {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

.partner-logo {
  max-height: 45px;
  width: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(50%);
}

.security-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(45, 206, 137, 0.2);
  border-radius: 25px;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(45, 206, 137, 0.1);
  transition: all 0.3s ease;
}

.security-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 206, 137, 0.15);
}

/* Navbar Scroll Effect - Desktop Only - HOMEPAGE ONLY */

@media (min-width: 992px) {
  /* Only apply white text effect to homepage by targeting the body class */

  body.homepage #topnav.main-nav {
    transition: all 0.3s ease;
    /* Initial navbar styling - white text - HOMEPAGE ONLY */
    /* Mobile menu toggle - white - HOMEPAGE ONLY */
    /* Scrolled navbar styling - dark text - HOMEPAGE ONLY */
  }

  body.homepage #topnav.main-nav .navigation-menu .sub-menu-item {
    color: white !important;
    transition: all 0.3s ease;
  }

  body.homepage #topnav.main-nav .navigation-menu .sub-menu-item:hover {
    color: #2dce89 !important;
  }

  body.homepage #topnav.main-nav .logo img {
    /* filter: brightness(0) invert(1); */
    transition: all 0.3s ease;
  }

  body.homepage #topnav.main-nav .navbar-toggle .lines span {
    background-color: white !important;
    transition: all 0.3s ease;
  }

  body.homepage #topnav.main-nav.nav-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }

  body.homepage #topnav.main-nav.nav-scrolled .navigation-menu .sub-menu-item {
    color: #333 !important;
  }

  body.homepage #topnav.main-nav.nav-scrolled .navigation-menu .sub-menu-item:hover {
    color: #2dce89 !important;
  }

  body.homepage #topnav.main-nav.nav-scrolled .logo img {
    filter: none;
  }

  body.homepage #topnav.main-nav.nav-scrolled .navbar-toggle .lines span {
    background-color: #333 !important;
  }
}

/* Mobile responsiveness for navbar spacing */

@media (max-width: 768px) {
  .hero-video-section {
    padding-top: 100px;
  }

  .hero-content {
    margin-top: 1rem;
    padding-right: 0;
  }

  .hero-image-card {
    margin-top: 2rem;
    margin-left: 0;
    height: 350px;
  }

  .image-wrapper {
    height: 350px;
  }

  .hero-image {
    height: 350px;
  }

  .feature-icon {
    -webkit-animation: none;
            animation: none;
    /* Reduce animations on mobile for performance */
  }

  .hero-video-bg {
    -webkit-animation: none;
            animation: none;
  }

  .floating-icon {
    -webkit-animation: none;
            animation: none;
  }

  .success-badge {
    display: none;
    /* Hide on mobile for cleaner look */
  }

  /* Welcome Section Mobile */

  .welcome-section {
    min-height: auto;
    padding: 4rem 0;
  }

  .floating-shapes .shape {
    display: none;
    /* Hide floating shapes on mobile */
  }

  .welcome-text-card,
  .welcome-stats-card,
  .welcome-cta-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }

  .features-showcase {
    padding: 2rem 1.5rem;
  }

  .showcase-features {
    gap: 1.5rem;
  }

  .visual-element {
    height: 200px;
    margin-top: 2rem;
  }

  .progress-circle {
    width: 150px;
    height: 150px;
  }

  .progress-number {
    font-size: 2rem;
  }

  /* CTA Section Mobile */

  .cta-section-modern {
    min-height: auto;
    padding: 4rem 0;
  }

  .cta-content-card {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .cta-particles .particle {
    display: none;
    /* Hide particles on mobile for performance */
  }

  .cta-trust-indicators {
    justify-content: center;
    gap: 1rem;
  }

  .trust-number {
    font-size: 1.2rem;
  }

  .device-frame {
    width: 220px;
    height: 320px;
    padding: 15px;
  }

  .cta-device-mockup {
    -webkit-animation: none;
            animation: none;
    /* Disable animation on mobile */
  }

  .cta-wave-overlay {
    height: 60px;
  }

  .cta-buttons .btn {
    width: 100%;
    margin-bottom: 1rem;
  }

  /* Theory Topics Section Mobile */

  .theory-topics-section {
    padding: 3rem 0;
  }

  .theory-subtle-shapes .subtle-shape {
    display: none;
    /* Hide subtle shapes on mobile */
  }

  .theory-info-card {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .learning-stats {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .topic-card-header {
    padding: 1.5rem 1.5rem 1rem;
  }

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

  .topic-card-body {
    padding: 1rem 1.5rem 1.5rem;
  }

  /* Payment Partners Section Mobile */

  .payment-partners-section {
    padding: 2rem 0;
  }

  .partners-pattern {
    display: none;
    /* Hide pattern on mobile for performance */
  }

  .partner-logo-wrapper {
    padding: 1rem;
    margin: 0.25rem 0;
  }

  .partner-logo {
    max-height: 35px;
  }

  .security-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  /* Compact Hero Layout Mobile */

  .hero-main-content {
    flex-direction: column-reverse;
    text-align: center;
    margin-bottom: 2rem !important;
  }

  .hero-text-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .hero-image-container {
    max-width: 100%;
    margin-left: 0;
    order: -1;
    margin-bottom: 2rem;
    display: none;
  }

  .hero-image-container .hero-image-card {
    height: 250px;
  }

  .hero-image-container .image-wrapper {
    height: 250px;
  }

  .hero-image-container .hero-image {
    height: 250px;
  }

  .features-section-hero {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .hero-cta-section {
    align-items: stretch;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .testimonial-quote::before {
    left: -10px;
    font-size: 2rem;
  }
}

/* Tablet responsiveness */

@media (max-width: 992px) and (min-width: 769px) {
  .hero-image-card {
    margin-left: 1rem;
  }
}

/* Ensure proper spacing on all screen sizes */

@media (min-width: 1200px) {
  .hero-video-section {
    padding-top: 140px;
  }
}

/* Preload animation to prevent flash */

.preload * {
  -webkit-animation-duration: 0s !important;
          animation-duration: 0s !important;
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
  transition-duration: 0s !important;
}

.btn-primary,
.btn-primary:hover {
  background-color: #2dce89;
  border-color: #2dce89;
}

.mobile-buy-button {
  text-align: center;
  margin-top: 20px;
}

.btn-soft-primary {
  color: #2dce89 !important;
}

.form-control:focus {
  border-color: #2dce89 !important;
}

.social-icon li a:hover {
  background-color: #2dce89 !important;
  border-color: #2dce89 !important;
}

.btn-soft-primary:hover {
  color: #ffffff !important;
  background-color: #2dce89 !important;
  border-color: #2dce89 !important;
}

.text-primary {
  color: #2dce89 !important;
}

.navigation-menu li.active > a,
.navigation-menu li:hover > a {
  color: #2dce89 !important;
}

.navigation-menu a.sub-menu-item:hover {
  color: #2dce89 !important;
}

.max-height-60 {
  max-height: 60px;
}

.main-nav {
  border-bottom: 1px solid rgba(221, 221, 221, 0.63) !important;
}

.main-nav .buy-button {
  margin-bottom: 0;
}

.sub-nav {
  display: block;
  top: 70px !important;
  background: #fff !important;
  box-shadow: 0 0 3px rgba(60, 72, 88, 0.15) !important;
}

@media (min-width: 1px) and (max-width: 950px) {
  .sub-nav {
    display: none !important;
  }
}

.sub-nav li a {
  font-size: 12px !important;
  font-weight: 500 !important;
}

.mobile-menu-only {
  display: none !important;
}

@media (min-width: 1px) and (max-width: 950px) {
  .mobile-menu-only {
    display: block !important;
  }
}

.pages-heading {
  margin-top: 50px;
}

