/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tiktok-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
}

.loader-line-wrap {
    position: absolute;
    width: 50px;
    height: 100px;
    overflow: hidden;
    transform-origin: 100% 50%;
    left: 0;
    top: 0;
}

.loader-line {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 3px solid transparent;
    border-right-color: var(--tiktok-pink);
    border-top-color: var(--tiktok-teal);
    animation: spin 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
}

.loader-line-wrap:nth-child(1) { transform: rotate(0deg); }
.loader-line-wrap:nth-child(2) { transform: rotate(72deg); }
.loader-line-wrap:nth-child(3) { transform: rotate(144deg); }
.loader-line-wrap:nth-child(4) { transform: rotate(216deg); }
.loader-line-wrap:nth-child(5) { transform: rotate(288deg); }

.loader-line-wrap:nth-child(1) .loader-line { animation-delay: -0.1s; }
.loader-line-wrap:nth-child(2) .loader-line { animation-delay: -0.2s; }
.loader-line-wrap:nth-child(3) .loader-line { animation-delay: -0.3s; }
.loader-line-wrap:nth-child(4) .loader-line { animation-delay: -0.4s; }
.loader-line-wrap:nth-child(5) .loader-line { animation-delay: -0.5s; }

@keyframes spin {
    0%, 15% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

/* Base Styles */
:root {
  --tiktok-pink: #FE2C55;
  --tiktok-teal: #25F4EE;
  --tiktok-black: #010101;
  --tiktok-white: #FFFFFF;
  --tiktok-gray: #F1F1F2;
  --tiktok-dark: #161823;
  --gradient: linear-gradient(90deg, var(--tiktok-pink), var(--tiktok-teal));
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--tiktok-black);
  background-color: var(--tiktok-white);
  overflow-x: hidden;
}

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

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

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient);
  color: var(--tiktok-white);
  box-shadow: 0 4px 15px rgba(254, 44, 85, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(254, 44, 85, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--tiktok-white);
  border: 2px solid var(--tiktok-white);
  margin-left: 15px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--tiktok-pink);
  border: 2px solid var(--tiktok-pink);
}

.btn-secondary:hover {
  background: rgba(254, 44, 85, 0.1);
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
  left: 50%;
  transform: translateX(-50%);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
  background: var(--tiktok-black);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.98);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  color: var(--tiktok-white);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--tiktok-white);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  color: var(--tiktok-dark);
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

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

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--tiktok-white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(37, 244, 238, 0.05), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(254, 44, 85, 0.05), transparent 40%);
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content {
    padding-right: 20px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--tiktok-dark);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--tiktok-pink), var(--tiktok-teal));
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.cta-buttons {
    margin-top: 2rem;
}

/* Responsive styles for About Section */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        padding-right: 0;
        text-align: center;
    }
    
    .about-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .about-image {
        max-width: 100%;
    }
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.1) 0%, rgba(254, 44, 85, 0.1) 100%);
  z-index: 0;
  opacity: 0.5;
}

