:root {
  /* Primary Colors */
  --color-cyan: #55bace;
  --color-light-cyan: #a7e6ef;
  --color-lime: #daf02e;
  --color-green: #8a8d6d;

  /* Light / Background Colors */
  --color-cyan-pale: #cfebf2;
  --color-off-white: #eefafc;
  --color-lime-light: #eef8a0;
  --color-sage: #e2e3d8;

  /* Common UI usage (optional but helpful) */
  --color-primary: #55bace;
  --color-secondary: #daf02e;
  --color-bg: #fff;
  --color-text: #363636;
  --color-border: #cfebf2;
  --font-primary: "Poppins", sans-serif;
}

/*  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-primary);
}

body {
  background: var(--color-bg);
  color: var(--color-text);
}
.container {
  max-width: 1130px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 24px 0px;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  width: 120px;
}
.logo-container a {
  text-decoration: none;
  cursor: pointer;
}
.logo-container img {
  width: 100%;
}
.navbar a {
  margin-right: 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}

/* Buttons */
.btn-primary {
  background: var(--color-lime);
  color: var(--color-text);
  border: none;
  padding: 18px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.25s ease;
}
.btn-primary:hover {
  background: var(--color-lime-light);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--color-border);
  padding: 18px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  transition: all 0.25s ease;
}
.btn-outline:hover {
  background: var(--color-off-white);
}

/* Hero */
.hero {
  display: flex;
  padding: 96px 0;
  gap: 20px;
}

.hero-left {
  flex: 1;
}

.badge {
  background: var(--color-lime-light);
  color: var(--color-text);
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}
.badge img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
}
.hero h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -1px;
}

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

.hero p {
  margin: 20px 0;
  color: var(--color-text);
  font-size: 16px;
}

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

.features {
  list-style: none;
}

.features li {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text);
}
.features li img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 8px;
}

/* Right Card */
.hero-right {
  flex: 1;
}
.card {
  overflow: hidden;
  width: 100%;
  height: auto;
}
.card img {
  width: 100%;
  object-fit: cover;
}

/* // slider section */

/* Integrations Section */
.integrations-section {
  background: #e2e3d866;
  padding: 96px 0;
  text-align: center;
}

.integrations-title {
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--color-text);
  margin-bottom: 28px;
  font-weight: 600;
}

/* Slider */
.logo-slider {
  overflow: hidden;
  width: 100%;
  margin-bottom: 44px;
}

.logo-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  width: max-content;
  margin: 0 auto; /* center the track remove when animation start */
  /* animation: scroll 18s linear infinite; */
}

.logo-track img {
  height: 32px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Stats */
.integration-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.stat h3 {
  font-size: 48px;
  font-weight: 700;
  color: #8a8d6d;
}

.stat p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
}

.divider {
  width: 1px;
  height: 40px;
  background: var(--color-sage);
}

/* Mobile */
@media (max-width: 768px) {
  .integration-stats {
    flex-direction: column;
    gap: 20px;
  }
  .divider {
    display: none;
  }
}

/* Features Section */
.features-section {
  background: #ffffff;
  padding: 96px 0;
}

.features-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.features-header h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 12px;
}

.features-header h2 span {
  color: var(--color-primary);
}

.features-header p {
  font-size: 15px;
  color: var(--color-text);
}

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 24px;
  transition: all 0.25s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--color-lime-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.feature-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-header h2 {
    font-size: 32px;
  }
}
/* love section */

/* Why Love Section */
.why-love {
  background: #f6f7f2;
  padding: 96px 0;
}

.why-love-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* LEFT */
.why-left {
  flex: 1;
}

.why-left h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 105%;
}

.why-left h2 span {
  color: var(--color-primary);
}

.why-desc {
  margin: 16px 0 32px;
  color: var(--color-text);
  font-size: 16px;
}

.why-list {
  list-style: none;
}

