:root {
  --color1: #019689;
  --color2: #00796f;
  --bg: 0 0% 100%;
  --fg: 213 15% 12%;
  --card: 0 0% 100%;
  --card-fg: 213 15% 12%;
  --primary: 213 89% 15%;
  --primary-fg: 0 0% 98%;
  --secondary: 213 20% 97%;
  --secondary-fg: 213 15% 12%;
  --muted: 213 20% 96%;
  --muted-fg: 213 8% 45%;
  --cta: 24 95% 53%;
  --cta-fg: 0 0% 100%;
  --cta-hover: 24 95% 48%;
  --success: 142 76% 36%;
  --success-fg: 0 0% 98%;
  --destructive: 0 84% 60%;
  --destructive-fg: 0 0% 98%;
  --border: 213 20% 90%;
  --input: 213 20% 94%;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
    sans-serif;
  line-height: 1.6;
  background-color: hsl(var(--bg));
  color: hsl(var(--fg));
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: 0 2px 10px -2px hsla(var(--fg), 0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1rem;
}

.logo {
  height: 53px;
  width: auto;
  margin-top: 8px;
}

.nav {
  display: none;
  align-items: center;
  gap: 4rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav a {
  text-decoration: none;
  color: hsl(var(--fg));
  font-weight: 500;
  transition: color 0.3s;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  opacity: 0.7;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: hsl(var(--fg));
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop CTA Button */
.desktop-cta {
  display: none;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }

  .desktop-cta {
    display: block;
  }
}

/* Mobile Navigation Menu */
.mobile-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsla(var(--bg), 0.98);
  backdrop-filter: blur(12px);
  z-index: 40;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--fg));
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: 0.5rem;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  color: hsl(var(--primary));
  background: hsl(var(--secondary));
  transform: translateX(8px);
}

.mobile-nav-cta {
  margin-top: auto;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
}

.btn-cta {
  background: hsl(var(--cta));
  color: hsl(var(--cta-fg));
  box-shadow: 0 4px 20px -4px hsla(var(--cta), 0.25);
}

.btn-cta:hover {
  background: hsl(var(--cta-hover));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -8px hsla(var(--cta), 0.4);
}

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

.btn-outline:hover {
  background: hsl(var(--secondary));
  border-color: hsl(var(--primary));
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, hsl(var(--bg)) 0%, hsl(var(--secondary)) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero .highlight {
  color: hsl(var(--primary));
}

.hero .cta-text {
  color: hsl(var(--cta));
}

.hero-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-fg));
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-fg));
}

.trust-dot {
  width: 8px;
  height: 8px;
  background: hsl(var(--success));
  border-radius: 50%;
}

.hero-image {
  position: relative;
}

.dashboard-preview {
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 16px 40px -16px hsla(var(--fg), 0.16);
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.dashboard-preview:hover {
  transform: rotate(-3deg);
}

.dashboard-preview img {
  width: 100%;
  border-radius: 0.75rem;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  gap: 2rem;
}

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

.grid-3 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Cards */
.card {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 10px -2px hsla(var(--fg), 0.08);
  border: 1px solid hsl(var(--border));
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px -8px hsla(var(--fg), 0.12);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: hsla(var(--primary), 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: hsl(var(--primary));
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--fg));
}

.card p {
  color: hsl(var(--muted-fg));
  line-height: 1.6;
}

/* Text Styles */
.text-center {
  text-align: center;
}

.text-3xl {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-4xl {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-5xl {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .text-4xl {
    font-size: 2.5rem;
  }

  .text-5xl {
    font-size: 3rem;
  }
}

.section-title {
  margin-bottom: 1rem;
  color: hsl(var(--fg));
}

.section-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-fg));
  margin-bottom: 4rem;

  margin-left: auto;
  margin-right: auto;
}

/* Problems Section */
.problems {
  background: linear-gradient(to bottom, hsla(var(--secondary), 0.3), hsl(var(--bg)));
}

