:root {
  --green: #1a9e6e;
  --green-d: #147a55;
  --green-l: #e8f7f1;
  --dark: #0f1c14;
  --muted: #6b7280;
  --border: #e5e7eb;
}

body {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  background: #ffffff;
  overflow-x: hidden;
}

/* HERO-SECTION */
.hero-bg {
padding-top: 50px;
  background: #eef4f1;
  position: relative;
  padding-bottom: 180px;
  border-bottom-left-radius: 50% 30%;
  border-bottom-right-radius: 50% 30%;
  min-height: 650px;
}
h1, h2, h3, h4, h5, h6 {
    color: #000000 !important;
}
.hero-bg h1 {
  font-family: "PT Serif", Georgia, serif;
}

.dashboard-wrapper {
  position: relative;
  margin-top: -160px;

}

.dashboard-img {
  width: 100%;
  max-width: 900px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.highlight {
  background: #0d6b46;
  color: #fff;
  padding: 0 10px;
}

.btn-create {
  background: linear-gradient(84deg, #0e5e40 0%, #18a572 100%);
  color: #ffffff !important;
  border: none;
}

.btn-create:hover {
  background: transparent;
  border: 1px solid #000000;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important;
  }

  .hero-subtitle {
    font-size: 1.8rem !important;
  }

  .hero-bg {
    padding-bottom: 100px;
  }

  .dashboard-wrapper {
    margin-top: -150px;
  }
}

/* LOGO-SECTION */
.logo-slider {
  overflow: hidden;
  white-space: nowrap;
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 100px;
}

.logo-track img {
  height: 35px;
  width: auto;
}

.left-scroll {
  animation: scrollLeft 20s linear infinite;
}

.right-scroll {
  animation: scrollRight 20s linear infinite;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* PROBLEM'S-SECTION */
.icon-box {
  width: 60px;
  height: 60px;
  background: #f2f0f7;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  flex-shrink: 0;
}

.problems-section h2 {
  font-family: "PT Serif", Georgia, serif;
}

.problems-title {
  font-family: "PT Serif", Georgia, serif;
}

.sub-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #0e5e40, #18a572);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* SOLVE-SECTION */
.solutions-section {
  background: #edf8f1;
}

.solutions-section h2 {
  font-family: "PT Serif", Georgia, serif;
}

.solution-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgb(0 0 0 / 29%);
  transition: 0.3s ease;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-8px);
}

.solution-card img {
  width: 100%;
  object-fit: cover;
}

.solution-card h4 {
  font-family: "PT Serif", Georgia, serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.solution-card p {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 768px) {
  .solution-card img {
    height: 180px;
  }
}

/* CTA-SECTION */
.cta-banner {
  background: url("../images/images/cta-bg.svg") center/cover no-repeat;
  min-height: 450px;
  position: relative;
  overflow: hidden;
}
.cta-text {
  padding-left: 7rem;
}
@media (max-width: 768px) {
  .cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 60%);
    z-index: 1;
  }
  .cta-text {
    padding-left: 2rem !important;
  }
}

.cta-banner h2 {
  color: #b9ffec!important;
}

/* PRODUCTIVITY-SECTION */
.productivity-section {
  background: #edf8f1;
}

.productivity-section h2 {
  font-family: "PT Serif", Georgia, serif;
}

.feature-box {
  background: #fff;
  border-radius: 30px;
  padding: 50px 50px 0px 50px;
}

.feature-tabs-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
}

.feature-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.feature-tabs {
  display: flex;
  gap: 20px;
}

.feature-tab {
  flex: 0 0 280px;
  cursor: pointer;
  color: #8c939d;
  transition: 0.3s;
}

.feature-tab.active {
  color: #000;
}

.feature-tab.active h4 {
  font-weight: 700;
}

@media (min-width: 992px) {
  .feature-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
  }

  .feature-tab {
    display: block !important;
    text-align: left;
  }
}

.feature-slider {
  position: relative;
  min-height: 130px;
}

@media (max-width: 768px) {
  .feature-slider {
    min-height: 150px;
  }

  .feature-tab {
    display: none;
    text-align: center;
  }

  .feature-tab.active {
    display: block;
    animation: fadeIn 0.4s ease;
  }

  .feature-tab h4 {
    font-weight: 700;
    margin-bottom: 12px;
  }

  .feature-tab p {
    max-width: 280px;
    margin: 0 auto;
  }

  .feature-box {
    padding: 30px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* INTEGRATION-SECTION */
.integration-section h2 {
  font-family: "PT Serif", Georgia, serif;
}

.icon-row {
  display: flex;
  gap: 18px;
  width: max-content;
}

.app-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  box-shadow: 0 4px 15px rgb(0 0 0 / 20%);
}

.app-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .app-icon {
    width: 40px;
    height: 40px;
  }

  .app-icon img {
    width: 30px;
    height: 30px;
  }

  .icon-row {
    gap: 10px;
  }

  .row-2 {
    margin-left: 20px !important;
  }

  .row-3 {
    margin-left: 70px !important;
  }
}