.why-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.why-icon {
  background: var(--color-lime-light);
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.why-list h4 {
  font-size: 20px;
  font-weight: 600;
}

.why-list p {
  font-size: 14px;
  color: var(--color-text);
}

.why-list small {
  font-size: 14px;
  color: #8a8d6d;
  font-weight: 600;
}

/* RIGHT CARD */
.why-right {
  flex: 1;
  display: flex;
  justify-content: right;
}

.order-card {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.order-head {
  display: flex;
  justify-content: space-between;
  font-size: 21px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
}

.order-list {
  list-style: none;
}

.order-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 21px;
  margin-right: 10px;
}
.order-list input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
/* Status Pills */
.status {
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 600;
}

.status.approved {
  background: #daf7d4;
  color: var(--color-text);
}

.status.pending {
  background: #fff7be;
  color: var(--color-text);
}

.status.close {
  background: rgba(54, 54, 54, 0.06);
  color: var(--color-text);
}

/* Responsive */
@media (max-width: 992px) {
  .why-love-wrap {
    flex-direction: column;
  }
}

/* trusted section */
/* Trusted Section */
.trusted-section {
  background: #ffffff;
  padding: 96px 0 72px;
  text-align: center;
}

.trusted-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 105%;
}

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

.trusted-subtitle {
  max-width: 520px;
  margin: 16px auto 56px;
  font-size: 16px;
  color: var(--color-text);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.testimonial-card {
  border: 1px solid #e2e3d8;
  border-radius: 4px;
  padding: 32px 24px;
  text-align: left;
  background: #fff;
}

.quote {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* User */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eef8a0;
  color: var(--color-text);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  overflow: hidden;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user h5 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.user span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: var(--color-text);
}
.user small {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text);
}

/* Stats */
/* Stats */
.trusted-stats {
  display: flex;
  justify-content: center;
  padding-top: 32px;
}

.stat {
  padding: 0 40px;
  text-align: center;
  position: relative;
}

/* Vertical divider between stats */
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: #e2e3d8;
}

.stat h3 {
  font-size: 48px;
  font-weight: 700;
  color: #55bace;
}

.stat p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
}

.stars {
  color: var(--color-text);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .trusted-stats {
    flex-direction: column;
    gap: 24px;
  }
}

/*  */
/* CTA Section */
.cta-section {
  background: #a7e6ef;
  padding: 96px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 100%;
  color: var(--color-text);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 24px;
  color: var(--color-text);
  font-weight: 400;
  max-width: 620px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.cta-actions .btn-primary {
  background: var(--color-lime);
  padding: 18px 24px;
  font-weight: 500;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.25s ease;
}
.cta-actions .btn-primary:hover {
  background: var(--color-lime-light);
}
.cta-actions .btn-outline {
  background: transparent;
  border: 1px solid var(--color-text);
  padding: 18px 24px;
  font-size: 16px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.25s ease;
}
.cta-actions .btn-outline:hover {
  background: var(--color-off-white);
}
.cta-note {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
}

/* Mobile */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 32px;
  }

  .cta-actions {
    flex-direction: column;
  }
}

/* footer */
/* Footer */
.qa-footer {
  background: var(--color-text);
  color: #ffffff;
  padding: 96px 0 96px;
  font-size: 16px;
}

.qa-footer a {
  color: #f3f3f7;
  text-decoration: none;
  font-size: 18px;

  transition: opacity 0.25s ease;
}

.qa-footer a:hover {
  color: #ffffff;
}

/* Top */
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f3f3f7;
}

.footer-brand img {
  width: 120px;
}

/* Links */
.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 18px;
}

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

/* Tablet */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .footer-links {
    flex-direction: column;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* pricing */

/* Pricing Section */
.pricing-section {
  background: rgba(226, 227, 216, 0.4);
  padding: 96px 0;
  text-align: center;
}

.pricing-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.pricing-subtitle {
  font-size: 24px;
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: 48px;
}

/* Card */
.pricing-card {
  background: rgba(226, 227, 216, 0.4);
  max-width: 430px;
  margin: 0 auto;
  padding: 32px;
}

.plan-name {
  font-size: 16px;
  font-weight: 700;
  color: #8a8d6d;
}

/* Price */
.price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin: 16px 0 24px;
}

.price h3 {
  font-size: 48px;
  font-weight: 700;
  margin-right: 6px;
}

.price span {
  font-size: 16px;
  color: var(--color-text);
}

/* Features */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pricing-features li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
  color: var(--color-text);
}

/* Check icon */
.pricing-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #8a8d6d;
  font-weight: 600;
}

/* Action */
.pricing-action {
  display: flex;
  gap: 8px;
}

