/* 
* Global Styles - Mimicking Shown.io style
*/

:root {
  --primary-color: #0095ff;
  --primary-light: #4ac0ff;
  --primary-dark: #0077cc;
  --secondary-color: #f72585;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-light: #f8faff;
  --background-dark: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --border-color: rgba(224, 230, 245, 0.4);
  --border-radius: 8px;
  --box-border-radius: 16px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --gradient-text: linear-gradient(90deg, #a3a4e0 0%, #4361ee 100%);
  --gradient-bg: linear-gradient(135deg, #edf2fb 0%, #e2eafc 50%, #d7e3fc 100%);
  --gradient-bg-subtle: linear-gradient(135deg, #f8faff 0%, #f4f7fd 50%, #f0f4fc 100%);
  --gradient-section: linear-gradient(180deg, rgba(237, 242, 251, 0.6) 0%, rgba(226, 234, 252, 0.4) 100%);
  --fb-gradient: linear-gradient(90deg, #1877f2 0%, #4267B2 100%);
  --negative-color: #999;
  --positive-color: #0095ff;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background: #ffffff;
  font-weight: 400;
  min-height: 100vh;
  padding-top: 60px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 700;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: 4.5rem;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
  font-weight: 700;
  color: #111;
  position: relative;
  padding-bottom: 0.5rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateZ(0);
  position: relative;
  overflow: hidden;
  border: none;
  text-decoration: none;
}

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

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

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 149, 255, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 8px 25px rgba(0, 149, 255, 0.4);
  transform: translateY(-2px) scale(1.05);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--primary-color);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 1);
  border-color: var(--primary-color);
}

.btn-text {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid transparent;
  padding: 10px 15px;
}

.btn-text:hover {
  color: var(--primary-color);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: 30px;
}

/* Header Styles */
header {
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 60px !important;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.logo {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.logo a {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-color);
}

.logo span {
  color: var(--primary-color);
}

.main-nav {
  display: flex;
  gap: 15px;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--primary-color);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius);
  padding: 10px 0;
  z-index: 10;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: var(--text-color);
  padding: 8px 15px;
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
}

.dropdown-content a:hover {
  background-color: var(--background-light);
  color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.header-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Hero Section */
.hero {
  padding: 120px 0 100px;
  text-align: center;
  background-color: #ffffff;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: heroFadeIn 1.5s ease-out 0.5s forwards;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 4.5rem;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: heroTitleAnimation 1s ease-out 0.3s forwards;
}

.hero h1 .gradient-text {
  background: var(--fb-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  font-size: 4.5rem;
  animation: gradientShift 3s ease-in-out infinite;
}

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

.hero h1 .black-text {
  color: #111;
  font-weight: 800;
  font-size: 4.5rem;
}

.hero .subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: heroSubtitleAnimation 1s ease-out 0.6s forwards;
}

.trust-badge {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.facebook-logo {
  margin-bottom: 30px;
  opacity: 0;
  transform: scale(0.8) rotateY(180deg);
  animation: logoReveal 1.2s ease-out 0.2s forwards;
}

/* Keyframe Animations */
@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoReveal {
  to {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
}

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

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

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll-triggered animations - faster speed */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease-out;
}

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

.animate-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.4s ease-out;
}

.animate-slide-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.4s ease-out;
}

.animate-slide-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s ease-out;
}

.animate-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

.facebook-logo img {
  width: 70px;
  height: 70px;
}

/* Create Facebook icon if image is not available */
.facebook-icon {
  width: 70px;
  height: 70px;
  background-color: #1877f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.3);
}

.facebook-icon::after {
  content: "f";
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: bold;
  color: white;
  position: relative;
  top: -2px;
}

/* Section styles */
section {
  padding: 100px 0;
  position: relative;
  background-color: #ffffff;
}

section:nth-child(even) {
  background-color: var(--background-light);
}

/* Advantages Section */
.advantages {
  padding: 100px 0;
}