.features .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.features .section-title {
  font-size: 2.8rem;
  color: #000;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, #25F4EE, #FE2C55);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.features .section-subtitle {
  color: #666;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #25F4EE, #FE2C55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.feature-icon i {
  background: linear-gradient(45deg, #25F4EE, #FE2C55);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(37, 244, 238, 0.3);
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.feature-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #25F4EE, #FE2C55);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.feature-card:hover h3::after {
  width: 100px;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
  text-align: center;
  margin-top: 15px;
  font-size: 1.05rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features {
    padding: 70px 0;
  }
  
  .features .section-title {
    font-size: 2.2rem;
  }
  
  .features .section-subtitle {
    font-size: 1.1rem;
    padding: 0 15px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .features .section-title {
    font-size: 1.8rem;
  }
  
  .features .section-subtitle {
    font-size: 1rem;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
  }
  
  .feature-card p {
    font-size: 1rem;
  }
}

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

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

.feature-card {
  background: var(--tiktok-white);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: #000; /* Black background for contrast */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background-clip: padding-box;
}

/* TikTok gradient border effect */
.feature-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #25F4EE, #FE2C55, #000000, #25F4EE);
    background-size: 300% 300%;
    border-radius: 50%;
    z-index: -1;
    animation: gradientBG 3s ease infinite;
    opacity: 0.9;
}

/* Individual icon colors */
.feature-card:nth-child(1) .feature-icon i {
    background: linear-gradient(45deg, #25F4EE, #000000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:nth-child(2) .feature-icon i {
    background: linear-gradient(45deg, #FE2C55, #25F4EE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:nth-child(3) .feature-icon i {
    background: linear-gradient(45deg, #25F4EE, #000000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:nth-child(4) .feature-icon i {
    background: linear-gradient(45deg, #FE2C55, #000000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:nth-child(5) .feature-icon i {
    background: linear-gradient(45deg, #25F4EE, #FE2C55);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:nth-child(6) .feature-icon i {
    background: linear-gradient(45deg, #FE2C55, #000000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hover effects */
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(37, 244, 238, 0.4);
}

.feature-card:hover .feature-icon::before {
    animation: gradientBG 1.5s ease infinite;
    opacity: 1;
}

/* Animation for gradient background */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--tiktok-black);
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.feature-card p:last-child {
    margin-bottom: 0;
}

.why-it-works .cta-container {
    text-align: center;
    margin-top: 40px;
}

.why-it-works .btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(45deg, #25F4EE, #FE2C55);
    border: none;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 244, 238, 0.3);
}

.why-it-works .btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 244, 238, 0.4);
}

.why-it-works .cta-note {
    color: #999;
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-it-works {
        padding: 60px 0;
    }
    
    .why-it-works .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .why-it-works .section-title {
        font-size: 1.8rem;
    }
    
    .why-it-works .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
}

/* How It Works Section */
.how-it-works {
  padding: 120px 0;
  background-color: #f8f9ff;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(37, 244, 238, 0.05), transparent 25%),
              radial-gradient(circle at 90% 80%, rgba(254, 44, 85, 0.05), transparent 25%);
  z-index: 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--tiktok-dark);
  line-height: 1.7;
  margin-top: 20px;
  opacity: 0.9;
}

.steps-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.step.even {
  flex-direction: row-reverse;
}

.step-number {
  position: absolute;
  top: -25px;
  left: 40px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--tiktok-pink), var(--tiktok-teal));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(254, 44, 85, 0.3);
  z-index: 2;
}

.step.even .step-number {
  left: auto;
  right: 40px;
}

.step-content {
  flex: 1;
  padding: 0 40px 0 0;
}

.step.even .step-content {
  padding: 0 0 0 40px;
}

.step-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--tiktok-black);
  position: relative;
  display: inline-block;
}

.step-content h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--tiktok-pink), var(--tiktok-teal));
  border-radius: 2px;
}

