/* ======================================= */
/*        GLOBAL SETTINGS / VARIABLES      */
/* ======================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


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

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Buttons */
.btn-primary {
  background: var(--primary);
  padding: 12px 26px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  transition: var(--transition);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  padding: 12px 26px;
  border: 2px solid var(--primary);
  border-radius: 6px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ======================================= */
/*                 TOP BAR                 */
/* ======================================= */
.top-bar {
  background: var(--primary-dark);
  color: #fff;
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-demo-btn {
  color: #fff;
  background: var(--accent);
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* ======================================= */
/*                 HEADER                  */
/* ======================================= */
.header {
  background: #fff;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

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

.logo .logo-sub {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

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

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


/* THEME BUTTONS */
.theme-buttons {
  display: flex;
  gap: 8px;
}

.theme-buttons button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 600;
}

.theme-buttons button:hover {
  background: var(--primary-dark);
}

/* ======================================= */
/*                 HERO                    */
/* ======================================= */
.hero {
  padding: 80px 0;
  background: #ffffff;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.hero-left h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.hero-left p {
  color: var(--text-soft);
  margin-bottom: 15px;
}

.hero-points {
  list-style: none;
  margin: 20px 0;
}

.hero-points li {
  margin-bottom: 6px;
  color: var(--text-main);
  padding-left: 20px;
  position: relative;
}

.hero-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.hero-buttons {
  margin: 20px 0;
}

.hero-right img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

/* ======================================= */
/*               OVERVIEW                  */
/* ======================================= */
.overview {
  padding: 80px 0;
}

.overview-inner h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.overview-inner p {
  text-align: center;
  max-width: 800px;
  margin: auto;
  color: var(--text-soft);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.overview-card {
  background: #fff;
  text-align: center;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
}

.overview-card img {
  width: 100px;
  margin-bottom: 15px;
}

/* ======================================= */
/*               MODULES                   */
/* ======================================= */
.modules {
  background: #fff;
  padding: 80px 0;
}

.modules h2 {
  text-align: center;
  font-size: 2rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  margin-top: 6px;
  margin-bottom: 30px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
/*
.module-card {
  background: #fff;
  padding: 22px;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
*/

.module-card {
    background: var(--card-bg);
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    border-top: 4px solid var(--primary);
}

.module-card h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

/* ======================================= */
/*               FEATURES                  */
/* ======================================= */
.features {
  padding: 80px 0;
}

.features h2 {
  text-align: center;
  font-size: 2.2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 7px;
  box-shadow: var(--shadow-soft);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* ======================================= */
/*              WORKFLOW                   */
/* ======================================= */
.workflow {
  padding: 80px 0;
  background: #eef4ff;
  text-align: center;
}

.workflow-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.step {
  background: var(--primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.arrow {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  padding-top: 10px;
}

/* ======================================= */
/*              INDUSTRIES                 */
/* ======================================= */
.industries {
  padding: 80px 0;
}

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

.industry-card {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
  font-weight: 600;
  color: var(--primary-dark);
}

/* ======================================= */
/*            INTEGRATIONS                 */
/* ======================================= */
.integrations {
  padding: 80px 0;
  background: #fff;
}

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

.integration-card {
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

/* ======================================= */
/*               PRICING                   */
/* ======================================= */
.pricing {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.price-card {
  background: #fff;
  padding: 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.price-card.active {
  border: 2px solid var(--primary);
}

.price {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 10px 0;
}

.price-card ul {
  list-style: none;
  margin-top: 12px;
}

.price-card li {
  margin-bottom: 6px;
}

/* ======================================= */
/*             TESTIMONIALS                */
/* ======================================= */
.testimonials {
  padding: 80px 0;
  background: #eef4ff;
}

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

.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.testimonial-card span {
  color: var(--primary);
  font-weight: 600;
}

/* ======================================= */
/*                FAQ                      */
/* ======================================= */
.faq {
  padding: 80px 0;
}

.faq-list details {
  margin-bottom: 12px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

/* ======================================= */
/*               SECURITY                  */
/* ======================================= */
.security {
  padding: 80px 0;
  background: #eef4ff;
}

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

.security-card {
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
  color: var(--primary-dark);
  font-weight: 600;
}

/* ======================================= */
/*               CONTACT                   */
/* ======================================= */
.contact {
  padding: 80px 0;
}

.contact-inner {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid #ccc;
  font-size: 1rem;
}

/* ======================================= */
/*               FOOTER                    */
/* ======================================= */
.footer {
  background: var(--primary-dark);
  padding: 14px 0;
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
}


/* ======================================= */
/*           RESPONSIVE (MOBILE)           */
/* ======================================= */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .header-inner {
    flex-direction: column;
    gap: 14px;
  }

  .theme-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* CUSTOM */


.hero-right {
    width: 600px;
    height: 380px;
    border: 1px solid #ddd;
}





   /* Feature Icons */
    .feature-card {
      text-align:center;
    }
    .feature-card img {
      width:80px;
      margin-bottom:15px;
    }
    /* Modules Icons */
    .module-card {
      text-align:center;
    }
    .module-card img {
      width:80px;
      margin-bottom:15px;
    }