:root {
  --primary-color: #6366f1; /* Indigo */
  --primary-dark: #4f46e5;
  --primary-light: #e0e7ff;
  --accent-color: #ec4899; /* Pink */
  --accent-light: #fbcfe8;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --background-light: #ffffff;
  --background-off: #f8fafc;
  --border-color: #e2e8f0;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --button-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
}

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

body {
  color: var(--text-dark);
  background-color: var(--background-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a:not(.btn):not(.logo):after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition-base);
}

a:not(.btn):not(.logo):hover:after {
  width: 100%;
}

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

h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

button, .btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  transition: var(--transition-base);
  box-shadow: var(--button-shadow);
  position: relative;
  overflow: hidden;
}

button:hover, .btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

button:active, .btn:active {
  transform: translateY(-1px);
}

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

.btn-secondary:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.btn-large {
  padding: 16px 34px;
  font-size: 1.1rem;
}

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

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

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

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition-base);
}

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

.nav-links a.active {
  color: var(--primary-color);
  font-weight: 600;
}

.nav-links a.btn {
  color: white;
  padding: 8px 20px;
}

.nav-links a.btn:after {
  display: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  padding: 8px;
  box-shadow: none;
}

.mobile-menu-btn:hover {
  background: none;
  box-shadow: none;
  transform: none;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, var(--primary-light), #f5f5f5);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 45%, rgba(99, 102, 241, 0.1) 0%, transparent 33%),
                    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 33%);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--text-dark), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--background-light);
  position: relative;
  overflow: hidden;
}

.features::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to top, var(--background-off), transparent);
  pointer-events: none;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.section-title p {
  color: var(--text-light);
  max-width: 700px;
  margin: 1.5rem auto 0;
}

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

.feature-card {
  background-color: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-base);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--primary-light);
}

.feature-icon {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--primary-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  flex-grow: 1;
}

/* Feature Details */
.feature-hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--primary-light), rgba(236, 72, 153, 0.1));
  text-align: center;
}

.feature-hero h1 {
  margin-bottom: 1rem;
}

.feature-details {
  padding: 80px 0;
}

.feature-detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  gap: 60px;
}

.feature-detail-item:last-child {
  margin-bottom: 0;
}

.feature-detail-item.reverse {
  flex-direction: row-reverse;
}

.feature-detail-content {
  flex: 1;
}

.feature-detail-image {
  flex: 1;
  box-shadow: var(--card-shadow);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-base);
  border: 1px solid var(--border-color);
}

.feature-detail-image:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-icon.large {
  font-size: 2.5rem;
  height: 100px;
  width: 100px;
  margin-bottom: 2rem;
}

.feature-text h2 {
  margin-bottom: 1.5rem;
}

.feature-text p {
  margin-bottom: 2rem;
}

.feature-list {
  list-style-type: none;
}

.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.feature-list li i {
  color: var(--success-color);
  margin-right: 10px;
}

/* Screenshots Section */
.screenshots {
  padding: 100px 0;
  background-color: var(--background-off);
  position: relative;
  overflow: hidden;
}

.screenshots::before, .screenshots::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(var(--primary-light), transparent);
  opacity: 0.4;
  z-index: 0;
}

.screenshots::before {
  top: -100px;
  left: -100px;
}

.screenshots::after {
  bottom: -100px;
  right: -100px;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.screenshot-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-base);
  border: 1px solid var(--border-color);
  background-color: white;
}

.screenshot-item:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Download Section */
.download {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 20%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 20%);
}

.download h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.download p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 20%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 20%);
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.cta .btn {
  background-color: white;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}

.cta .btn:hover {
  background-color: var(--background-off);
}

/* Privacy Section */
.privacy {
  padding: 100px 0;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--primary-color);
}

.privacy-section h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 1rem;
  color: var(--text-dark);
}

.privacy ul, .privacy ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.privacy ul li, .privacy ol li {
  margin-bottom: 0.5rem;
}

.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.contact-list li i {
  color: var(--primary-color);
  margin-right: 10px;
  min-width: 20px;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: white;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

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

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 1.5px;
}

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

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
  font-weight: 400;
}

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