.problem-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 10px -2px hsla(var(--fg), 0.08);
  border: 1px solid hsl(var(--border));
  transition: all 0.3s;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px -8px hsla(var(--fg), 0.12);
}

.problem-icon {
  width: 64px;
  height: 64px;
  background: hsla(var(--destructive), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.problem-icon svg {
  width: 32px;
  height: 32px;
  color: hsl(var(--destructive));
}

/* Benefits Section */
.benefits {
  background: linear-gradient(to bottom, hsla(var(--secondary), 0.2), hsl(var(--bg)));
}

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

.benefit-icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-stat {
  background: #e4e7eb;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  svg {
    color: green;
  }
}

/* Form */
.form-section {
  background: linear-gradient(135deg, #ededee, #fef7f3);

  .trial-grad {
    background: linear-gradient(to right, #fae9de, #e3e2e3);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #fbd1b6;
  }
}

.form-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 16px 40px -16px hsla(var(--fg), 0.16);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: hsl(var(--fg));
}

.form-input {
  width: 100%;
  height: 48px;
  padding: 0.75rem 1rem;
  border: 2px solid hsl(var(--border));
  border-radius: 0.5rem;
  background: white;
  font-size: 1rem;
  transition: border-color 0.3s;
}

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

/* Footer */
.footer {
  background: #111111;
  color: hsl(var(--primary-fg));

  .footer-logo {
  }
}

.footer-content {
  padding: 4rem 0;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid hsla(var(--primary-fg), 0.2);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer a {
  color: hsla(var(--primary-fg), 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: hsl(var(--primary-fg));
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Utility Classes */
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}
.space-y-8 > * + * {
  margin-top: 2rem;
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}

/* Icon Styles */
.icon {
  width: 20px;
  height: 20px;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 24px;
  height: 24px;
}

/* Client Logos Animation */
.logos-container {
  overflow: hidden;
  padding: 2rem 0;
  background: hsl(var(--secondary));
}

.logos-scroll {
  display: flex;
  animation: scroll-left 30s linear infinite;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 80px;
  background: white;
  margin: 0 1rem;
  border-radius: 1rem;
  box-shadow: 0 2px 10px -2px hsla(var(--fg), 0.08);
  font-weight: 600;
  color: hsl(var(--muted-fg));
  border: 1px solid #ddd;

  overflow: hidden;

  & img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    align-items: center;
  }

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

#features {
  .card-icon {
    background-color: #eee;
    padding: 5px;
  }
}

.why-da {
  .bg-card {
    border: 1px solid #ddd;
    padding: 20px 20px;
  }
  .icon-box {
    background-color: #e7f5ec;
    padding: 12px;
    border-radius: 50%;
  }
}
.support-training {
  .icon-box {
    background-color: #eee;
    padding: 12px;
    border-radius: 15px;
  }
}

.cta {
  background: linear-gradient(to right, #f2f3f5, #fef7f2);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  border: 1px solid #ddd;
  a {
    max-width: 250px;
    margin: 0 10px;
  }
  &.cta1,
  &.cta2 {
    a:first-child {
      background: hsl(var(--cta));
      border-color: hsl(var(--cta));
      color: hsl(var(--cta-fg));

      &:hover {
        transform: scale(1.05);
      }
    }
  }
}

.faq {
  .card {
    padding: 15px 20px;

    summary {
      padding: 0 !important;
      margin-bottom: 10px;
    }
  }
}

form {
  label.error {
    color: red;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
  }
}

#enquireStick {
  position: fixed;
  right: -100px;
  top: 50%;
  z-index: 99;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);

  img {
    width: 24px;
  }

  a {
    background-color: var(--color1);
    padding: 10px 30px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    border-radius: 5px 5px 0 0;
    font-size: 18px;

    &:hover {
      background-color: var(--color2);
    }
  }

  @media (max-width: 767px) {
    display: none;
  }
}

.social-links {
  padding-top: 30px;
}