.advantages-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
}

.advantages-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.fb-logo-3d {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

@media (max-width: 992px) {
  .advantages-layout {
    flex-direction: column;
    gap: 40px;
  }
  
  .advantages-content {
    width: 100%;
  }
  
  .fb-logo-3d {
    min-height: 300px;
  }
}

.advantage-card {
  background-color: #ffffff;
  border-radius: var(--border-radius);
  padding: 25px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateZ(0);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  opacity: 0;
  animation: cardSlideIn 0.8s ease forwards;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.advantage-content-horizontal {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.advantage-text {
  flex: 1;
}

.advantage-card .icon-container {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-bottom: 0;
  background: #1877f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
  transition: all 0.3s ease;
}

.advantage-card .icon-container i {
  color: white;
  font-size: 24px;
}

.advantage-card:hover .icon-container {
  background: #42a5f5;
  transform: scale(1.1);
}

.advantage-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #333;
  font-weight: 600;
}

.advantage-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* 3D FB Logo */
.logo-container {
  perspective: 1000px;
  perspective-origin: center center;
}

.fb-logo-cube {
  width: 120px;
  height: 120px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 8s infinite linear;
}

.fb-logo-cube .face {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
  border: 3px solid #1565c0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  font-weight: bold;
  color: white;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 30px rgba(24, 119, 242, 0.4);
}

.fb-logo-cube .face.front {
  transform: translateZ(60px);
}

.fb-logo-cube .face.back {
  transform: translateZ(-60px) rotateY(180deg);
}

.fb-logo-cube .face.right {
  transform: rotateY(90deg) translateZ(60px);
}

.fb-logo-cube .face.left {
  transform: rotateY(-90deg) translateZ(60px);
}

.fb-logo-cube .face.top {
  transform: rotateX(90deg) translateZ(60px);
}

.fb-logo-cube .face.bottom {
  transform: rotateX(-90deg) translateZ(60px);
}

@keyframes rotateCube {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

.fb-logo-3d:hover .fb-logo-cube {
  animation-play-state: paused;
  transform: rotateX(15deg) rotateY(15deg) scale(1.1);
}

.advantage-card:nth-child(1) { animation-delay: 0.1s; }
.advantage-card:nth-child(2) { animation-delay: 0.2s; }
.advantage-card:nth-child(3) { animation-delay: 0.3s; }
.advantage-card:nth-child(4) { animation-delay: 0.4s; }

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

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(24, 119, 242, 0.1), transparent);
  transition: left 0.6s ease;
}

.advantage-card:hover::before {
  left: 100%;
}

.advantage-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(24, 119, 242, 0.15);
  border-color: rgba(24, 119, 242, 0.2);
}

.icon-container {
  width: 60px;
  height: 60px;
  background: var(--fb-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
}

.icon-container i {
  font-size: 1.5rem;
  color: white;
}

.icon-container.large {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
  position: relative;
  overflow: hidden;
}

.icon-container.large::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: iconShine 2s linear infinite;
}

@keyframes iconShine {
  0% {
    transform: rotate(0deg) translate(-50%, -50%);
  }
  100% {
    transform: rotate(360deg) translate(-50%, -50%);
  }
}

@keyframes iconBounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

