:root {
  --primary: #14b8b1;
  --primary-dark: #0fa3a0;
  --primary-light: #e6f7f6;
  --secondary: #0d1b2a;
  --danger: #dc3545;
  --text-dark: #1e2637;
  --text-gray: #64748b;
  --bg-light: #f0fdff;
  --bg-white: #ffffff;
  --border-color: #e8edf2;
  --shadow-sm:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --text-dark: #2c3e50;
  --text-light: #6c7a89;
  --bg-light: #f0fdff;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;

  --transition: all 0.3s ease;
}

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

html,
body {
  /* overflow-x: hidden; removed to allow position: sticky to work */
}

body {
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Utilities */
.text-center {
  text-align: center;
}
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.fw-bold {
  font-weight: 700;
}
.fw-semibold {
  font-weight: 600;
}
.d-flex {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-center {
  justify-content: center;
}
.flex-column {
  flex-direction: column;
}
.gap-1 {
  gap: 0.5rem;
}
.gap-2 {
  gap: 1rem;
}
.gap-3 {
  gap: 1.5rem;
}
.gap-4 {
  gap: 2rem;
}

/* Buttons */
/* .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
} */

/* .btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 191, 165, 0.3);
} */
/* 
.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--gray-300);
}

.btn-outline:hover {
  background-color: var(--gray-100);
  border-color: var(--gray-300);
}

.btn-white {
  background-color: var(--white);
  color: var(--secondary);
}

.btn-white:hover {
  background-color: var(--gray-100);
  transform: translateY(-2px);
} */

/* Navbar */
/* .navbar {
  padding: 20px 0;
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo i {
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.nav-links i {
  font-size: 0.8rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
} */
.btn-white {
  background-color: var(--white);
  color: var(--secondary);
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.login-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.login-link:hover {
  color: var(--primary);
}

.nav-actions .btn-primary {
  padding: 10px 20px;
  border-radius: var(--border-radius);
}

/* Hero Section */
/* .hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
  background-image: url(../images/teal.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 105% 70%;
} */

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

.hero-text {
  flex: 1;
  max-width: 550px;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--secondary);
}
html[dir="ltr"] .hero h1 {
  font-size: 3rem;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  gap: 24px;
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--secondary);
  font-size: 0.95rem;
}

.hero-badges i {
  color: var(--primary);
  font-size: 1.2rem;
}

.hero-image-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image-wrapper img {
  border-radius: var(--border-radius-lg);
  max-width: 110%;
  margin-right: -100px; /* To let the image overflow slightly like the design */
  position: relative;
  z-index: 1;
}

.floating-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background: #f0fdff;
  padding: 12px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--secondary);
  animation: float 3s ease-in-out infinite;
  z-index: 2;
  border: 1px solid #ccc;
}

