@charset "UTF-8";
/* Basic Reset & Global Styles */
:root {
  --primary-color: #5A67F1; /* A shade of blue/purple for primary actions */
  --secondary-color: #6C757D; /* Grey for secondary text/buttons */
  --light-bg: #F8F9FA; /* Light background for sections */
  --dark-text: #212529;
  --light-text: #FFFFFF;
  --border-color: #E9ECEF;
  --shadow-color: rgba(0, 0, 0, 0.05);
  --font-heading: "Segoe UI", sans-serif; /* Example font */
  --font-body: "Open Sans", sans-serif; /* Example font */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--light-text);
}

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

.section-padding {
  padding: 80px 0;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark-text);
  margin-bottom: 20px;
}

h1 {
  font-size: 3.5em;
  line-height: 1.2;
}

h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
}

h3 {
  font-size: 1.8em;
}

h4 {
  font-size: 1.3em;
}

p {
  margin-bottom: 15px;
}

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

a:hover {
  color: #434eb0; /* Darker primary color on hover */
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: #434eb0;
  color: #fff;
}

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

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

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

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

.btn-large {
  padding: 15px 35px;
  font-size: 1.1em;
}

.btn-link {
  color: var(--primary-color);
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}

.btn-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-link:hover i {
  transform: translateX(5px);
}