.footer-links a:after {
  background-color: white;
}

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

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

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

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

.social-icons a:after {
  display: none;
}

/* Download Page */
.download-hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--primary-light), rgba(236, 72, 153, 0.1));
  text-align: center;
}

.download-options {
  padding: 80px 0;
}

.download-card {
  background-color: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  margin-bottom: 40px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition-base);
}

.download-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: var(--primary-light);
}

.download-card.primary {
  background: linear-gradient(135deg, var(--primary-light), white);
  border-color: var(--primary-light);
}

.download-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  height: 80px;
  width: 80px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.download-cards-row {
  display: flex;
  gap: 30px;
}

.download-card.secondary {
  flex: 1;
}

.version {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 15px;
  display: block;
}

/* Installation Guide */
.installation-guide {
  padding: 80px 0;
  background-color: var(--background-off);
}

.installation-steps {
  margin-top: 50px;
  margin-left: 30px;
}

.step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.step-number {
  background-color: var(--primary-color);
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-content {
  padding-top: 10px;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.manual-installation {
  margin-top: 60px;
  background-color: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
}

.advanced-steps {
  margin: 20px 0 0 20px;
}

.advanced-steps li {
  margin-bottom: 10px;
}

.advanced-steps code {
  background-color: var(--background-off);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}

/* Compatibility */
.compatibility {
  padding: 80px 0;
}

.compatibility h2 {
  text-align: center;
  margin-bottom: 50px;
}

.compatibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.compatibility-item {
  background-color: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition-base);
}

.compatibility-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.compatibility-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.compatibility-icon.supported {
  color: var(--success-color);
}

.compatibility-icon.partial {
  color: var(--warning-color);
}

.status {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 10px;
}

.status.supported {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success-color);
}

.status.partial {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--warning-color);
}

/* FAQ */
.faq {
  padding: 80px 0;
  background-color: var(--background-off);
}

.faq-list {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background-color: white;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.faq-question {
  padding: 20px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-base);
}

.faq-question:hover {
  background-color: var(--primary-light);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  flex: 1;
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition-base);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  margin: 0;
}

/* Other Features */
.other-features {
  margin-top: 100px;
}

.other-features h2 {
  text-align: center;
  margin-bottom: 50px;
}

.other-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.show {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 60px 0;
  }
}

/* Hero Section Enhancements */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}

.shape-1 {
  top: 15%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(99, 102, 241, 0.2);
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  bottom: 15%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(236, 72, 153, 0.2);
  animation: float 6s ease-in-out infinite alternate;
}

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

/* Features CTA */
.features-cta {
  text-align: center;
  margin-top: 50px;
}

/* Screenshot Section Enhancements */
.screenshot-item {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.screenshot-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.screenshot-overlay h3 {
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.screenshot-overlay p {
  font-size: 0.9rem;
  margin-bottom: 0;
  opacity: 0.9;
}

.screenshot-item:hover .screenshot-overlay {
  transform: translateY(0);
}

.screenshot-item:hover img {
  transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--background-light);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 25%),
    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 25%);
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-item {
  flex: 0 0 calc(33.33% - 20px);
  max-width: calc(33.33% - 20px);
}

.testimonial-content {
  background-color: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary-light);
  font-family: serif;
  opacity: 0.5;
  z-index: 0;
}

.testimonial-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

.testimonial-author h4 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

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

/* Download Stats Section */
.download-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  color: white;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.stats-number i {
  font-size: 1.5rem;
  margin-left: 5px;
  color: var(--warning-color);
}

.stats-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
}

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

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

.back-to-top:after {
  display: none;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  width: 0%;
  z-index: 9999;
  transition: width 0.2s ease;
}

/* Header Scroll Effects */
header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header.header-hidden {
  transform: translateY(-100%);
}

/* Enhanced Footer Links */
.footer-links a {
  display: inline-block;
  position: relative;
  padding-left: 5px;
}

.footer-links i {
  width: 20px;
  text-align: center;
  margin-right: 8px;
  color: var(--primary-color);
} 