.step-content p {
  color: var(--tiktok-dark);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.step-image {
  flex: 1;
  text-align: center;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-illustration {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.step:hover .step-illustration {
  transform: scale(1.03);
}

.package-option {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.package-option:hover {
  transform: translateX(5px);
  border-color: var(--tiktok-teal);
  background: white;
}

.package-option h4 {
  color: var(--tiktok-pink);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-option h4 i {
  color: var(--tiktok-teal);
}

.cta-container {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(254, 44, 85, 0.3);
  transition: all 0.3s ease;
}

.btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(254, 44, 85, 0.4);
}

.cta-note {
  margin-top: 15px;
  color: var(--tiktok-dark);
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .step,
  .step.even {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .step-content,
  .step.even .step-content {
    padding: 0;
    margin-bottom: 30px;
  }
  
  .step-number {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: -45px auto 20px;
  }
  
  .step.even .step-number {
    left: 0;
    right: 0;
    margin: -45px auto 20px;
  }
  
  .step-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .step-image {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .step-content h3 {
    font-size: 1.5rem;
  }
  
  .step-content p {
    font-size: 1rem;
  }
  
  .btn-large {
    padding: 14px 30px;
    font-size: 1.1rem;
  }
}

/* CTA Section */
.cta {
  padding: 100px 0;
  text-align: center;
  background: var(--gradient);
  color: var(--tiktok-white);
  position: relative;
  overflow: hidden;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.cta .btn {
  background: var(--tiktok-white);
  color: var(--tiktok-pink);
  font-weight: 700;
  padding: 15px 40px;
  font-size: 1.1rem;
}

.cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background-color: var(--tiktok-black);
  color: var(--tiktok-white);
  padding: 80px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.footer-about h3,
.footer-links h4, 
.footer-contact h4,
.footer-partners h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  color: var(--tiktok-white);
}

.footer-about h3 {
  font-size: 1.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.footer-about p {
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Section headers underline */
.footer-links h4::after,
.footer-contact h4::after,
.footer-partners h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(5px);
  color: var(--tiktok-teal);
}

/* Footer Links Styling */

.footer-partners {
  display: flex;
  flex-direction: column;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
}

.footer-partners a {
  display: block;
  margin-bottom: 10px;
  opacity: 0.7;
  transition: var(--transition);
  color: var(--tiktok-white);
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-partners a:hover {
  opacity: 1;
  transform: translateX(5px);
  color: var(--tiktok-teal);
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  
  .footer-about {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-about {
    grid-column: auto;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.footer-contact p {
  margin-bottom: 15px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--tiktok-white);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.legal-links {
  margin-top: 15px;
}

.legal-links a {
  margin: 0 10px;
  position: relative;
}

.legal-links a:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -15px;
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 50px;
    max-width: 100%;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--tiktok-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-secondary {
    margin-left: 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links h4::after,
  .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Why Choose Us Section */
.why-choose {
  padding: 100px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.05) 0%, rgba(254, 44, 85, 0.05) 100%);
  z-index: 0;
}

.why-choose .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.why-choose .section-title {
  font-size: 2.8rem;
  color: #000;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #25F4EE, #FE2C55);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.why-choose .section-subtitle {
  color: #666;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Reasons Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.reason-card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.reason-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  margin-right: 30px;
  line-height: 1;
  min-width: 60px;
  transition: all 0.3s ease;
}

.reason-card:hover .reason-number {
  color: rgba(37, 244, 238, 0.2);
}

.reason-content {
  flex: 1;
}

.reason-content h3 {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.reason-content h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #25F4EE, #FE2C55);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.reason-card:hover h3::after {
  width: 100px;
}

.reason-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.reason-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.1), rgba(254, 44, 85, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  font-size: 32px;
  color: #25F4EE;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.reason-card:hover .reason-icon {
  background: linear-gradient(135deg, #25F4EE, #FE2C55);
  color: #fff;
  transform: rotate(5deg) scale(1.1);
}

/* Comparison Section */
.comparison-section {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.comparison-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #25F4EE, #FE2C55);
}

.comparison-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #000;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 30px;
}

.comparison-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #25F4EE, #FE2C55);
  border-radius: 3px;
}

.comparison-table {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-header {
  display: flex;
  background: linear-gradient(90deg, #25F4EE, #FE2C55);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.comparison-row {
  display: flex;
  background: #fff;
  transition: all 0.3s ease;
}

.comparison-row:nth-child(even) {
  background: #f9f9f9;
}

.comparison-row:hover {
  background: #f0f0f0;
}

.comparison-feature, 
.comparison-competitor,
.comparison-us {
  padding: 20px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-feature {
  flex: 2;
  font-weight: 600;
  color: #333;
}

.comparison-competitor,
.comparison-us {
  flex: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comparison-competitor {
  background-color: #fff8f8;
  color: #FE2C55;
}

.comparison-us {
  background-color: #f0fffc;
  color: #25F4EE;
  font-weight: 600;
}

.comparison-competitor i,
.comparison-us i {
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Our Services Section */
.our-services {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.our-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(254, 44, 85, 0.03) 0%, rgba(37, 244, 238, 0.03) 100%);
  z-index: 0;
}

.our-services .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.our-services .section-title {
  font-size: 2.8rem;
  color: #000;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #FE2C55, #25F4EE);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.our-services .section-subtitle {
  color: #666;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transform: translateY(0);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #FE2C55, #25F4EE);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  transition: all 0.3s ease;
}

.service-card:hover .service-number {
  color: rgba(254, 44, 85, 0.1);
  transform: scale(1.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: #fff;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #FE2C55, #25F4EE);
  box-shadow: 0 10px 20px rgba(254, 44, 85, 0.2);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 15px 30px rgba(254, 44, 85, 0.3);
}

.service-card h3 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.service-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #FE2C55, #25F4EE);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.service-card:hover h3::after {
  width: 80px;
}

.service-content {
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.service-hover {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  display: flex;
  justify-content: center;
}

.service-card:hover .service-hover {
  height: 50px;
  margin-top: 10px;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.03) 0%, rgba(254, 44, 85, 0.03) 100%);
  z-index: 0;
}

.pricing .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.pricing .section-title {
  font-size: 2.8rem;
  color: #000;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #FE2C55, #25F4EE);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.pricing .section-subtitle {
  color: #666;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 1px solid rgba(254, 44, 85, 0.3);
  box-shadow: 0 15px 40px rgba(254, 44, 85, 0.1);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(45deg, #FE2C55, #25F4EE);
  color: #fff;
  padding: 5px 30px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
  transform-origin: center;
  width: 150px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  padding: 40px 30px 30px;
  text-align: center;
  background: linear-gradient(135deg, #f9f9f9, #fff);
  position: relative;
  overflow: hidden;
}

.pricing-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FE2C55, #25F4EE);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover .pricing-header::after {
  opacity: 1;
}

.pricing-card h3 {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 15px;
  font-weight: 700;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: #000;
  margin: 10px 0;
  line-height: 1;
  background: linear-gradient(45deg, #FE2C55, #25F4EE);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  -webkit-text-fill-color: #666;
}

.price-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-top: 10px;
}

.pricing-features {
  padding: 30px;
  flex-grow: 1;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  color: #666;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: #25F4EE;
  font-size: 0.9rem;
  background: rgba(37, 244, 238, 0.1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-footer {
  padding: 0 30px 40px;
  text-align: center;
}

.btn-block {
  display: block;
  width: 100%;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.testimonial-section {
  margin-top: 80px;
  text-align: center;
  position: relative;
  padding: 30px 0;
}

.testimonial-text {
  font-size: 1.5rem;
  color: #000;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding: 0 50px;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  position: absolute;
  font-size: 4rem;
  color: #FE2C55;
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.testimonial-text::before {
  left: 0;
  top: -10px;
}

.testimonial-text::after {
  right: 0;
  bottom: -30px;
}

/* Hover Effects */
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: #f4f6f7;
  color: #333;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(254, 44, 85, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(37, 244, 238, 0.1) 0%, transparent 40%);
  z-index: 0;
}

.testimonials .section-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 60px;
}

.testimonials .section-title {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #FE2C55, #25F4EE);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.testimonials .section-subtitle {
  color: #000;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  transform: translateY(0);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover::before {
  transform: translateX(100%);
}

.testimonial-content {
  padding: 30px;
  position: relative;
  z-index: 1;
}

.tiktok-icon {
  font-size: 24px;
  color: #FE2C55;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(254, 44, 85, 0.5);
  animation: pulse 2s infinite;
}

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

.testimonial-text {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid #25F4EE;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-right: 15px;
  background: linear-gradient(45deg, #FE2C55, #25F4EE);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.user-info h4 {
  color: #222;
  margin: 0 0 5px;
  font-size: 1.1rem;
}

.user-info p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

.engagement-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.engagement-stats span {
  color: #666;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.engagement-stats i {
  margin-right: 5px;
  color: #FE2C55;
}

.engagement-stats span:hover {
  color: #000;
  transform: scale(1.1);
}

.testimonials-cta {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonials-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  transform: rotate(45deg);
  animation: shine 8s infinite;
}

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

.testimonials-cta h3 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.testimonials-cta p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.testimonials-cta .btn {
  position: relative;
  z-index: 1;
  padding: 12px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  background: linear-gradient(45deg, #FE2C55, #25F4EE);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles for Testimonials */
@media (max-width: 1200px) {
  .testimonial-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 70px 0;
  }
  
  .testimonials .section-title {
    font-size: 2.2rem;
  }
  
  .testimonial-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 40px;
  }
  
  .testimonials-cta {
    padding: 30px 20px;
    margin-top: 40px;
  }
  
  .testimonials-cta h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .testimonials .section-title {
    font-size: 1.8rem;
  }
  
  .testimonial-content {
    padding: 25px 20px;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .testimonials-cta h3 {
    font-size: 1.4rem;
  }
  
  .testimonials-cta p {
    font-size: 1rem;
  }
}

/* Responsive Styles for Pricing Section */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    padding: 0 20px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .pricing-card {
    margin-bottom: 30px;
  }
  
  .pricing-card.featured {
    transform: none;
    order: -1;
  }
  
  .popular-badge {
    right: -25px;
    font-size: 0.7rem;
    padding: 3px 25px;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 70px 0;
  }
  
  .pricing .section-title {
    font-size: 2.2rem;
  }
  
  .pricing .section-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .price {
    font-size: 3rem;
  }
  
  .pricing-card h3 {
    font-size: 1.6rem;
  }
  
  .testimonial-text {
    font-size: 1.3rem;
    padding: 0 30px;
  }
}

@media (max-width: 480px) {
  .pricing .section-title {
    font-size: 1.8rem;
  }
  
  .pricing .section-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .pricing-header {
    padding: 30px 20px 25px;
  }
  
  .pricing-features {
    padding: 20px 15px;
  }
  
  .pricing-features li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  
  .pricing-footer {
    padding: 0 20px 30px;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .testimonial-text::before,
  .testimonial-text::after {
    font-size: 3rem;
  }
}

/* Responsive Styles for Our Services Section */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  
  .service-number {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .our-services {
    padding: 70px 0;
  }
  
  .our-services .section-title {
    font-size: 2.2rem;
  }
  
  .our-services .section-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .service-card {
    padding: 30px 25px;
  }
  
  .service-card h3 {
    font-size: 1.4rem;
  }
  
  .service-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .our-services .section-title {
    font-size: 1.8rem;
  }
  
  .our-services .section-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .service-number {
    font-size: 2.5rem;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  .service-content p {
    font-size: 0.95rem;
  }
}

/* Responsive Styles for Why Choose Section */
@media (max-width: 992px) {
  .reason-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  
  .reason-number {
    margin: 0 0 20px 0;
    font-size: 3rem;
  }
  
  .reason-icon {
    margin: 20px auto 0;
  }
  
  .reason-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .comparison-section {
    padding: 30px 20px;
  }
  
  .comparison-feature,
  .comparison-competitor,
  .comparison-us {
    padding: 15px 10px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .why-choose .section-title {
    font-size: 2.2rem;
  }
  
  .why-choose .section-subtitle {
    font-size: 1.1rem;
    padding: 0 15px;
  }
  
  .reason-card {
    padding: 25px 20px;
  }
  
  .reason-content h3 {
    font-size: 1.5rem;
  }
  
  .comparison-header {
    font-size: 0.8rem;
  }
  
  .comparison-feature,
  .comparison-competitor,
  .comparison-us {
    padding: 12px 8px;
    font-size: 0.85rem;
  }
  
  .comparison-competitor i,
  .comparison-us i {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .why-choose {
    padding: 70px 0;
  }
  
  .why-choose .section-title {
    font-size: 1.8rem;
  }
  
  .reason-card {
    padding: 20px 15px;
  }
  
  .reason-content h3 {
    font-size: 1.3rem;
  }
  
  .reason-content p {
    font-size: 1rem;
  }
  
  .comparison-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  
  .comparison-feature,
  .comparison-competitor,
  .comparison-us {
    padding: 10px 6px;
    font-size: 0.8rem;
  }
  
  .comparison-competitor i,
  .comparison-us i {
    margin-right: 5px;
    font-size: 0.9rem;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25F4EE, #FE2C55);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #FE2C55, #25F4EE);
}

.scroll-to-top:active {
    transform: translateY(0);
}