.floating-badge i {
  color: var(--primary);
  font-size: 1.5rem;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Feature Banner (Dark Pill) */
.feature-banner {
  background-color: var(--secondary);
  border-radius: 100px;
  padding: 24px 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: -40px auto 80px;
  position: relative;
  z-index: 10;
  max-width: 1100px;
  box-shadow: 0 10px 30px rgba(26, 43, 76, 0.15);
}

.feature-banner-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.feature-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(0, 191, 165, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.feature-banner-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: #fff;
}

.feature-banner-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-title h2 span {
  color: var(--primary);
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Value Props Grid */
.value-props {
  padding: 40px 0 80px;
  background-color: #f0fdff;
  margin-bottom: 60px;
  background-image: url(../images/teal6.png);
  background-size: 110% 100%;
  background-repeat: no-repeat;
  background-position: -40px 25px;
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.prop-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.prop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--primary);
  background: #ffffffc2;
}

.prop-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background-color: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prop-icon i {
  font-size: 2.5rem;
  color: var(--primary);
}

.prop-card h3 {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.prop-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Cross Device Banner */
.cross-device {
  padding: 0 24px;
  margin-bottom: 10px;
}

.cross-device-banner {
  background: #0d1b2a;
  border-radius: var(--border-radius-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.cross-device-banner::before {
  content: "";
  background-image: url(../images/teal5.png);
  background-position: 220px 60px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
html[dir="rtl"] .cross-device-banner::before {
  background-position: 560px -130px;
}
.cd-text {
  flex: 1;
  color: var(--white);
  z-index: 2;
}

.cd-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.cd-text h2 span {
  color: var(--primary);
  display: block;
}

.cd-features {
  margin-top: 32px;
}

.cd-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.cd-features li i {
  color: var(--primary);
  font-size: 1.2rem;
}

.cd-image {
  flex: 1.5;
  display: flex;
  justify-content: flex-end;
  z-index: 2;
}

.cd-image img {
  max-width: 100%;
  margin-right: 20px;
}

/* Benefits Icons */
.benefits {
  padding: 40px 0 80px;
}
.benefits::before {
  content: "";
  background: url(../images/teal6.png);
  background-size: 110% 130%;
  background-position: -90px -80px;
  background-repeat: no-repeat;
  width: 100%;
  height: 300px;
  display: inline-block;
  position: absolute;
  z-index: -1;
}
.benefits-grid {
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 20px;
}

.benefit-item {
  flex: 1;
  border: 1px solid #00bfa5;
  padding: 10px;
  border-radius: 10px;
  background-color: #fff;
}

.benefit-item:hover {
  background: #f0fdff;
  cursor: pointer;
  background-color: #ffffff8a;
  border: 1px solid #0d1b2a;
}
.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
}

.benefit-item h4 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Pricing Section */
.pricing {
  padding: 60px 0;
  background-color: #f0fdff;
  position: relative;
  background-image: url(../images/teal4.png);
  background-repeat: no-repeat;
  background-position: -270px 130px;
  background-size: 125% 60%;
}

/* decorative background circles */
/* .pricing::before,
.pricing::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px dashed var(--gray-300);
  opacity: 0.5;
  z-index: 0;
} */
/* 
.pricing::before {
  top: -100px;
  left: -100px;
}

.pricing::after {
  bottom: -100px;
  right: -100px;
} */

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--gray-200);
  position: relative;
}

.pricing-card.popular {
  border-color: var(--secondary);
  box-shadow: var(--box-shadow-hover);
  transform: translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 40px;
  background-color: var(--secondary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.period {
  font-size: 0.95rem;
  color: var(--text-light);
}

.pricing-desc {
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  min-height: 44px;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--secondary);
}

.pricing-features i {
  color: var(--primary);
  margin-top: 4px;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-footer {
  text-align: center;
  margin-top: 32px;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: #fff;
}

.faq-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.faq-content {
  flex: 1;
}

.faq-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.faq-image::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: var(--bg-light);
  border-radius: 50%;
  bottom: 0;
  z-index: -1;
}

.accordion-item {
  border: 1px solid var(--secondary);
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  overflow: hidden;
}

.accordion-header {
  padding: 12px;
  background-color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--secondary);
}

.accordion-header i {
  color: var(--text-light);
  transition: var(--transition);
}

.accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--white);
  color: var(--text-light);
}

.accordion-item.active .accordion-body {
  padding: 0 12px 10px;
  max-height: 200px;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

/* Bottom CTA */
.bottom-cta {
  padding: 0 24px 80px;
}

.cta-banner {
  background: var(--secondary);
  border-radius: var(--border-radius-xl);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 34px;
  color: #fff;
}
.cta-banner::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 530px;
  width: 390px;
  height: 160px;
  background-image: url(../images/teal4_cta.png);
  transform: rotate(-17deg);
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
}
html[dir="rtl"] .cta-banner::after {
  left: 420px;
}
.cta-text p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 16px;
}

/* Footer */
/* .footer {
  background-color: var(--white);
  padding: 80px 0 24px;
  border-top: 1px solid var(--gray-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo i {
  font-size: 1.8rem;
}

.footer-about p {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 250px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-light);
  font-size: 0.95rem;
}

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

.footer-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-col li i {
  margin-top: 4px;
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

.social-links a:hover {
  background-color: var(--primary);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
} */

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  .feature-banner {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    padding: 24px;
    border-radius: 24px;
  }
  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cross-device-banner {
    flex-direction: column;
    padding: 40px;
    text-align: center;
  }
  .cd-features li {
    justify-content: center;
  }
  .cd-image img {
    margin-right: 0;
    max-width: 100%;
    margin-top: 40px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-col:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }
  .hero {
    padding: 40px 0;
  }
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
  .hero p {
    margin: 0 auto 32px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-badges {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
  }
  .hero-image-wrapper img {
    margin-right: 0;
    max-width: 100%;
  }
  .floating-badge {
    top: -20px;
    right: 0;
  }
  .benefits-grid {
    flex-direction: column;
    gap: 40px;
  }
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  .faq-container {
    flex-direction: column;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    padding: 40px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col:first-child {
    grid-column: 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