.pricing-action input {
  flex: 1;
  padding: 18px 24px;
  border-radius: 6px;
  border: 1px solid #eef8a0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}
.pricing-action input::placeholder {
  color: var(--color-text);
}
.pricing-action input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.pricing-action .btn-primary {
  padding: 18px 24px;
  font-weight: 500;
  border-radius: 4px;
  font-size: 16px;
  background: var(--color-lime-light);
  transition: all 0.25s ease;
}
.pricing-action .btn-primary:hover {
  background: var(--color-lime);
}

/* Mobile */
@media (max-width: 576px) {
  .pricing-section h2 {
    font-size: 32px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .pricing-action {
    flex-direction: column;
  }

  .pricing-action .btn-primary {
    width: 100%;
  }
}

/*  */

.calendly-section {
  background: rgba(226, 227, 216, 0.4);
  padding: 48px 0px;
}

.calendly-card {
  max-width: 800px;
  margin: auto;
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Left */
.calendly-info {
  width: 35%;
  padding: 32px;
  border-right: 1px solid #eee;
}

.brand-logo {
  width: 170px;
  margin-bottom: 24px;
}

.calendly-info .avatar {
  width: 56px;
  height: 56px;
  background: #ddd;
  border-radius: 50%;
  margin-bottom: 12px;
}

.name {
  font-size: 14px;
  color: #777;
}

.title {
  font-size: 20px;
  margin: 4px 0 12px;
}

.meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 6px;
}

.meta-icon {
  width: 20px;
  height: 20px;
}

.cookie-link {
  display: inline-block;
  margin-top: 225px;
  font-size: 14px;
  font-weight: 700;
  color: #3b82f6;
}

/* Right */
.calendly-embed {
  width: 65%;
}

.calendly-embed iframe {
  width: 100%;
  height: 600px;
}

/* Responsive */
@media (max-width: 768px) {
  .calendly-card {
    flex-direction: column;
  }

  .calendly-info,
  .calendly-embed {
    width: 100%;
  }

  .calendly-embed iframe {
    height: 700px;
  }
}

/* resposnsive */

:root {
  /* Primary Colors */
  --color-cyan: #55bace;
  --color-light-cyan: #a7e6ef;
  --color-lime: #daf02e;
  --color-green: #8a8d6d;

  /* Light / Background Colors */
  --color-cyan-pale: #cfebf2;
  --color-off-white: #eefafc;
  --color-lime-light: #eef8a0;
  --color-sage: #e2e3d8;

  /* Common UI usage (optional but helpful) */
  --color-primary: #55bace;
  --color-secondary: #daf02e;
  --color-bg: #fff;
  --color-text: #363636;
  --color-border: #cfebf2;
  --font-primary: "Poppins", sans-serif;
}

/*  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-primary);
}

body {
  background: var(--color-bg);
  color: var(--color-text);
}
.container {
  max-width: 1130px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 24px 0px;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  width: 120px;
}
.logo-container img {
  width: 100%;
}
.navbar a {
  margin-right: 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}

/* Buttons */
.btn-primary {
  background: var(--color-lime);
  color: var(--color-text);
  border: none;
  padding: 18px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.25s ease;
}
.btn-primary:hover {
  background: var(--color-lime-light);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--color-border);
  padding: 18px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  transition: all 0.25s ease;
}
.btn-outline:hover {
  background: var(--color-off-white);
}

/* Hero */
.hero {
  display: flex;
  padding: 96px 0;
  gap: 20px;
}

.hero-left {
  flex: 1;
}

.badge {
  background: var(--color-lime-light);
  color: var(--color-text);
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}
.badge img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
}
.hero h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -1px;
}

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

.hero p {
  margin: 20px 0;
  color: var(--color-text);
  font-size: 16px;
}

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

.features {
  list-style: none;
}

.features li {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text);
}
.features li img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 8px;
}

/* Right Card */
.hero-right {
  flex: 1;
}
.card {
  overflow: hidden;
  width: 100%;
  height: auto;
}
.card img {
  width: 100%;
  object-fit: cover;
}

/* // slider section */

/* Integrations Section */
.integrations-section {
  background: #e2e3d866;
  padding: 96px 0;
  text-align: center;
}

.integrations-title {
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--color-text);
  margin-bottom: 28px;
  font-weight: 600;
}

