:root {
  /* Colors */
  --primary-color: #15803d;
  --primary-hover: #0f6a33;
  --secondary-color: #16a34a;
  --text-color: #1e293b;
  --text-light: #64748b;
  --bg-color: #ffffff;
  --bg-light: #f8fafc;
  --border-color: #e2e8f0;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 32px;
  --font-size-4xl: 40px;

  /* Layout */
  --container-max-width: 1680px;
  --border-radius: 8px;
  --border-radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  background-color: transparent;
  font-size: var(--font-size-base);
  text-decoration: none;
}

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

section {
  padding: var(--spacing-2xl) 0;
}

section h2 {
  font-size: var(--font-size-3xl);
  text-align: center;
  color: var(--text-color);
}

/* header style */
.header {
  background-color: #ffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header.menu-open {
  position: relative;
  z-index: 1001;
}

.navbar {
  padding: var(--spacing-md) 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.logo img {
  width: 128px;
  height: 32px;
}

.logo-n {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
}

.logo-insight {
  color: #4a4a4a;
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  margin-left: -4px;
}

.logo-360 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #4a4a4a;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: transparent;
  border: 2px solid var(--secondary-color);
  border-radius: 20px;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-selector:hover {
  background: rgba(21, 128, 61, 0.1);
}

.lang-selector svg {
  width: 16px;
  height: 16px;
}
.btn-demo {
  font-weight: 400;
  line-height: 24px;
}
.hamburger-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.hamburger {
  width: auto;
  display: none;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  padding: 8px;
  position: relative;
}

.hamburger:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.hamburger.active {
  transform: rotate(90deg) scale(1.1);
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 12px;
}

.nav-menu {
  transition: all 0.3s ease;
}

.nav-menu.active {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 80px var(--spacing-md) var(--spacing-xl);
  gap: var(--spacing-md);
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  animation: slideDown 0.3s ease-out;
  align-items: flex-start;
  justify-content: flex-start;
  -webkit-overflow-scrolling: touch;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-menu.active li {
  width: 100%;
  border-bottom: 1px solid #e2e8f0;
  padding: var(--spacing-sm) 0;
}

.nav-menu.active li:last-child {
  border-bottom: none;
}

.nav-menu.active a {
  font-size: 18px;
  padding: var(--spacing-sm) 0;
  width: 100%;
  display: block;
}

.header.menu-open {
  position: relative;
}

.header.menu-open::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  animation: fadeIn 0.3s ease-out;
  backdrop-filter: blur(2px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* hero style */
.hero {
  background: linear-gradient(
    90deg,
    rgb(235, 246, 236) 0%,
    rgb(227, 242, 227) 50%,
    #eaf7e6 60%,
    #ffffff 100%
  );
  padding: 60px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.hero-title {
  font-size: 72px;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 100%;
  text-align: left;
  width: 100%;
}

.hero-button-left {
  background: #ffffff;
  padding: 12px 24px;
  border: 2px solid var(--secondary-color);
  border-radius: 6px;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.hero-button-left:hover {
  background-color: var(--secondary-color);
  cursor: pointer;
  color: white;
}
.hero-btn-wrapper {
  border: none;
  border-radius: 8px;
}
.btn-mid-border {
  border: 2px solid white;
  border-radius: 8px;
  padding: 2px;
}

.hero-buttons {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
}

.hero-banner {
  background-color: #effff6;
  border-radius: 9999px;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  width: fit-content;
}

.hero-banner .checkmark-icon {
  color: var(--primary-color);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.hero-banner h5 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 400;
}

.hero-right-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.hero-description p {
  font-family: "Segoe UI Symbol", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: right;
  color: #4b5563;
  width: 529px;
}

.hero-image {
  position: relative;
  background-image: url("assets/images/Hero-Img.png");
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 663px;
  width: 100%;
  padding-left: 142px;
  padding-right: 142px;
  overflow: visible;
  margin-top: 40px;
}

.chart-container {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  position: absolute;
  display: block;
  visibility: visible;
  opacity: 1;
}

.chart-top-right {
  top: 20px;
  right: 142px;
  z-index: 10;
}

.chart-bottom-left {
  bottom: 20px;
  left: 142px;
  min-width: 350px;
  width: auto;
  max-width: 420px;
  z-index: 11;
}

.chart-bottom-right {
  bottom: 20px;
  right: 142px;
  width: 320px;
  z-index: 12;
}

.chart-container.energy-reduction-card {
  width: 407px;
  z-index: 12;
  border-radius: 16px !important;
  overflow: hidden !important;
}

.energy-card-content {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.energy-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 15.3px;
  background: transparent;
  border: 1px solid #FFFFFF14;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.energy-icon-circle img {
  width: 24px;
  height: 24px;
}

.lightning-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.energy-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.energy-percentage {
  font-size: 28px;
  font-weight: 400;
  color: #1f2937;
  line-height: 1;
  margin: 0;
}

.energy-description {
  font-size: 14px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.4;
  margin: 0;
  max-width: 100%;
  white-space: nowrap;
}

.chart-title {
  font-size: 18px;
  font-weight: 400;
  color: black;
  margin: 0 0 16px 0;
  text-align: left;
}

.donut-chart {
  width: 200px;
  height: 200px;
  transform: rotate(-90deg);
}

.donut-ring {
  stroke: #e8e8e8;
}

.donut-segment {
  stroke-linecap: butt;
  opacity: 1;
  display: block;
}

.donut-segment-1 {
  stroke: #7c51f1;
}

.donut-segment-2 {
  stroke: #16a34a;
}

.donut-segment-3 {
  stroke: #fbbf24;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
  height: 250px;
  width: 100%;
  min-width: 350px;
  padding-bottom: 0;
}

.bar-wrapper {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 250px;
  justify-content: flex-end;
  position: relative;
  gap: 8px;
  min-width: 0;
  flex-shrink: 0;
  flex-grow: 1;
}

.bar-container {
  width: 100%;
  max-width: 40px;
  min-width: 36px;
  height: 210px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.bar-unfilled {
  width: 100%;
  background: #e5e7eb;
  opacity: 0.6;
  position: relative;
  display: block;
  width: 20px;
  flex-shrink: 0;
  border-radius: 12px 12px 0 0;
}

.bar-filled {
  width: 20px;
  border-radius: 0 0 12px 12px;
  transition: height 0.6s ease-in-out;
  position: relative;
  display: block;
  opacity: 1;
  flex-shrink: 0;
  margin-top: -10px;
}

.bar-label {
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  white-space: nowrap;
  text-align: center;
  margin-top: 8px;
  flex-shrink: 0;
  display: block;
  width: 100%;
}

.line-chart {
  width: 200px;
  height: 150px;
  display: block;
}

.line-chart-svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* 
future style */
.features h2 {
  font-weight: 400;
  color: var(--primary-color);
  font-size: 40px;
  text-align: center;
}

.features-subtitle {
  font-weight: 400;
  color: #4b5563;
  font-size: 24px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  width: 100%;
}

.feature-card {
  background-color: var(--bg-color);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background-image: url("assets/images/AllesCardBackground.svg");
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: #e7fff4;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.feature-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 400;
  color: #020817;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: var(--font-size-base);
  font-weight: 400;
  color: #64748b;
  line-height: 1.6;
  text-align: left;
  position: relative;
  z-index: 1;
}

/* modules style */
.modules h2 {
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 400;
  text-align: center;
}

.modules p {
  color: #4b5563;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  max-width: 826px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.modules-show-more {
  display: none;
}

.module-card {
  background-color: var(--bg-color);
  background-image: url("assets/images/UnsereModuleCardTop.svg"),
    url("assets/images/UnsereModuleCardBottom.svg");
  background-position: top right, bottom left;
  background-repeat: no-repeat;
  background-size: auto, auto;
  padding: 20px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.module-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.module-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-weight: 400;
  text-align: left;
}

.module-card > p {
  color: #4b5563;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  margin: 0 0 var(--spacing-md) 0;
  max-width: 90%;
}

.feature-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  width: 100%;
  margin-top: 10px;
}

.feature-bubble {
  background-color: var(--bg-color);
  color: #4b5563;
  border: 1px solid #1515150d;
  border-radius: 100px;
  padding: 12px;
  font-size: 15px;
  text-align: center;
  flex: 0 1 auto;
  min-width: fit-content;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1920px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* compare style */
.compare {
  position: relative;
  padding: var(--spacing-2xl) 0;
  overflow: visible;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--secondary-color);
}

.compare-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: visible;
}

.compare-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  background-image: url("assets/images/BG.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

.compare-wrapper::after {
  display: none;
}

.compare-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--spacing-2xl) var(--spacing-md);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: visible;
}

.compare-badge {
  background-color: #f0f9ff;
  border: none;
  border-radius: 9999px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--spacing-lg);
  z-index: 2;
  font-size: 20px;
}

.compare-badge .checkmark-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

.compare-badge span {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 400;
}

.compare-title {
  color: #ffffff;
  font-size: var(--font-size-4xl);
  font-weight: 400;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  z-index: 2;
  max-width: 900px;
}

.compare-description {
  color: #ffffff;
  font-size: var(--font-size-2xl);
  margin-bottom: 40px;
  max-width: 965px;
  line-height: 1.6;
  z-index: 2;
}

.compare-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: var(--spacing-lg);
  max-width: 1200px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  margin-top: var(--spacing-xl);
  overflow: visible;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.compare-card-title {
  font-size: var(--font-size-2xl);
  font-weight: 400;
  color: var(--primary-color);
  text-align: left;
}

.compare-table-wrapper {
  overflow-x: auto;
  margin-bottom: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  width: 100%;
}

.compare-table-wrapper table {
  min-width: 100%;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin: 0;
  display: table;
}

.compare-table thead {
  background-color: transparent;
  display: table-header-group;
}

.compare-table tbody {
  display: table-row-group;
}

.compare-table tr {
  display: table-row;
}

.compare-table th {
  color: var(--secondary-color);
  font-size: var(--font-size-base);
  font-weight: 400;
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
  display: table-cell;
}

.compare-table td {
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--border-color);
  color: #1e293b !important;
  font-size: 14px;
  vertical-align: middle;
  display: table-cell !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.compare-table td:first-child {
  color: #1e293b !important;
  font-weight: 500;
}

.compare-table td:nth-child(4),
.compare-table td:nth-child(5),
.compare-table td:nth-child(6) {
  color: #1e293b !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table .checkmark-icon {
  color: var(--secondary-color);
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.compare-table .sparkle-icon {
  margin-right: 4px;
  font-size: var(--font-size-base);
  vertical-align: middle;
  display: inline-block;
}

.compare-table td {
  color: #1e293b !important;
}

.compare-table td * {
  color: inherit;
}

@media (max-width: 768px) {
  .compare-table-wrapper {
    overflow-x: visible !important;
    margin-bottom: var(--spacing-md);
    width: 100% !important;
  }

  .compare-table {
    border: none !important;
    width: 100% !important;
    display: block !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
  }

  .compare-table thead {
    display: none !important;
  }

  .compare-table tbody {
    display: block !important;
    width: 100% !important;
  }

  .compare-table tr {
    display: block !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    border: none !important;
  }

  .compare-table td {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: var(--spacing-sm) 0 !important;
    border-bottom: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    color: #1e293b !important;
    text-align: left !important;
    vertical-align: top !important;
    visibility: visible !important;
    opacity: 1 !important;
    gap: var(--spacing-md) !important;
  }

  .compare-table td::before {
    content: attr(data-label) !important;
    color: var(--secondary-color) !important;
    font-weight: 400 !important;
    font-size: var(--font-size-base) !important;
    text-align: left !important;
    flex: 0 0 auto !important;
    min-width: 140px !important;
    display: block !important;
  }

  .compare-table td {
    flex-wrap: nowrap !important;
  }

  .compare-table td > * {
    flex: 0 0 auto !important;
    display: inline-block !important;
    margin-left: 0 !important;
    text-align: left !important;
    margin-right: 0 !important;
  }

  .compare-table td {
    text-align: left !important;
  }

  .compare-table .checkmark-icon {
    color: var(--secondary-color) !important;
    display: inline-block !important;
  }

  .compare-table td .sparkle-icon {
    margin-right: 4px !important;
    display: inline-block !important;
  }

  .compare-advantage {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: var(--spacing-md) !important;
  }

  .compare-advantage .advantage-checkmark {
    align-self: flex-start !important;
  }

  .compare-advantage .advantage-line1,
  .compare-advantage .advantage-line2 {
    font-size: 14px !important;
  }

  .compare-card-title {
    font-size: 18px !important;
    text-align: center !important;
  }
}

.compare-advantage {
  background: linear-gradient(
    180deg,
    #e7cffbd0 0%,
    hsla(189, 100%, 97%, 0.906) 100%
  );
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.compare-advantage .advantage-checkmark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.compare-advantage .advantage-checkmark-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.advantage-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.compare-advantage .advantage-line1,
.compare-advantage .advantage-line2 {
  color: var(--primary-color);
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

/* segment style */
.segments {
  padding: var(--spacing-2xl) 0;
}

.segments-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.segments-content {
  background-image: url("assets/images/HomeImg.png");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
  overflow: visible;
}

.segments-content > h2,
.segments-content > .segments-subtitle,
.segments-content > .segments-grid {
  position: relative;
  z-index: 2;
}
.segment-head {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.segments h2 {
  color: var(--primary-color);
  font-size: var(--font-size-4xl);
  font-weight: 400;
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.segments-subtitle {
  color: #4b5563;
  font-size: var(--font-size-2xl);
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1253px;
  position: relative;
  z-index: 1;
  justify-items: start;
  margin: 0;
}

.segment-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius-lg);
  padding: 20px 21px 0px 21px;
  display: flex;
  align-items: start;
  transition: transform 0.3s ease;
  overflow: hidden;
  max-width: 611px;
  width: 100%;
}

.segment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.segment-image {
  flex: 0 0 auto;
  width: 200px;
  height: 184px;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.segment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.segment-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--spacing-sm);
}

.segment-content h3 {
  font-size: var(--font-size-2xl);
  font-weight: 400;
  color: #020817;
}

.segment-tagline {
  color: var(--secondary-color);
  font-size: 17px;
  font-weight: 400;
  margin-bottom: var(--spacing-sm);
  line-height: 1.4;
}

.segment-description {
  color: #64748b;
  font-size: 15px;
  margin-bottom: var(--spacing-sm);
}

.segment-btn {
  background-color: var(--secondary-color);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  height: 48px;
  font-size: var(--font-size-base);
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 340px;
  max-width: 100%;
}

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

@media (min-width: 1024px) {
  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1253px;
    gap: 30px;
  }
}

@media (max-width: 1920px) {
  .segment-card {
    flex-direction: column;
    padding: 20px;
  }
  .segment-content {
    width: 326px;
  }
  .segment-image {
    width: 100%;
  }
  .segments-grid {
    grid-gap: 30px;
    width: 100%;
    max-width: 762px;
  }
}

@media (max-width: 1023px) and (min-width: 769px) {
  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 20px;
  }
}

@media (max-width: 1280px) {
  .segments-content {
    background-image: none;
  }
  .segments h2 {
    font-size: 32px;
  }
  .segments-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .segments-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    width: 100%;
    gap: 20px;
  }
  .segments h2 {
    font-size: 24px;
  }
  .segments-subtitle {
    font-size: 16px;
  }
}

/* testimonals style */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-head {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.testimonial-title {
  font-size: 40px;
  font-weight: 400;
  color: var(--primary-color);
}
.testimonial-info {
  font-size: 24px;
  color: #4b5563;
  margin: auto;
}
.testimonial-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  min-width: 343px;
}
.card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.card-logo {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: #effff6;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-user {
  display: flex;
  flex-direction: column;
}
.card-name {
  color: #020817;
}
.card-info {
  color: #6b7280;
  font-size: 14px;
}
.testimonial-desc {
  color: #374151;
  max-width: 405px;
  font-size: 16px;
}

/* contact style */
.contact {
  padding: var(--spacing-2xl) 0;
}

.contact-section {
  padding-left: 285px;
  padding-right: 285px;
}

.contact-section h2 {
  color: var(--primary-color);
  font-weight: 400;
  text-align: center;
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-3xl);
}