.icon-large {
  font-size: 3em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.icon-medium {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Navigation Bar */
.navbar {
  background-color: var(--light-text);
  padding: 15px 0;
  box-shadow: 0 2px 10px var(--shadow-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.navbar .logo {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar .nav-links li {
  margin-left: 30px;
}

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

.navbar .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

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

.navbar .nav-actions {
  display: flex;
  gap: 15px;
}

.navbar .menu-toggle {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  font-size: 1.8em;
  color: var(--dark-text);
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #e0f2f7, #c1d9f0); /* Light blue gradient */
  padding: 100px 0;
  display: flex;
  align-items: center;
  min-height: 70vh;
}

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

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

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

.hero-illustration {
  flex: 1;
  text-align: center;
}

.hero-illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px var(--shadow-color);
}

/* Advantages Section */
.advantages-section {
  text-align: center;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.advantage-item {
  background-color: var(--light-text);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow-color);
  text-align: center;
  transition: transform 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
}

.advantage-item h3 {
  margin-top: 15px;
  margin-bottom: 10px;
}

/* Features Overview Section */
.features-overview .feature-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

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

.features-overview .feature-item.reverse-order {
  flex-direction: row-reverse;
}

.features-overview .feature-content {
  flex: 1;
}

.features-overview .feature-content h3 {
  margin-bottom: 15px;
}

.features-overview .feature-content ul {
  list-style: none;
  margin-top: 20px;
}

.features-overview .feature-content ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-overview .feature-content ul li i {
  color: #28a745; /* Green checkmark */
  margin-right: 10px;
}

.features-overview .feature-image {
  flex: 1;
  text-align: center;
}

.features-overview .feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow-color);
}

/* Use Cases Section */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.use-case-item {
  background-color: var(--light-text);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow-color);
  text-align: center;
}

.use-case-item h3 {
  margin-top: 15px;
  margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials-section {
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.testimonial-item {
  background-color: var(--light-text);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.testimonial-item p {
  font-style: italic;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.testimonial-item h4 {
  margin: 0;
  color: var(--primary-color);
}

.stats-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 30px;
  border-radius: 8px;
  margin-top: 60px;
  font-size: 1.2em;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stats-bar div span {
  display: block;
  font-size: 2em;
  margin-bottom: 5px;
}

/* Pricing Section */
.pricing-section h2 {
  margin-bottom: 60px;
}

.pricing-toggle {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-toggle .toggle-btn {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  color: var(--secondary-color);
  margin: 0 5px;
}

.pricing-toggle .toggle-btn.active {
  background-color: var(--primary-color);
  color: var(--light-text);
  border-color: var(--primary-color);
}

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

.pricing-plan {
  background-color: var(--light-text);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-plan.featured-plan {
  border: 3px solid var(--primary-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.pricing-plan h3 {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.pricing-plan .price {
  font-size: 3em;
  font-weight: bold;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.pricing-plan .price .period {
  font-size: 0.5em;
  font-weight: normal;
  color: var(--secondary-color);
}

.pricing-plan ul {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing-plan ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.pricing-plan ul li i {
  color: #28a745;
  margin-right: 10px;
}

.pricing-plan .btn {
  width: 80%;
}

/* FAQ Section */
.faq-section {
  text-align: center;
}

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

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-header {
  background-color: var(--light-text);
  color: var(--dark-text);
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--light-bg);
}

.accordion-header::after {
  content: "+"; /* Plus sign */
  font-size: 1.2em;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.accordion-header.active::after {
  content: "−"; /* Minus sign */
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 25px;
  background-color: var(--light-text);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-content p {
  padding-bottom: 20px;
  margin: 0;
  color: var(--secondary-color);
}

/* Call to Action / Register Section */
.cta-section {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.cta-section h2 {
  color: var(--light-text);
}

.cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.register-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.register-form input[type=email] {
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  width: 400px;
  max-width: 80%;
  font-size: 1em;
}

.social-login-options {
  margin-top: 20px;
}

.social-login-options p {
  margin-bottom: 15px;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.8);
}

.social-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--light-text);
  color: var(--dark-text);
  padding: 10px 20px;
  border-radius: 5px;
  margin: 0 10px 15px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.social-btn:hover {
  background-color: #e0e0e0;
}

.social-btn i {
  margin-right: 10px;
  font-size: 1.2em;
}

/* Footer */
.footer {
  background-color: var(--dark-text);
  color: var(--light-text);
  padding: 60px 0 30px;
  font-size: 0.9em;
}

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

.footer .footer-links h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

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

.footer .footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer .footer-links ul li a:hover {
  color: var(--light-text);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .social-icons {
  margin-top: 10px; /* Adjust for wrapping */
}

.footer-bottom .social-icons a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 15px;
  font-size: 1.2em;
}

.footer-bottom .social-icons a:hover {
  color: var(--light-text);
}

/* Backgrounds */
.bg-light {
  background-color: var(--light-bg);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .navbar .nav-links, .navbar .nav-actions {
    display: none;
  }
  .navbar .menu-toggle {
    display: block;
  }
  .navbar .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px; /* Adjust based on navbar height */
    left: 0;
    width: 100%;
    background-color: var(--light-text);
    box-shadow: 0 5px 10px var(--shadow-color);
    padding: 20px 0;
    text-align: center;
  }
  .navbar .nav-links.active li {
    margin: 10px 0;
  }
  .hero-section .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.8em;
  }
  .hero-content p {
    font-size: 1.1em;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-illustration img {
    margin-top: 40px;
  }
  .feature-item, .feature-item.reverse-order {
    flex-direction: column;
    text-align: center;
  }
  .feature-image {
    margin-top: 30px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    flex-direction: column;
    gap: 20px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-plan.featured-plan {
    transform: translateY(0); /* Remove transform on mobile */
  }
  .register-form {
    flex-direction: column;
    align-items: center;
  }
  .register-form input[type=email] {
    width: 90%; /* Adjust width for mobile */
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5em;
  }
  h2 {
    font-size: 2em;
  }
  .section-padding {
    padding: 60px 0;
  }
  .navbar .logo {
    font-size: 1.5em;
  }
  .hero-section {
    padding: 80px 0;
  }
  .hero-content h1 {
    font-size: 2.2em;
  }
  .hero-content p {
    font-size: 1em;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 15px;
  }
  .btn-large {
    width: 100%;
  }
  .advantage-grid {
    grid-template-columns: 1fr;
  }
  .features-overview .feature-item {
    gap: 30px;
  }
  .use-case-grid {
    grid-template-columns: 1fr;
  }
  .footer .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/*# sourceMappingURL=home.css.map */