.icon-container.large i {
  font-size: 2.5rem;
  color: white;
  z-index: 1;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-comparison-card .icon-container.large {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.stat-comparison-card .icon-container.large i {
  font-size: 28px;
  color: #1877f2;
}

.stat-comparison-card:hover .icon-container.large {
  background: #1877f2;
  transform: scale(1.05);
}

.stat-comparison-card:hover .icon-container.large i {
  color: white;
}

/* Comparison Section */
.comparison {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

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

.comparison .container {
  position: relative;
  z-index: 1;
}

.stats-comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

@media (min-width: 992px) {
  .stats-comparison-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-comparison-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: statCardFadeIn 0.8s ease forwards;
}

.stat-comparison-card:nth-child(1) { animation-delay: 0.1s; }
.stat-comparison-card:nth-child(2) { animation-delay: 0.2s; }
.stat-comparison-card:nth-child(3) { animation-delay: 0.3s; }

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

.stat-comparison-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.15);
  border-color: #1877f2;
  background: rgba(24, 119, 242, 0.02);
}

.card-content-horizontal {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.card-text {
  flex: 1;
}

.stat-number-large {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1877f2;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #1877f2, #42a5f5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.stat-number-large.counting {
  animation: numberPulse 0.6s ease-in-out;
}

@keyframes numberPulse {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 0 20px rgba(24, 119, 242, 0.3);
  }
  50% {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(24, 119, 242, 0.6);
  }
}

.stat-comparison-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.stat-comparison-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.comparison-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(24, 119, 242, 0.03), transparent);
  transition: left 0.6s ease;
}

.comparison-card:hover::after {
  left: 100%;
}

.stat-comparison-card.highlighted {
  background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
  border: 2px solid #1877f2;
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.25);
  color: white;
  position: relative;
  overflow: hidden;
}

.stat-comparison-card.highlighted .stat-number-large {
  color: white;
  background: linear-gradient(45deg, #ffffff, #e3f2fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.stat-comparison-card.highlighted h4 {
  color: white;
}

.stat-comparison-card.highlighted p {
  color: rgba(255, 255, 255, 0.9);
}

.stat-comparison-card.highlighted .card-badge {
  position: absolute;
  top: 12px;
  right: -25px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 6px 35px;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(45deg);
  z-index: 20;
  box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
  letter-spacing: 0.8px;
  border-radius: 4px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.comparison-cta {
  text-align: center;
  margin-top: 40px;
  padding: 40px 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid #e9ecef;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cta-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 10px 30px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border: 2px solid white;
}

.comparison-cta .btn {
  margin-top: 15px;
  background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
  color: white;
  border: none;
  font-weight: 700;
  padding: 18px 45px;
  font-size: 1.2rem;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.3);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.comparison-cta .btn::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.6s ease;
}

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

.comparison-cta .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(24, 119, 242, 0.4);
  background: linear-gradient(135deg, #42a5f5 0%, #1877f2 100%);
}

/* New Comparison Table Layout */
.comparison-table-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 15px;
}

.comparison-table thead {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
  color: white;
}

.comparison-table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
}

.comparison-table th.feature-col {
  width: 30%;
}

.comparison-table th.regular-col {
  width: 35%;
}

.comparison-table th.bulletproof-col {
  width: 35%;
}

.comparison-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

.comparison-table tbody tr:nth-child(odd) {
  background: white;
}

.comparison-table tbody tr:hover {
  background: #e3f2fd;
  transition: background 0.3s ease;
}

.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #e9ecef;
  vertical-align: middle;
}

