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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

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

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

/* Animation classes for intersection observer */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

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

.animate-stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}

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

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

header {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
  animation: slideInFromLeft 0.8s ease-out;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

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

.logo img {
  height: 40px;
  transition: transform 0.3s ease;
}

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

.nav {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav a::after {
  content: '▼';
  font-size: 0.7rem;
  margin-left: 0.3rem;
  color: #666;
  transition: transform 0.3s ease;
}

.nav a:hover {
  color: #1e96de;
  transform: translateY(-1px);
}

.nav a:hover::after {
  transform: rotate(180deg);
}

.demo-btn {
  background: #1e96de;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.demo-btn:hover {
  background: #167bb8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 150, 222, 0.3);
}

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

.hero {
  background: #fff;
  padding: 4rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  animation: slideInFromLeft 1s ease-out;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #333;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-text h1 strong {
  font-weight: 700;
  background: linear-gradient(45deg, #1e96de, #167bb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  background: #1e96de;
  color: white;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
  animation: fadeInUp 1s ease-out 0.4s both;
  position: relative;
  overflow: hidden;
}

.hero-description::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: float 3s ease-in-out infinite;
}

.hero-btn {
  background: transparent;
  color: #1e96de;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: 2px solid #1e96de;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s both;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1e96de;
  transition: left 0.3s ease;
  z-index: -1;
}

.hero-btn:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 150, 222, 0.3);
}

.hero-btn:hover::before {
  left: 0;
}

.hero-image {
  position: relative;
  animation: slideInFromRight 1s ease-out;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
  animation: fadeIn 1s ease-out 0.8s both;
}

.hero-image:hover img {
  transform: scale(1.02);
}

.hero-bg-shape {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 300px;
  height: 300px;
  background: #f0f8ff;
  border-radius: 50%;
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

.stats {
  background: #f8f9fa;
  padding: 4rem 0;
}

.stats h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: #1e96de;
  color: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(30, 150, 222, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(30, 150, 222, 0.3);
}

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

.stat-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.stat-card p {
  font-size: 1rem;
  opacity: 0.9;
}

.stats-cta {
  text-align: center;
}

.products {
  padding: 4rem 0;
  background: white;
}

.products h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.products-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: #666;
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(30, 150, 222, 0.05), rgba(30, 150, 222, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: #1e96de;
}

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

.product-icon {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.product-card:hover .product-icon {
  transform: scale(1.1) rotate(5deg);
}

.product-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.product-card p {
  position: relative;
  z-index: 1;
}

.product-card a {
  color: #1e96de;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.product-card a::after {
  content: '→';
  transition: transform 0.3s ease;
}

.product-card:hover a {
  color: #167bb8;
  transform: translateX(5px);
}

.product-card:hover a::after {
  transform: translateX(5px);
}

.difference {
  background: #f8f9fa;
  padding: 4rem 0;
}

.difference h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.difference-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: #666;
  font-size: 1.1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.difference-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.difference-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(30, 150, 222, 0.02), rgba(30, 150, 222, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.difference-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.difference-number {
  font-size: 3rem;
  font-weight: 700;
  color: #1e96de;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* .difference-card:hover .difference-number {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(30, 150, 222, 0.3);
} */

.difference-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.difference-card p {
  color: #666;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.latest {
  padding: 4rem 0;
  background: white;
}

.latest h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.latest-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.latest-card:hover {
  transform: translateY(-5px);
}

.latest-image {
  height: 200px;
  background: #1e96de;
  position: relative;
  overflow: hidden;
}

.latest-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #1e96de, #167bb8);
}

.latest-content {
  padding: 1.5rem;
}

.latest-content h3 {
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.latest-btn {
  background: #1e96de;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
}

.cta-banner {
  background: linear-gradient(135deg, #1e96de 0%, #167bb8 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-btn {
  background: white;
  color: #1e96de;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

footer {
  background: #f8f9fa;
  padding: 2rem 0;
  border-top: 1px solid #e0e0e0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: #666;
  text-decoration: none;
}

.footer-links a:hover {
  color: #1e96de;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #666;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
}

.social-icon:hover {
  background: #1e96de;
}

.copyright {
  color: white;
  font-size: 0.9rem;
}

footer {
    background-color: #1e96de;
    color: white;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    /* margin-top: 2rem; */
}
/* Tablet styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  /* Header improvements */
  header {
    padding: 0.75rem 0;
  }
  
  .nav {
    display: none;
  }

  /* Hero section improvements */
  .hero {
    padding: 2rem 0;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    padding: 1.5rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  /* Hide decorative background shape on mobile */
  .hero-bg-shape {
    display: none;
  }

  /* Section padding adjustments */
  .stats,
  .products,
  .difference {
    padding: 3rem 0;
  }

  /* Typography improvements */
  .stats h2,
  .products h2,
  .difference h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .products-subtitle,
  .difference-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  /* Grid layouts */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .difference-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Card improvements */
  .stat-card {
    padding: 2rem 1.5rem;
  }

  .product-card,
  .difference-card {
    padding: 1.5rem;
  }

  .difference-number {
    font-size: 2.5rem;
  }

  /* Footer improvements */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-description {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .stats h2,
  .products h2,
  .difference h2 {
    font-size: 1.75rem;
  }
  
  .stat-card {
    padding: 1.5rem 1rem;
  }
  
  .stat-card h3 {
    font-size: 1.1rem;
  }
} 