/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #ffffff;
  color: #333333;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.2px;
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation Bar */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
}
.logo a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 70px;
  width: auto;
  margin-right: 0.7rem;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}
.logo-img:hover {
  transform: scale(1.05);
}
.logo {
  font-size: 1.7rem;
  font-weight: bold;
  color: #333333;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: #333333;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
  padding: 0.5rem 0;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.nav-links a:hover {
  color: #1a73e8;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #1a73e8;
  transition: width 0.3s ease;
  background: linear-gradient(90deg, #1a73e8, #4fc3f7);
}
.nav-links a:hover::after {
  width: 100%;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a73e8 0%, #4fc3f7 50%, #1a73e8 100%);
  color: #fff;
  padding: 1.5rem 0 1rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background: linear-gradient(45deg, #ffffff, #f0f8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 400;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-size: 1.1rem;
}
.cta-btn {
  display: inline-block;
  background: #fff;
  color: #1a73e8;
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: background 0.2s, color 0.2s;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(45deg, #ffffff, #f8f9fa);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.cta-btn:hover {
  background: #1a73e8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.3);
}
.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.cta-btn:hover::before {
  left: 100%;
}
.hero-pricing-preview {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem auto 0;
  max-width: 300px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.3);
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
}
.hero-pricing-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
}
.hero-pricing-preview h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.hero-pricing-preview p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.hero-pricing-preview .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.hero-logo {
  text-align: center;
  margin-bottom: 0.6rem;
}
.hero-logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  animation: logoFloat 3s ease-in-out infinite;
}

/* Features Section */
.features {
  padding: 4rem 0 2rem 0;
  background: #f8f9fa;
  position: relative;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}
.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}
.features h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  color: #333333;
  font-weight: 700;
  letter-spacing: -0.3px;
  position: relative;
  background: linear-gradient(45deg, #333333, #1a73e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.features h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a73e8, #4fc3f7);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 2rem 1.2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(26, 115, 232, 0.1);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a73e8, #4fc3f7);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card h3 {
  color: #1a73e8;
  margin-bottom: 0.7rem;
  font-weight: 600;
  font-size: 1.2rem;
  position: relative;
  background: linear-gradient(45deg, #1a73e8, #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.feature-card p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.5;
  line-height: 1.7;
}

/* Pricing Section */
.pricing {
  background: #ffffff;
  padding: 4rem 0 2rem 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}
.pricing h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  color: #333333;
  font-weight: 700;
  letter-spacing: -0.3px;
  position: relative;
  background: linear-gradient(45deg, #333333, #1a73e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a73e8, #4fc3f7);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-card {
  background: #f8f9fa;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 2.5rem 1.5rem;
  text-align: center;
  min-width: 240px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid rgba(26, 115, 232, 0.1);
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a73e8, #4fc3f7);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.pricing-card:hover::before {
  transform: scaleX(1);
}
.pricing-card h3 {
  color: #1a73e8;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.3rem;
  background: linear-gradient(45deg, #1a73e8, #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333333;
  font-weight: 500;
  font-size: 1.4rem;
  font-weight: 700;
}
.pricing-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}
.pricing-card ul li {
  margin-bottom: 0.5rem;
  color: #666666;
  font-size: 0.95rem;
  position: relative;
  padding-left: 0;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-card ul li::before {
  content: '✓';
  color: #1a73e8;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
  background: #f8f9fa;
  padding: 4rem 0 2rem 0;
  position: relative;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  color: #333333;
  font-weight: 700;
  letter-spacing: -0.3px;
  position: relative;
  background: linear-gradient(45deg, #333333, #1a73e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a73e8, #4fc3f7);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.testimonial-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 2rem 1.2rem;
  text-align: center;
  font-style: italic;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid rgba(26, 115, 232, 0.1);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3rem;
  color: #1a73e8;
  opacity: 0.2;
  font-family: serif;
  background: linear-gradient(45deg, #1a73e8, #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testimonial-card span {
  display: block;
  margin-top: 1rem;
  color: #1a73e8;
  font-style: normal;
  font-weight: 500;
  font-size: 0.9rem;
  background: linear-gradient(45deg, #1a73e8, #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}
.testimonial-card p {
  color: #666666;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* FAQ Section */
.faq {
  background: #ffffff;
  padding: 4rem 0 2rem 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}
.faq h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  color: #333333;
  font-weight: 700;
  letter-spacing: -0.3px;
  position: relative;
  background: linear-gradient(45deg, #333333, #1a73e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a73e8, #4fc3f7);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 1.5rem;
  background: #f8f9fa;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid rgba(26, 115, 232, 0.1);
}
.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #1a73e8, #4fc3f7);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
.faq-item:hover::before {
  transform: scaleY(1);
}
.faq-item h4 {
  color: #1a73e8;
  margin-bottom: 0.3rem;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  background: linear-gradient(45deg, #1a73e8, #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-item p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: #1a73e8;
  color: #fff;
  padding: 2rem 0 1rem 0;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a73e8 0%, #4fc3f7 100%);
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.footer-logo a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.footer-logo a:hover {
  color: #1a73e8;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: text-decoration 0.2s;
  font-size: 0.9rem;
  position: relative;
  padding: 0.3rem 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
  background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.7));
}
.footer-links a:hover::after {
  width: 100%;
}
.footer-copy {
  font-size: 0.95rem;
  opacity: 0.8;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Animations */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

/* About Us Section */
.about {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 4rem 0 2rem 0;
  position: relative;
}
.about h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  color: #333333;
  font-weight: 700;
  letter-spacing: -0.3px;
  position: relative;
  background: linear-gradient(45deg, #333333, #1a73e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a73e8, #4fc3f7);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}
.about-content {
  max-width: 1000px;
  margin: 0 auto;
}
.about-text h3 {
  font-size: 1.8rem;
  color: #1a73e8;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
  background: linear-gradient(45deg, #1a73e8, #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-text > p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666666;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.about-feature {
  background: #ffffff;
  border: 1px solid rgba(26, 115, 232, 0.1);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}
.about-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a73e8, #4fc3f7);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.about-feature:hover::before {
  transform: scaleX(1);
}
.about-feature h4 {
  color: #1a73e8;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  background: linear-gradient(45deg, #1a73e8, #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-feature p {
  color: #666666;
  line-height: 1.7;
  font-size: 1rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.stat {
  text-align: center;
  padding: 2rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(26, 115, 232, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}
.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a73e8;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #1a73e8, #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 1rem;
  color: #666666;
  font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 800px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li {
    margin: 1rem 0;
  }
  .nav-links a {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: background 0.2s;
  }
  .nav-links a:hover {
    background: #f8f9fa;
    color: #1a73e8;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .features-grid, .pricing-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .container {
    width: 98%;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .hero-logo img {
    height: 45px;
  }
  .cta-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
  .pricing-card {
    min-width: 200px;
    padding: 2rem 1rem;
  }
  .feature-card {
    padding: 1.5rem 1rem;
  }
  .testimonial-card {
    padding: 1.5rem 1rem;
  }
  .faq-item {
    padding: 1.2rem;
  }
  .about-feature {
    padding: 1.5rem;
  }
  .stat {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 500px) {
  .hero h1 {
    font-size: 1.3rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .hero-logo img {
    height: 40px;
  }
  .cta-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }
  .nav-links {
    top: 65px;
    height: calc(100vh - 65px);
  }
  .nav-links a {
    font-size: 1rem;
    padding: 1rem 2rem;
  }
  .mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
  }
  .logo-img {
    height: 60px;
  }
  .features h2, .pricing h2, .testimonials h2, .faq h2 {
    font-size: 1.6rem;
  }
  .about h2 {
    font-size: 1.6rem;
  }
  .about-text h3 {
    font-size: 1.4rem;
  }
  .feature-card h3 {
    font-size: 1.1rem;
  }
  .pricing-card h3 {
    font-size: 1.2rem;
  }
  .pricing-card p {
    font-size: 1.1rem;
  }
  .testimonial-card p {
    font-size: 0.95rem;
  }
  .faq-item h4 {
    font-size: 1rem;
  }
  .faq-item p {
    font-size: 0.9rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 0.7rem;
  }
  .container {
    width: 95%;
  }
  .features-grid, .pricing-grid, .testimonials-grid {
    gap: 1.5rem;
  }
  .about-features {
    gap: 1.5rem;
  }
  .about-stats {
    gap: 1.5rem;
  }
}
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.2rem;
  }
  .hero p {
    font-size: 0.85rem;
  }
  .hero-logo img {
    height: 35px;
  }
  .cta-btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
  .nav-links {
    top: 60px;
    height: calc(100vh - 60px);
  }
  .nav-links a {
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
  }
  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
  }
  .logo-img {
    height: 55px;
  }
  .features h2, .pricing h2, .testimonials h2, .faq h2 {
    font-size: 1.4rem;
  }
  .about h2 {
    font-size: 1.4rem;
  }
  .about-text h3 {
    font-size: 1.2rem;
  }
  .container {
    width: 92%;
  }
}

/* Legal Pages Styles */
.legal-content {
  padding: 6rem 0 4rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 100vh;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #333333;
  font-weight: 700;
  letter-spacing: -0.3px;
  background: linear-gradient(45deg, #333333, #1a73e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-content .last-updated {
  text-align: center;
  color: #666666;
  font-size: 0.9rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-section {
  margin-bottom: 2.5rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid rgba(26, 115, 232, 0.1);
}

.legal-section h2 {
  color: #1a73e8;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.4rem;
  background: linear-gradient(45deg, #1a73e8, #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-section p {
  color: #555555;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.legal-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-section ul li {
  color: #555555;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

@media (max-width: 800px) {
  .legal-content {
    padding: 4rem 0 2rem 0;
  }
  
  .legal-content h1 {
    font-size: 2rem;
  }
  
  .legal-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .legal-section h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 500px) {
  .legal-content h1 {
    font-size: 1.8rem;
  }
  
  .legal-section {
    padding: 1rem;
  }
  
  .legal-section h2 {
    font-size: 1.1rem;
  }
  
  .legal-section p,
  .legal-section ul li {
    font-size: 0.9rem;
  }
}

/* Contact Page Styles */
.contact {
  padding: 6rem 0 4rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 100vh;
}

.contact h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #333333;
  font-weight: 700;
  letter-spacing: -0.3px;
  background: linear-gradient(45deg, #333333, #1a73e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #1a73e8, #4fc3f7);
  margin: 1rem auto 0;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(26, 115, 232, 0.3);
}

.contact-subtitle {
  text-align: center;
  color: #666666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(26, 115, 232, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(45deg, #1a73e8, #4fc3f7);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: #1a73e8;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.contact-card p {
  color: #555555;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-link {
  display: inline-block;
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 2px solid #1a73e8;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.contact-link:hover {
  background: #1a73e8;
  color: #ffffff;
  transform: translateY(-2px);
}

.contact-note {
  display: block;
  color: #888888;
  font-size: 0.85rem;
  font-style: italic;
}

.contact-form-container {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(26, 115, 232, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #333333;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #333333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.submit-btn {
  background: linear-gradient(45deg, #1a73e8, #4fc3f7);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 115, 232, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn.loading {
  pointer-events: none;
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading .btn-loading {
  opacity: 1;
}

.btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-faq {
  margin-top: 4rem;
}

.contact-faq h3 {
  text-align: center;
  color: #333333;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

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

.contact-faq .faq-item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid rgba(26, 115, 232, 0.1);
}

.contact-faq .faq-item h4 {
  color: #1a73e8;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}

.contact-faq .faq-item p {
  color: #555555;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 800px) {
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
  
  .contact h2 {
    font-size: 2rem;
  }
  
  .contact-subtitle {
    font-size: 1rem;
  }
  
  .contact-faq h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 500px) {
  .contact-info {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .contact h2 {
    font-size: 1.8rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