.feature-name {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.regular-value {
  color: #666;
}

.regular-value i {
  color: #dc3545;
  margin-right: 8px;
}

.regular-value .limitation {
  color: #888;
}

.bulletproof-value {
  color: #333;
}

.bulletproof-value i {
  color: #28a745;
  margin-right: 8px;
}

.bulletproof-value .highlight {
  color: #1877f2;
  font-weight: 600;
}

.text-danger {
  color: #dc3545 !important;
}

.text-warning {
  color: #fd7e14 !important;
}

.text-success {
  color: #28a745 !important;
}

.comparison-cta-section {
  margin-top: 40px;
  text-align: center;
}

.comparison-cta-section a {
  display: inline-block;
  background: linear-gradient(45deg, #1877f2, #42a5f5);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.comparison-cta-section a:hover {
  background: linear-gradient(45deg, #166fe5, #2196f3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

@media (max-width: 768px) {
  .comparison {
    padding: 80px 0;
  }
  
  .comparison h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .comparison-table-wrapper {
    margin: 0 -20px;
  }
  
  .comparison-table {
    border-radius: 0;
    min-width: 500px;
  }
  
  .comparison-table th {
    padding: 15px 10px;
    font-size: 0.9rem;
  }
  
  .comparison-table td {
    padding: 15px 10px;
    font-size: 0.85rem;
  }
  
  .feature-name {
    font-size: 0.9rem;
  }
}

/* Form error styles */
.form-group input.error,
.form-group select.error {
  border-color: #dc3545;
  background-color: #fff5f5;
}

.error-message {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  margin-bottom: 10px;
}



.comparison-card.highlighted::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #42a5f5, var(--primary-color));
  background-size: 200% 100%;
  animation: borderGlow 2s ease-in-out infinite;
}

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

.comparison-list {
  margin-bottom: 25px;
}

.comparison-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 30px;
  font-size: 0.95rem;
}

.comparison-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

.comparison-list li strong {
  font-weight: 700;
}

.comparison-card .comparison-list li strong {
  color: var(--negative-color);
}

.comparison-card.highlighted .comparison-list li strong {
  color: var(--positive-color);
  animation: highlightText 2s ease-in-out infinite alternate;
}

@keyframes highlightText {
  0% {
    color: var(--positive-color);
  }
  100% {
    color: #1877f2;
    text-shadow: 0 0 5px rgba(24, 119, 242, 0.3);
  }
}

.comparison-card .btn {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.comparison-card.highlighted .btn {
  animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(24, 119, 242, 0);
  }
}

/* How it works section */
.how-it-works {
  padding: 100px 0;
  background-color: var(--background-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  background-color: #ffffff;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateZ(0);
  overflow: hidden;
  opacity: 0;
  animation: stepCardAnimation 0.8s ease forwards;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.3s; }
.step-card:nth-child(3) { animation-delay: 0.5s; }
.step-card:nth-child(4) { animation-delay: 0.7s; }
.step-card:nth-child(5) { animation-delay: 0.9s; }
.step-card:nth-child(6) { animation-delay: 1.1s; }

@keyframes stepCardAnimation {
  from {
    opacity: 0;
    transform: translateX(-50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(24, 119, 242, 0.08), transparent);
  transition: left 0.5s ease;
}

.step-card:hover::before {
  left: 100%;
}

.step-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(24, 119, 242, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 25px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: var(--border-radius);
  opacity: 0;
  animation: testimonialFadeIn 0.8s ease forwards;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes testimonialFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

/* Ripple effect for card clicks */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnimation 0.6s linear;
  background-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

@keyframes rippleAnimation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Ensure relative positioning for ripple effect */
.advantage-card, .step-card, .testimonial-card, .comparison-card, .feature-card {
  position: relative;
  cursor: pointer;
}

/* Enhanced FAQ item transitions */
.faq-item {
  transition: all 0.3s ease;
}

/* Highlighted card animation */
@keyframes highlightedCardAnimation {
  0% {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
    box-shadow: 0 0 0 rgba(24, 119, 242, 0);
  }
  50% {
    opacity: 0.7;
    transform: translateX(0) scale(1.05);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.2);
  }
}

/* VS title animation */
@keyframes vsAnimation {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-10deg);
    letter-spacing: -5px;
    text-shadow: 0 0 0 transparent;
  }
  30% {
    opacity: 0.7;
    transform: scale(1.3) rotate(5deg);
    letter-spacing: 8px;
    text-shadow: 0 0 20px rgba(24, 119, 242, 0.6);
  }
  60% {
    opacity: 0.9;
    transform: scale(0.9) rotate(-2deg);
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(24, 119, 242, 0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    letter-spacing: normal;
    text-shadow: 0 0 10px rgba(24, 119, 242, 0.3);
  }
}

/* Ensure comparison cards are clear and visible */
.comparison-card {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: none;
}

.comparison-card.highlighted {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: none;
}

/* Regular card animation */
@keyframes regularCardAnimation {
  0% {
    opacity: 0;
    transform: translateX(-30px) scale(0.95);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  50% {
    opacity: 0.7;
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
}

/* Comparison title initial state */
.comparison h2 {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  letter-spacing: normal;
  text-shadow: none;
  position: relative;
  color: #333;
  margin-bottom: 40px;
  font-size: 2.5rem;
  margin-top: 0;
}

.comparison h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(24, 119, 242, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  animation: vsCircle 3s ease-in-out infinite;
}

@keyframes vsCircle {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

/* Add continuous glow effect after animation */
.comparison h2.animated {
  animation: continuousGlow 2s ease-in-out infinite alternate;
}

@keyframes continuousGlow {
  0% {
    text-shadow: 0 0 10px rgba(24, 119, 242, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(24, 119, 242, 0.6), 0 0 30px rgba(24, 119, 242, 0.4);
  }
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(24, 119, 242, 0.15);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1rem;
}

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

.author-name {
  font-weight: 600;
  font-size: 1rem;
}

.author-position {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background-color: var(--background-light);
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.faq-grid {
  max-width: 100%;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: #ffffff;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.faq-image img {
  width: 80%;
  height: auto;
  object-fit: contain;
  max-height: 300px;
}

.integration-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.integration-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90px;
  background-color: #ffffff;
  border-radius: var(--border-radius);
  padding: 15px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.integration-icon img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  text-align: center;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-color);
}

.cta h2 {
  color: #111;
  font-size: 2.25rem;
}

.cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--text-color);
}

.social-proof {
  margin-top: 2.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icons i {
  font-size: 1.25rem;
  color: var(--primary-color);
  opacity: 0.8;
  transition: var(--transition);
}

.social-icons i:hover {
  opacity: 1;
}

/* Footer */
footer {
  padding: 70px 0 20px;
  background-color: #111;
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo a {
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo span {
  color: var(--primary-light);
}

.footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  margin-bottom: 1rem;
}

.contact-info {
  margin-top: 20px;
  font-size: 0.95rem;
}

.footer-column h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .integration-icons {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero h1 .gradient-text,
  .hero h1 .black-text {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
    min-height: auto;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  section {
    padding: 70px 0;
  }
  
  .integration-icons {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero h1 .gradient-text,
  .hero h1 .black-text {
    font-size: 2.8rem;
  }
  
  .header-logo-img {
    height: 40px !important;
    max-width: 280px;
  }
}

@media (max-width: 576px) {
  .comparison-grid, 
  .steps-grid, 
  .testimonial-grid, 
  .partners-grid, 
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .header-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .header-buttons .btn {
    width: 100%;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 .gradient-text,
  .hero h1 .black-text {
    font-size: 2.2rem;
  }
  
  .fb-logo-3d {
    min-height: 200px;
  }
  
  .fb-logo-cube {
    width: 80px;
    height: 80px;
  }
  
  .fb-logo-cube .face {
    width: 80px;
    height: 80px;
    font-size: 3rem;
  }
  
  .fb-logo-cube .face.front {
    transform: translateZ(40px);
  }
  
  .fb-logo-cube .face.back {
    transform: translateZ(-40px) rotateY(180deg);
  }
  
  .fb-logo-cube .face.right {
    transform: rotateY(90deg) translateZ(40px);
  }
  
  .fb-logo-cube .face.left {
    transform: rotateY(-90deg) translateZ(40px);
  }
  
  .fb-logo-cube .face.top {
    transform: rotateX(90deg) translateZ(40px);
  }
  
  .fb-logo-cube .face.bottom {
    transform: rotateX(-90deg) translateZ(40px);
  }
}

/* Results Section with Slider */
.results {
  padding: 100px 0;
  background-color: #ffffff;
}

.results-slider {
  width: 100%;
  margin-top: 40px;
  overflow: hidden;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  animation: scroll 90s linear infinite;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider-item {
  width: 700px;
  height: auto;
  flex-shrink: 0;
  padding: 0 20px;
  margin-bottom: 30px;
}

.slider-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  max-height: 400px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-700px * 10));
  }
}

/* Results section responsive styles */
@media (max-width: 992px) {
  .slider-item {
    width: 600px;
    padding: 0 15px;
  }
  
  .slider-track {
    width: calc(600px * 20);
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-600px * 10));
    }
  }
}

@media (max-width: 768px) {
  .slider-item {
    width: 500px;
  }
  
  .slider-track {
    width: calc(500px * 20);
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-500px * 10));
    }
  }
}