/* Slider */
.logo-slider {
  overflow: hidden;
  width: 100%;
  margin-bottom: 44px;
}

.logo-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  width: max-content;
  margin: 0 auto; /* center the track remove when animation start */
  /* animation: scroll 18s linear infinite; */
}

.logo-track img {
  height: 32px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Stats */
.integration-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.stat h3 {
  font-size: 48px;
  font-weight: 700;
  color: #8a8d6d;
}

.stat p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
}

.divider {
  width: 1px;
  height: 40px;
  background: var(--color-sage);
}

/* Mobile */
@media (max-width: 768px) {
  .integration-stats {
    flex-direction: column;
    gap: 20px;
  }
  .divider {
    display: none;
  }
}

/* Features Section */
.features-section {
  background: #ffffff;
  padding: 96px 0;
}

.features-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.features-header h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 12px;
}

.features-header h2 span {
  color: var(--color-primary);
}

.features-header p {
  font-size: 15px;
  color: var(--color-text);
}

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 24px;
  transition: all 0.25s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--color-lime-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.feature-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-header h2 {
    font-size: 32px;
  }
}
/* love section */

/* Why Love Section */
.why-love {
  background: #f6f7f2;
  padding: 96px 0;
}

.why-love-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* LEFT */
.why-left {
  flex: 1;
}

.why-left h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 105%;
}

.why-left h2 span {
  color: var(--color-primary);
}

.why-desc {
  margin: 16px 0 32px;
  color: var(--color-text);
  font-size: 16px;
}

.why-list {
  list-style: none;
}

.why-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.why-icon {
  background: var(--color-lime-light);
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.why-list h4 {
  font-size: 20px;
  font-weight: 600;
}

.why-list p {
  font-size: 14px;
  color: var(--color-text);
}

.why-list small {
  font-size: 14px;
  color: #8a8d6d;
  font-weight: 600;
}

/* RIGHT CARD */
.why-right {
  flex: 1;
  display: flex;
  justify-content: right;
}

.order-card {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.order-head {
  display: flex;
  justify-content: space-between;
  font-size: 21px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
}

.order-list {
  list-style: none;
}

.order-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 21px;
  margin-right: 10px;
}
.order-list input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
/* Status Pills */
.status {
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 600;
}

.status.approved {
  background: #daf7d4;
  color: var(--color-text);
}

.status.pending {
  background: #fff7be;
  color: var(--color-text);
}

.status.close {
  background: rgba(54, 54, 54, 0.06);
  color: var(--color-text);
}

/* Responsive */
@media (max-width: 992px) {
  .why-love-wrap {
    flex-direction: column;
  }
}

/* trusted section */
/* Trusted Section */
.trusted-section {
  background: #ffffff;
  padding: 96px 0 72px;
  text-align: center;
}

.trusted-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 105%;
}

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

.trusted-subtitle {
  max-width: 520px;
  margin: 16px auto 56px;
  font-size: 16px;
  color: var(--color-text);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.testimonial-card {
  border: 1px solid #e2e3d8;
  border-radius: 4px;
  padding: 32px 24px;
  text-align: left;
  background: #fff;
}

.quote {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* User */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eef8a0;
  color: var(--color-text);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.user h5 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.user span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: var(--color-text);
}
.user small {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text);
}

/* Stats */
/* Stats */
.trusted-stats {
  display: flex;
  justify-content: center;
  padding-top: 32px;
}

.stat {
  padding: 0 40px;
  text-align: center;
  position: relative;
}

/* Vertical divider between stats */
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: #e2e3d8;
}

.stat h3 {
  font-size: 48px;
  font-weight: 700;
  color: #55bace;
}

.stat p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
}

.stars {
  color: var(--color-text);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .trusted-stats {
    flex-direction: column;
    gap: 24px;
  }
}

/*  */
/* CTA Section */
.cta-section {
  background: #a7e6ef;
  padding: 96px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 100%;
  color: var(--color-text);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 24px;
  color: var(--color-text);
  font-weight: 400;
  max-width: 620px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.cta-actions .btn-primary {
  background: var(--color-lime);
  padding: 18px 24px;
  font-weight: 500;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.25s ease;
}
.cta-actions .btn-primary:hover {
  background: var(--color-lime-light);
}
.cta-actions .btn-outline {
  background: transparent;
  border: 1px solid var(--color-text);
  padding: 18px 24px;
  font-size: 16px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.25s ease;
}
.cta-actions .btn-outline:hover {
  background: var(--color-off-white);
}
.cta-note {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
}

/* Mobile */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 32px;
  }

  .cta-actions {
    flex-direction: column;
  }
}

