/* Base styles */
:root {
  --primary-color: #4285f4;
  --secondary-color: #34a853;
  --accent-color: #ea4335;
  --text-color: #333333;
  --light-gray: #f5f5f5;
  --dark-gray: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

body {
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s;
}

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

.cta-button {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #3367d6;
}

/* Hero section */
.hero {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.hero p {
  font-size: 1.2rem;
  color: var(--dark-gray);
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Products overview */
.products {
  padding: 5rem 0;
  background-color: white;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.section-heading p {
  color: var(--dark-gray);
  max-width: 700px;
  margin: 0 auto;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background-color: var(--light-gray);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.product-card p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

.learn-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.learn-more:after {
  content: "→";
  margin-left: 0.5rem;
}

/* Core benefits */
.benefits {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.benefits-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.benefit {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.benefit h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.benefit p {
  color: var(--dark-gray);
}

/* Social proof */
.social-proof {
  padding: 4rem 0;
  text-align: center;
  background-color: white;
}

.clients {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 2rem 0;
}

.client {
  opacity: 0.7;
  transition: opacity 0.3s;
}

.client:hover {
  opacity: 1;
}

.testimonial {
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
  color: var(--dark-gray);
}

/* Call to action */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, #e4e8f0 0%, #f5f7fa 100%);
}

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

.cta-section p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--dark-gray);
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 3rem 0;
}

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

.footer-info {
  max-width: 400px;
}

.footer-info .logo {
  color: white;
  margin-bottom: 1rem;
}

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

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

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

.copyright {
  margin-top: 2rem;
  text-align: center;
  color: #aaa;
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .product-cards {
    grid-template-columns: 1fr;
  }

  .benefits-container {
    flex-direction: column;
  }

  .nav-links {
    display: none; /* Simplified - would need hamburger menu in real application */
  }
}