@media (max-width: 576px) {
  .slider-item {
    width: 400px;
  }
  
  .slider-track {
    width: calc(400px * 20);
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-400px * 10));
    }
  }
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-top: 20px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}

.telegram-btn {
  background-color: #0088cc;
}

.telegram-btn:hover {
  background-color: #0077b3;
}

.whatsapp-btn {
  background-color: #25D366;
}

.whatsapp-btn:hover {
  background-color: #20bd5c;
}

/* Floating CTA Buttons */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
}

.floating-btn::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.7;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.floating-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.telegram-float {
  background-color: #0088cc;
}

.telegram-float:hover {
  background-color: #0077b3;
}

.whatsapp-float {
  background-color: #25D366;
}

.whatsapp-float:hover {
  background-color: #20bd5c;
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* About Us Section */
.about-us {
    padding: 50px 0;
    background: #f8f9fa;
    color: #333;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.about-header h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #666;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.15);
    background: rgba(24, 119, 242, 0.02);
    border-color: #1877f2;
}

.feature-content-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-card .icon-container {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #1877f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.feature-card .icon-container i {
    font-size: 24px;
    color: white;
}

.feature-card:hover .icon-container {
    background: #42a5f5;
    transform: scale(1.1);
}

.feature-text {
    flex: 1;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Animated Number Styles */
.animated-number {
    color: #1877f2;
    font-weight: 700;
    transition: all 0.3s ease;
}

.animated-number.counting {
    color: #42a5f5;
    text-shadow: 0 0 10px rgba(24, 119, 242, 0.3);
}



/* Responsive adjustments */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-card h4 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-header h3 {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .about-us {
        padding: 40px 0;
    }
    
    .stats-comparison-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .card-content-horizontal {
        gap: 15px;
    }
    
    .stat-comparison-card .icon-container.large {
        width: 50px;
        height: 50px;
    }
    
    .stat-comparison-card .icon-container.large i {
        font-size: 24px;
    }
    
    .comparison-cta {
        padding: 25px 20px;
    }
    
    .comparison-cta .btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .advantage-content-horizontal {
        gap: 15px;
    }
    
    .advantage-card .icon-container {
        width: 50px;
        height: 50px;
    }
    
    .advantage-card h3 {
        font-size: 1.2rem;
    }
    
    .advantage-card p {
        font-size: 0.9rem;
    }
    
    .feature-content-horizontal {
        gap: 15px;
    }
    
    .feature-card .icon-container {
        width: 50px;
        height: 50px;
    }
}

/* Logo and Icon Styles */
.header-logo-img {
    height: 50px !important;
    width: auto;
    max-width: 250px;
    display: block;
    object-fit: contain;
    margin: 5px auto;
}

.facebook-icon-img {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
}

/* 使Facebook图标部分CSS保持一致 */
.facebook-logo {
    margin-bottom: 30px;
}

/* Make sure the animation loops seamlessly by adding duplicate items */
.slider-track:hover {
  animation-play-state: paused;
}

.results h2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.results-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 800px;
  margin: -1.5rem auto 2.5rem;
}

@media (max-width: 768px) {
    header {
        height: 50px !important;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        min-height: auto;
    }
    
    .header-logo-img {
        height: 40px !important;
        max-width: 200px;
        margin: 5px auto;
    }
} 