/* Modern CSS with CSS variables, flexbox, grid, and animations */

/* Global Styles and CSS Variables */
:root {
  /* Primary Color Palette - Modern Blue Gradient */
  --primary-color: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1d4ed8;
  --secondary-color: #0284c7;
  --accent-color: #06b6d4;
  
  /* Neutral Colors */
  --text-color: #334155;
  --text-light: #64748b;
  --text-dark: #1e293b;
  --background-color: #f8fafc;
  --white: #ffffff;
  --black: #0f172a;
  
  /* UI Elements */
  --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius: 12px;
  --border-radius-sm: 6px;
  --section-padding: 100px 0;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

/* CSS Reset and Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

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

a:hover {
  color: var(--accent-color);
}

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

ul {
  list-style-type: none;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

p {
  margin-bottom: 1.5rem;
}

/* Container */
.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::after {
  height: 100%;
}

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

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 26px;
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.space {
  margin: 20px 0;
}

/* Section Styling */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}

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

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

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 0;
  height: var(--header-height);
  transition: var(--transition);
}

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

header.sticky {
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 70px;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  max-height: 60px;
  width: auto;
  transition: var(--transition);
}

.sticky .logo img {
  max-height: 50px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

.logo-text h1 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 0;
}

.logo-text .tagline {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}

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

.secondary-text {
  color: var(--secondary-color);
}

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

.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  transition: var(--transition);
}

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

.main-nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.mobile-menu-toggle span:first-child {
  top: 8px;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 16px;
}

.mobile-menu-toggle span:last-child {
  top: 24px;
}

.mobile-menu-toggle.active span:first-child {
  transform: rotate(45deg);
  top: 14px;
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:last-child {
  transform: rotate(-45deg);
  top: 14px;
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--white);
  z-index: 999;
  overflow: hidden;
  transition: height 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  height: 280px;
}

.mobile-menu ul {
  padding: 20px 0;
}

.mobile-menu li {
  margin-bottom: 15px;
}

.mobile-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 18px;
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--primary-color);
  background-color: rgba(0, 0, 0, 0.02);
  padding-left: 25px;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 6s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--white);
}

.hero-description {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 360px;
  border-radius: 20px;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: perspective(1000px) rotateY(0);
}

.wave-shape {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* Features Section */
.features {
  background-color: var(--white);
  z-index: 1;
  position: relative;
}

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

.feature-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.03) 0%, rgba(37, 99, 235, 0) 100%);
  transition: var(--transition);
  z-index: -1;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.feature-item:hover::before {
  height: 100%;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 32px;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  transform: scale(1.1);
}

.feature-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
  transition: var(--transition);
}

.feature-item:hover h3 {
  color: var(--primary-color);
}

.feature-item p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Screenshots Section */
.screenshots {
  background-color: var(--background-color);
  overflow: hidden;
}

.screenshots-slider {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  transition: transform 0.5s ease;
}

.screenshot {
  flex: 0 0 300px;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
}

.screenshot:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.screenshot img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.screenshot-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.screenshot:hover .screenshot-caption {
  opacity: 1;
  transform: translateY(0);
}

.slider-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.slider-prev,
.slider-next {
  background-color: var(--white);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
  width: 30px;
  border-radius: 5px;
}

/* Cloud Storage Integration Section */
.cloud-storage {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.cloud-storage::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

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

.cloud-storage-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.cloud-storage-content.reverse {
  flex-direction: row-reverse;
}

.cloud-storage-text {
  flex: 1;
}

.cloud-storage-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-dark);
  position: relative;
  padding-bottom: 15px;
}

.cloud-storage-text h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  border-radius: 3px;
}

.cloud-storage-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--text-color);
}

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

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

.feature-list li i {
  color: var(--primary-color);
  margin-right: 12px;
  font-size: 18px;
}

.cloud-storage-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rounded-image {
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  max-width: 100%;
  transform: perspective(1000px) rotateY(5deg);
}

.cloud-storage-content.reverse .rounded-image {
  transform: perspective(1000px) rotateY(-5deg);
}

.cloud-storage-image img:hover {
  transform: scale(1.02) perspective(1000px) rotateY(0deg);
  box-shadow: var(--hover-shadow);
}

@media (max-width: 992px) {
  .cloud-storage-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .cloud-storage-content.reverse {
    flex-direction: column;
  }
  
  .cloud-storage-text, 
  .cloud-storage-image {
    width: 100%;
  }
  
  .cloud-storage-text h3 {
    font-size: 26px;
  }
  
  .cloud-storage-text h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .cloud-storage-text {
    text-align: center;
  }
  
  .feature-list li {
    justify-content: center;
  }
  
  .rounded-image,
  .cloud-storage-content.reverse .rounded-image {
    transform: none;
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .cloud-storage-content {
    margin-bottom: 60px;
  }
  
  .cloud-storage-text h3 {
    font-size: 24px;
  }
  
  .cloud-storage-text p {
    font-size: 16px;
  }
  
  .rounded-image {
    max-width: 100%;
  }
}

/* Testimonials Section */
.testimonials {
  background-color: var(--white);
  padding-bottom: 120px;
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}

.testimonial {
  flex: 0 0 100%;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.testimonial-content {
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 80px;
  position: absolute;
  top: -20px;
  left: -15px;
  color: rgba(37, 99, 235, 0.1);
  z-index: -1;
}

.testimonial-content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--primary-dark);
}

.author-info p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonials-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.testimonials-dots .dot.active {
  background-color: var(--primary-color);
  width: 30px;
  border-radius: 5px;
}

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

.download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.7;
}

.download-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.download h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--white);
}

.download p {
  margin-bottom: 40px;
  font-size: 18px;
  opacity: 0.9;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.download-btn {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  background-color: var(--white);
  color: var(--primary-color);
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
  background-color: var(--background-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.download-btn i {
  font-size: 30px;
  margin-right: 15px;
}

.download-btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.download-btn .small-text {
  font-size: 12px;
  opacity: 0.8;
}

.download-btn .big-text {
  font-size: 20px;
  font-weight: 700;
}

.wave-shape-bottom {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* Footer Section */
footer {
  background-color: #2c3e50;
  color: var(--white);
  padding: 80px 0 20px;
  position: relative;
}

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

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-about p {
  opacity: 0.8;
  margin-bottom: 25px;
  line-height: 1.7;
}

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

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

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-links h3, .footer-contact h3 {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  color: var(--white);
}

.footer-links h3:after, .footer-contact h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  display: block;
  padding: 5px 0;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

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

.footer-contact p i {
  margin-right: 15px;
  color: var(--accent-color);
}

.footer-contact p a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-contact p a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 14px;
  margin-bottom: 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  z-index: 99;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

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

/* Privacy Policy & Terms Page */
.policy-page {
  padding: 150px 0 100px;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

.policy-container h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.policy-container h2 {
  font-size: 26px;
  margin: 40px 0 20px;
  color: var(--primary-color);
}

.policy-container p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.policy-container ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-container ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.policy-container ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.last-updated {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-up {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.my-5 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

/* AOS Animation Styles */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 42px;
  }
  
  .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .hero {
    padding: 160px 0 80px;
  }
  
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    justify-content: center;
    margin-top: 50px;
  }
  
  .feature-item {
    padding: 30px 20px;
  }
  
  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 130px 0 70px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .download-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .policy-container {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 30px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .btn {
    width: 100%;
  }
  
  .download h2 {
    font-size: 32px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}