.contact-section p {
  margin: 0 auto;
}

.contact-description {
  font-family: "Segoe UI Symbol", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #4b5563;
  padding-bottom: 40px;
}

.contact-form {
  max-width: 100%;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm);
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #4d595e;
  opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

.form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--spacing-lg);
}

.contact-form .btn-primary,
.form-submit .btn-primary {
  background-color: var(--secondary-color) !important;
  color: #ffffff !important;
  border: none !important;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .btn-primary:hover,
.form-submit .btn-primary:hover {
  background-color: var(--primary-hover) !important;
}

.form-status {
  margin-top: 12px;
  font-size: 14px;
  color: var(--secondary-color);
  min-height: 18px;
}

.form-status.error {
  color: #b91c1c;
}

.form-status.success {
  color: var(--secondary-color);
}

/* benchmark style */
.benchmark-section {
  background-color: #77ffeb33;
}
.benchmark-wrapper {
  background-color: white;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1394px;
  height: 318px;
  margin: auto;
}

.benchmark-container {
  max-width: 923px;
  text-align: center;
  margin: 0 auto;
}

.benchmark-title {
  font-weight: 400;
  font-size: 40px;
  color: var(--primary-color);
  line-height: 36px;
  margin-bottom: 20px;
  width: 100%;
}

.benchmark-subtitle {
  font-size: 24px;
  color: #4b5563;
  margin-bottom: 20px;
}

.benchmark-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* footer style */
.footer {
  color: white;
  padding: 64px 0 32px 0;
}

.footer-logo-section {
  flex: 0 0 auto;
}
.footer-logo {
  width: 128px;
  height: 32px;
}
.footer-wrapper {
  margin: auto;
  max-width: 1280px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 16px;
}

.footer-logo-n {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 700;
  display: inline-block;
}

.footer-logo-insight {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  display: inline-block;
  margin-left: -4px;
}

.footer-logo-360 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.footer-description {
  color: #0f172a;
  font-size: 15px;
  line-height: 24px;
  min-width: 266px;
  max-width: 296px;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  flex: 1;
  justify-content: start;
  gap: 32px;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
  width: 296px;
}
.footer-nav-colum {
  display: flex;
  flex-direction: column;
  width: 296px;
  display: none;
}

.footer-nav-title {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-links a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-nav-links a:hover {
  opacity: 0.8;
}

.footer-divider {
  height: 1px;
  background-color: var(--secondary-color);
  margin: 32px 0;
}

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

.footer-copyright p {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 400;
}
.media-column {
  display: none;
}

.hero-head {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

@media (max-width: 1920px) {
  .hero-title {
    font-size: 48px;
  }
  .hero-banner h5 {
    font-size: 16px;
  }
  .hero-description p {
    font-size: 20px;
  }
}

@media (max-width: 1280px) {
  .hero-title {
    font-size: 40px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
  }
  .hero-head {
    flex-direction: column;
    gap: 0;
    display: flex;
  }
  .hero-title {
    order: 1;
    margin-bottom: 0;
  }
  .hero-right-content {
    order: 3;
    margin-top: 0;
    align-items: flex-start;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .hero-banner {
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .hero-banner h5 {
    text-align: left;
  }
  .hero-description {
    width: 100%;
  }
  .hero-description p {
    text-align: left;
    width: 100%;
  }
  .chart-bottom-left {
    left: 20px;
    bottom: 20px;
  }
  .chart-top-right {
    right: 20px;
    top: 20px;
  }
  .chart-bottom-right {
    right: 20px;
    bottom: 20px;
  }
  .hero-buttons {
    order: 2;
    margin-top: 30px;
    margin-bottom: 0;
  }
  .logo {
    display: flex;
    align-items: start;
    width: auto;
  }
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .hamburger {
    display: block;
  }
  .lang-selector,
  .btn-demo {
    display: none;
  }
  .nav-menu {
    display: none;
  }

  .header-actions {
    position: relative;
  }

  .header {
    position: relative;
  }

  .segments-content {
    background-image: none;
  }
  .segments h2 {
    font-size: 32px;
  }
  .segments-subtitle {
    font-size: 18px;
  }

  .testimonial-desc {
    font-size: 14px;
  }
  .testimonial-title {
    font-size: 32px;
  }
  .testimonial-info {
    font-size: 18px;
  }

  .contact {
    display: none;
  }

  .benchmark-subtitle {
    font-size: 20px;
  }
  .benchmark-wrapper {
    padding: 97px 30px;
  }

  .footer-description {
    max-width: 200px;
  }
  .footer-logo-section,
  .footer-nav-column {
    max-width: 266px;
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
  .features h2 {
    font-size: 32px;
  }

  .features-subtitle {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .hero {
    padding: 30px 0;
  }
  .hero-title {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .hero-banner h5 {
    font-size: 14px;
  }
  .hero-description p {
    font-size: 16px;
  }
  .hero-button-left {
    font-size: 16px;
  }
  .hero-buttons {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .chart-container {
    display: none;
  }
  .chart-top-right,
  .chart-bottom-left,
  .chart-bottom-right,
  .energy-reduction-card {
    display: none;
  }
  .segment-btn {
    width: 100% !important;
    align-self: stretch !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }
  .segment-content {
    width: 100%;
  }
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .module-card:nth-child(n + 5) {
    display: none;
  }
  .modules-show-more {
    display: flex !important;
    justify-content: center;
    margin-top: 30px;
  }
  .modules-show-more-btn {
    width: auto;
    padding: 12px 26px;
  }
  .modules h2 {
    font-size: 24px;
  }
  .modules p {
    font-size: 16px;
  }
  .compare-title {
    font-size: 24px;
  }
  .compare-description {
    font-size: 16px;
  }
  .segments h2 {
    font-size: 24px;
  }
  .segments-subtitle {
    font-size: 16px;
  }
  .hero-image {
    height: 453px;
    min-height: 453px;
    background-size: cover;
    overflow: hidden;
  }
}

@media (max-width: 800px) {
  :root {
    --font-size-4xl: 32px;
    --font-size-3xl: 28px;
    --spacing-2xl: 40px;
  }

  .navbar .container {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .nav-menu {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }

  .features-grid,
  .modules-grid,
  .compare-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: var(--spacing-xl) 0;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .testimonial-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
    min-width: 280px;
  }

  .testimonial-desc {
    width: 100%;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }
  .testimonial-title {
    font-size: 24px;
  }
  .testimonial-info {
    font-size: 16px;
  }

  .benchmark-title {
    font-size: 32px;
  }
  .benchmark-subtitle {
    font-size: 18px;
  }
  .btn-primary {
    font-size: 10px;
  }
  .btn {
    padding: 12px 20px;
  }
  .benchmark-wrapper {
    padding: 30px 30px;
  }

  .footer-nav {
    flex-direction: column;
  }
  .footer-nav-column {
    display: none;
  }
  .footer-nav-colum {
    display: flex;
  }
  .media-column {
    display: flex;
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
  }

  .features-container {
    padding: 0 var(--spacing-sm);
  }

  .features h2 {
    font-size: 28px;
  }

  .features-subtitle {
    font-size: 18px;
  }

  .feature-card {
    padding: var(--spacing-md);
  }

  .feature-card h3 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .feature-card,
  .module-card,
  .segment-card,
  .testimonial-card,
  .compare-item {
    padding: var(--spacing-md);
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  section h2 {
    font-size: var(--font-size-2xl);
  }

  .features-grid {
    grid-template-columns: 1fr !important;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
  }

  .features-container {
    padding: 0 var(--spacing-sm);
  }

  .features h2 {
    font-size: 24px;
  }

  .features-subtitle {
    font-size: 16px;
  }

  .feature-card {
    padding: var(--spacing-md);
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--spacing-sm);
  }

  .feature-icon img {
    width: 20px;
    height: 20px;
  }

  .feature-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .feature-card p {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .features h2 {
    font-size: 20px;
  }

  .features-subtitle {
    font-size: 14px;
  }

  .feature-card {
    padding: var(--spacing-sm);
  }

  .benchmark-title {
    font-size: 24px;
  }
  .benchmark-subtitle {
    font-size: 16px;
  }
  .benchmark-wrapper {
    padding: 20px 20px;
  }
  .btn-primary {
    font-size: 8px;
  }

  .footer-logo-section {
    flex: 1;
  }
}
@media (min-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .modules-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1100px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    min-width: auto;
  }
}