.row-1 {
  margin-left: 35px;
}

.row-2 {
  margin-left: 0;
}

.row-3 {
  margin-left: 120px;
}

/* CTA-2 SECTION */
.platform-banner h2 {
  font-family: "PT Serif", Georgia, serif;
}

.platform-banner {
  background: url("../images/images/platform-banner.svg") center/cover no-repeat;
  min-height: 420px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.content {
  position: relative;
  z-index: 2;
}

.sub-title-light {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7)!important;
}

@media (max-width: 991px) {
  .platform-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 60%);
    z-index: 1;
  }

  .platform-banner {
    min-height: 320px;
    background-position: center;
  }
}

/* AMAZING FEATURE SECTION */
.capabilities-section h2 {
  font-family: "PT Serif", Georgia, serif;
}

.capability-item h5 {
  font-family: "PT Serif", Georgia, serif;
  font-weight: 700;

  margin-bottom: 0.75rem;
}

.capability-item p {
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.8;
}

.capability-icon {
  max-height: 85px;
  width: auto;
}

@media (max-width: 768px) {
  .capability-item {
    text-align: center;
  }

  .capability-icon {
    max-height: 70px;
  }
}

/* PRDUCTIVITY REDEFINED SECTION */
.productivity-redefined h2 {
  font-family: "PT Serif", Georgia, serif;
}

.tabs-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.productivity-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  min-width: max-content;
  padding: 0 1rem;
}

.tab-btn {
  border: 0;
  background: transparent;
  padding: 10px 18px;
  border-radius: 30px;
  white-space: nowrap;
}

.tab-btn.active {
  background: var(--green);
  color: #fff;
}

.dashboard-box {
  background: #ececec;
  border-radius: 12px;
  padding: 14px;
}

@media (max-width: 768px) {
  .productivity-tabs {
    justify-content: flex-start;
  }

  .tab-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* CRM COMPASION SECTION */

.crm-comparison {
  background: #eefcf5;
}

.comparison-title {
  font-family: "PT Serif", Georgia, serif;
}

.comparison-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.comparison-card th,
.comparison-card td {
  padding: 16px 20px;
  border-color: #f1f1f1;
  font-size: 14px;
}

.comparison-card table th:nth-child(2),
.comparison-card table td:nth-child(2) {
  background: #e7e7e78f;
}

thead .kommify-col {
  background: #05b573;
  color: #fff;
}

/* Odd rows */
.comparison-card tbody tr:nth-child(odd) .kommify-col {
  background: #05b573;
  color: #fff;
}

/* Even rows */
.comparison-card tbody tr:nth-child(even) .kommify-col {
  background: #03a066;
  color: #fff;
}

.crm-feature-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 11px;
}

.crm-feature-bg {
  background: #e7faf2;
  color: #12b76a;
}

.crm-negative-icon {
  color: #f04438;
}

.crm-positive-icon {
  color: #ffffff;
}

.crm-neutral-icon {
  color: #98a2b3;
}

@media (max-width: 768px) {
  .comparison-card th,
  .comparison-card td {
    padding: 12px;
    font-size: 13px;
  }
}

/* HOW WORKS SECTION */

/* .how-works-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(151, 216, 187, 0.45) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(151, 216, 187, 0.45) 0%,
      transparent 45%
    ),
    #ffffff;
} */

.how-works-title {
  font-family: "PT Serif", Georgia, serif;
}

.work-card {
  background: #2d3338;
  color: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
}

.work-card h5 {
  font-family: "PT Serif", Georgia, serif;
    margin-bottom: 12px;
    color: #ffffff !important;
}

.work-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.step-circle {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-d);
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-1 {
  left: 12%;
  top: 18px;
}

.step-2 {
  left: 49%;
  top: 20px;
  transform: translateX(-50%);
}

.step-3 {
  right: 12%;
  top: 15px;
}

@media (max-width: 991px) {
  .work-card {
    text-align: center;
  }
}

/* CTA-3 SECTION */
.cta-build {
  background: linear-gradient(90deg, #22b573, #2f8f67);
  padding: 50px 50px 0px 60px;
  overflow: hidden;
}

.cta-title {
  font-family: "PT Serif", Georgia, serif;
    color: #fff !important;
}

.cta-title span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.cta-person {
  max-height: 320px;
  width: auto;
}

@media (max-width: 991px) {
  .cta-person {
    max-height: 280px;
  }
}