/* footer */
/* Footer */
.qa-footer {
  background: var(--color-text);
  color: #ffffff;
  padding: 96px 0 96px;
  font-size: 16px;
}

.qa-footer a {
  color: #f3f3f7;
  text-decoration: none;
  font-size: 18px;

  transition: opacity 0.25s ease;
}

.qa-footer a:hover {
  color: #ffffff;
}

/* Top */
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f3f3f7;
}

.footer-brand img {
  width: 120px;
}

/* Links */
.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 18px;
}

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

/* Tablet */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: row;
    gap: 20px;
  }

  .footer-links {
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .footer-links {
    flex-direction: column;
    gap: 24px;
  }
  .footer-top {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* pricing */

/* Pricing Section */
.pricing-section {
  background: rgba(226, 227, 216, 0.4);
  padding: 96px 0;
  text-align: center;
}

.pricing-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.pricing-subtitle {
  font-size: 24px;
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: 48px;
}

/* Card */
.pricing-card {
  background: rgba(226, 227, 216, 0.4);
  max-width: 430px;
  margin: 0 auto;
  padding: 32px;
}

.plan-name {
  font-size: 16px;
  font-weight: 700;
  color: #8a8d6d;
}

/* Price */
.price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin: 16px 0 24px;
}

.price h3 {
  font-size: 48px;
  font-weight: 700;
  margin-right: 6px;
}

.price span {
  font-size: 16px;
  color: var(--color-text);
}

/* Features */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pricing-features li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
  color: var(--color-text);
}

/* Check icon */
.pricing-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #8a8d6d;
  font-weight: 600;
}

/* Action */
.pricing-action {
  display: flex;
  gap: 8px;
}

