/* 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 */
  --background: #f8f9fa;
  --white: #fff;
  --success: #4caf50;
  --border: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(135deg, #6c63ff 0%, #4361ee 100%);
}

*, *::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;
}

/* --- 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;
  }
}
.container_body {
  opacity: 0;
  transition: 0.2s ease-in-out;
  /* Navigation Bar */
  /* Footer */
  /* Backgrounds */
  /* --- Responsive Design --- */
}
.container_body .navbar {
  background-color: var(--light-text);
  padding: 15px 0;
  box-shadow: 0 2px 10px var(--shadow-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.container_body .navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container_body .navbar .logo {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
}
.container_body .navbar .nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.container_body .navbar .nav-links li {
  margin-left: 30px;
}
.container_body .navbar .nav-links a {
  color: var(--dark-text);
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}
.container_body .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;
}
.container_body .navbar .nav-links a:hover::after {
  width: 100%;
}
.container_body .navbar .nav-actions {
  display: flex;
  gap: 15px;
}
.container_body .navbar .menu-toggle {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  font-size: 1.8em;
  color: var(--dark-text);
  cursor: pointer;
}
.container_body .footer {
  background-color: var(--dark-text);
  color: var(--light-text);
  padding: 60px 0 30px;
  font-size: 0.9em;
}
.container_body .footer .footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.container_body .footer .footer-links h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
}
.container_body .footer .footer-links ul {
  list-style: none;
}
.container_body .footer .footer-links ul li {
  margin-bottom: 10px;
}
.container_body .footer .footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
}
.container_body .footer .footer-links ul li a:hover {
  color: var(--light-text);
}
.container_body .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 */
}
.container_body .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}
.container_body .footer-bottom .social-icons {
  margin-top: 10px; /* Adjust for wrapping */
}
.container_body .footer-bottom .social-icons a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 15px;
  font-size: 1.2em;
}
.container_body .footer-bottom .social-icons a:hover {
  color: var(--light-text);
}
.container_body .bg-light {
  background-color: var(--light-bg);
}
@media (max-width: 992px) {
  .container_body .navbar .nav-links, .container_body .navbar .nav-actions {
    display: none;
  }
  .container_body .navbar .menu-toggle {
    display: block;
  }
  .container_body .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;
  }
  .container_body .navbar .nav-links.active li {
    margin: 10px 0;
  }
  .container_body .hero-section .container {
    flex-direction: column;
    text-align: center;
  }
  .container_body .hero-content h1 {
    font-size: 2.8em;
  }
  .container_body .hero-content p {
    font-size: 1.1em;
  }
  .container_body .hero-ctas {
    justify-content: center;
  }
  .container_body .hero-illustration img {
    margin-top: 40px;
  }
  .container_body .feature-item, .container_body .feature-item.reverse-order {
    flex-direction: column;
    text-align: center;
  }
  .container_body .feature-image {
    margin-top: 30px;
  }
  .container_body .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .container_body .stats-bar {
    flex-direction: column;
    gap: 20px;
  }
  .container_body .pricing-grid {
    grid-template-columns: 1fr;
  }
  .container_body .pricing-plan.featured-plan {
    transform: translateY(0); /* Remove transform on mobile */
  }
  .container_body .register-form {
    flex-direction: column;
    align-items: center;
  }
  .container_body .register-form input[type=email] {
    width: 90%; /* Adjust width for mobile */
  }
  .container_body .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .container_body h1 {
    font-size: 2.5em;
  }
  .container_body h2 {
    font-size: 2em;
  }
  .container_body .section-padding {
    padding: 60px 0;
  }
  .container_body .navbar .logo {
    font-size: 1.5em;
  }
  .container_body .hero-section {
    padding: 80px 0;
  }
  .container_body .hero-content h1 {
    font-size: 2.2em;
  }
  .container_body .hero-content p {
    font-size: 1em;
  }
  .container_body .hero-ctas {
    flex-direction: column;
    gap: 15px;
  }
  .container_body .btn-large {
    width: 100%;
  }
  .container_body .advantage-grid {
    grid-template-columns: 1fr;
  }
  .container_body .features-overview .feature-item {
    gap: 30px;
  }
  .container_body .use-case-grid {
    grid-template-columns: 1fr;
  }
  .container_body .footer .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

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