.pricing-action input {
  flex: 1;
  padding: 18px 24px;
  border-radius: 6px;
  border: 1px solid #eef8a0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}
.pricing-action input::placeholder {
  color: var(--color-text);
}
.pricing-action input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.pricing-action .btn-primary {
  padding: 18px 24px;
  font-weight: 500;
  border-radius: 4px;
  font-size: 16px;
  background: var(--color-lime-light);
  transition: all 0.25s ease;
}
.pricing-action .btn-primary:hover {
  background: var(--color-lime);
}

/* Mobile */
@media (max-width: 576px) {
  .pricing-section h2 {
    font-size: 32px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .pricing-action {
    flex-direction: column;
  }

  .pricing-action .btn-primary {
    width: 100%;
  }
}

/*  */

.calendly-section {
  background: rgba(226, 227, 216, 0.4);
  padding: 48px 0px;
}

.calendly-card {
  max-width: 800px;
  margin: auto;
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Left */
.calendly-info {
  width: 35%;
  padding: 32px;
  border-right: 1px solid #eee;
}

.brand-logo {
  width: 170px;
  margin-bottom: 24px;
}

.calendly-info .avatar {
  width: 56px;
  height: 56px;
  background: #ddd;
  border-radius: 50%;
  margin-bottom: 12px;
}

.name {
  font-size: 14px;
  color: #777;
}

.title {
  font-size: 20px;
  margin: 4px 0 12px;
}

.meta,
.meta-1 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 6px;
}

.meta-icon {
  width: 20px;
  height: 20px;
}
.meta-icon-1 {
  width: 20px;
  height: 20px;
}
.cookie-link {
  display: inline-block;
  margin-top: 225px;
  font-size: 14px;
  font-weight: 700;
  color: #3b82f6;
}

/* Right */
.calendly-embed {
  width: 65%;
}

.calendly-embed iframe {
  width: 100%;
  height: 600px;
}

/* Responsive */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
    padding: 0 16px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
  .calendly-section {
    padding: 48px 15px;
  }
  .price h3 {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .hero h1,
  .features-header h2,
  .why-left h2,
  .trusted-title,
  .cta-section h2,
  .pricing-section h2 {
    font-size: 40px;
  }
  .why-right {
    display: contents;
  }
}

@media (max-width: 768px) {
  .hero h1,
  .features-header h2,
  .why-left h2,
  .trusted-title,
  .cta-section h2,
  .pricing-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .calendly-card {
    flex-direction: column;
  }

  .calendly-info,
  .calendly-embed {
    width: 100%;
  }

  .calendly-embed iframe {
    height: 700px;
  }
  .qa-footer {
    padding: 40px 0 40px;
  }
}

@media (max-width: 768px) {
  p,
  .hero p,
  .why-desc,
  .trusted-subtitle,
  .pricing-subtitle,
  .cta-section p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .btn-primary,
  .btn-outline {
    padding: 14px 18px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .hero,
  .features-section,
  .why-love,
  .trusted-section,
  .pricing-section,
  .cta-section {
    padding: 56px 0;
  }
  .hero {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .features-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .testimonial-card,
  .pricing-card,
  .order-card {
    padding: 20px;
  }
  .order-card {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .stat h3 {
    font-size: 32px;
  }

  .stat p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .calendly-info {
    padding: 20px;
  }
  .logo-track {
    flex-direction: column;
  }
  .calendly-embed iframe {
    height: 520px;
  }

  .title {
    font-size: 18px;
  }

  .meta {
    font-size: 13px;
  }

  .cookie-link {
    margin-top: 40px;
  }
}
@media (max-width: 340px) {
  nav {
    flex-direction: column;
    gap: 12px;
    display: flex;
  }
  .price h3 {
    font-size: 28px;
  }
}

/* //privacy policy   */
/* ===============================
   PRIVACY POLICY - RESPONSIVE
================================= */

.privacy-wrapper {
  padding: 40px 15px;
  background: #f4f6f9;
  display: flex;
  justify-content: center;
}

.privacy-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  max-width: 1100px;
  width: 100%;
  transition: 0.3s ease;
}

.privacy-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 25px;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Headings */
.privacy-card h2 {
  font-size: 22px;
  margin-top: px;
  margin-bottom: 0px;
  font-weight: 600;
}

.privacy-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 6px;
}

/* Paragraph */
.privacy-card p {
  margin-bottom: 8px;
  line-height: 1.8;
  color: #555;
  font-size: 15px;
}

/* Divider */
.privacy-card hr {
  margin: 0px 0 10px 0;
  border: none;
  height: 1px;
  background: #e2e2e2;
}

/* Lists */
.privacy-card ul,
.privacy-card ol {
  margin: 12px 0 22px 25px;
}

.privacy-card li {
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 15px;
}

/* ===============================
   TABLE RESPONSIVE
================================= */

.privacy-table-wrapper {
  overflow-x: auto;
  margin-top: 25px;
  border-radius: 10px;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}

.privacy-table th {
  background-color: #f5f7fa;
  font-weight: 600;
  padding: 14px;
  border: 1px solid #e2e2e2;
  text-align: left;
}

.privacy-table td {
  padding: 14px;
  border: 1px solid #e2e2e2;
  vertical-align: top;
  text-align: left;
}

.privacy-table tr:nth-child(even) {
  background-color: #fafafa;
}

/* ===============================
   TABLET RESPONSIVE
================================= */

@media (max-width: 992px) {
  .privacy-card {
    padding: 35px;
  }

  .privacy-title {
    font-size: 26px;
  }

  .privacy-card h2 {
    font-size: 20px;
  }
}

/* ===============================
   MOBILE RESPONSIVE
================================= */

@media (max-width: 768px) {
  .privacy-wrapper {
    padding: 25px 12px;
  }

  .privacy-card {
    padding: 25px;
    border-radius: 14px;
  }

  .privacy-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .privacy-card h2 {
    font-size: 18px;
  }

  .privacy-card h3 {
    font-size: 15px;
  }

  .privacy-card p,
  .privacy-card li {
    font-size: 14px;
  }

  .privacy-table th,
  .privacy-table td {
    font-size: 13px;
    padding: 10px;
  }
}

/* ===============================
   SMALL DEVICES
================================= */

@media (max-width: 480px) {
  .privacy-card {
    padding: 20px;
  }

  .privacy-title {
    font-size: 20px;
  }

  .privacy-card p,
  .privacy-card li {
    font-size: 13px;
  }
}
