/* Responsive Components Styles */

[id] {
  scroll-margin-top: 100px;
}

@media (max-width: 767px) {
  [id] {
    scroll-margin-top: 50px;
  }
}

#chat-widget-container {
  bottom: -10px !important;
}

html {
  scroll-behavior: smooth;
}

/* Header Component */
.header-component {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-link {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-link.mobile {
  display: none;
}

@media screen and (max-width: 992px) {
  .logo-link.main {
    display: none;
  }

  .logo-link.mobile {
    display: block;
  }
}

.logo-img {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 16px;
  color: #1c0a08;
  text-decoration: none;
  opacity: 0.6;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  opacity: 1;
  color: #ff8214;
}

.nav-link.active {
  color: #ff8214;
  opacity: 1;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff8214;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media screen and (max-width: 992px) {
  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.user-avatar:hover {
  transform: scale(1.1);
}

/* Auth Modal */
.auth-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 10px;
}

.auth-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.auth-modal {
  background: white;
  border-radius: 24px;
  width: 100%;
  max-width: 700px;
  padding: 3rem 3rem 20px;
  position: relative;
  /* transform: scale(0.9); */
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.auth-modal-overlay.active .auth-modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  color: #1c0a08;
  line-height: 1;
}

.modal-close:hover {
  background: #000;
}

.modal-close:hover svg path {
  stroke: #ffffff;
}

.auth-modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-modal-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

.auth-modal-title {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1c0a08;
  margin-bottom: 0.5rem;
}

.auth-modal-subtitle {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 1rem;
  color: #1c0a08;
  opacity: 0.6;
}

.auth-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.auth-tab {
  flex: 1;
  padding: 1rem;
  background: none;
  border: none;
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1c0a08;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.auth-tab.active {
  opacity: 1;
  color: #ff8214;
}

.auth-tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ff8214;
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
  padding: 20px 0;
}

.form-group {
  margin-bottom: 10px;
}

.form-label {
  display: block;
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1c0a08;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 0px solid #e8e8e8;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 1rem;
  color: #1c0a08;
  transition: all 0.3s ease;
  background: rgb(28 10 8 / 5%);
  outline: none !important;
  box-shadow: none;
}

.form-input:focus {
  outline: none;
  border-color: #ff8214;
}

.form-input::placeholder {
  color: #1c0a08;
  opacity: 0.4;
}

.password-toggle {
  position: relative;
}

.password-toggle-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #1c0a08;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.password-toggle-btn:hover {
  opacity: 1;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* margin-bottom: 1.5rem; */
}
.remember-me-block {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding-top: 5px;
  margin-bottom: 30px;
}
.auth-form button.cta-button {
  margin: auto;
  display: flex;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  color: #1c0a08;
  cursor: pointer;
}

.forgot-password {
  text-align: right;
  /* margin-bottom: 1.5rem; */
}

.forgot-password a {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  color: #ff8214;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.forgot-password a:hover {
  opacity: 0.8;
}

.auth-submit-btn {
  width: 100%;
  padding: 1.125rem;
  background: #1c0a08;
  color: white;
  border: none;
  border-radius: 100px;
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.auth-submit-btn:hover {
  background: #ff8214;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 130, 20, 0.3);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}

.auth-divider span {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  color: #1c0a08;
  opacity: 0.5;
}

.social-auth {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-btn {
  flex: 1;
  padding: 1rem;
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1c0a08;
}

.social-btn:hover {
  border-color: #ff8214;
  background: #fff5ed;
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.auth-footer {
  text-align: center;
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  color: #1c0a08;
  opacity: 0.6;
}

.auth-footer a {
  color: #ff8214;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.auth-footer a:hover {
  opacity: 0.8;
}

.language-selector {
  position: relative;
}

.language-select {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  color: #1c0a08;
  background: transparent;
  border: none;
  cursor: pointer;
  padding-right: 20px;
  appearance: none;
  transition: color 0.3s ease;
}

.language-select:hover {
  color: #ff8214;
}

.language-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 12px;
  height: 12px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

@media screen and (max-width: 992px) {
  .language-selector {
    order: 3;
  }

  .logo-link {
    order: 2;
  }

  .mobile-menu-toggle {
    order: 1;
    margin-left: -20px;
  }
}

.hamburger {
  width: 14px;
  height: 2px;
  background: #ffffff;
  position: relative;
  transition: all 0.3s ease;
  display: block;
  border-radius: 2px;
  margin: 0 auto;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: #ff8214;
  transition: all 0.3s ease;
  left: 0;
}

.hamburger::before {
  top: -5px;
}

.hamburger::after {
  bottom: -5px;
  right: 0;
  left: auto;
}

.mobile-menu-toggle.active .hamburger {
  background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  top: 0;
  width: 14px;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
  bottom: 0;
  width: 14px;
  transform: rotate(-45deg);
}

/* Hero Section Component */
.hero-section {
  padding: 0 2rem 0rem;
  background: white;
  overflow: hidden;
  margin-bottom: -30px;
}
.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: #ff8214;
}

.hero-description {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #1c0a08;
  opacity: 0.6;
  margin-bottom: 3rem;
  padding-left: 1rem;
  border-left: 1px solid #ff8214;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 5px 5px 5px 25px;
  background: #1c0a08;
  color: white;
  border-radius: 100px;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
  max-width: max-content;
  flex: 0 0 auto;
}

.cta-button:hover {
  background: #ff8214;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 130, 20, 0.3);
}

.cta-button-icon {
  width: 43px;
  height: 43px;
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-button-icon {
  transform: rotate(45deg);
}

.hero-image {
  animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image img {
  width: 100%;
  height: auto;
}

/* Promo Banner Component */
.promo-banner {
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

.promo-track {
  display: flex;
  gap: 2rem;
  margin-left: -80px;
}
.promo-block {
  /* animation: scroll 20s linear infinite; */
  display: flex;
  gap: 2rem;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.promo-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.promo-text {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  color: white;
}

.promo-arrow {
  width: 30px;
  height: auto;
  transform: rotate(-3deg);
}

.promo-gradient {
  background: linear-gradient(
    90deg,
    rgba(253, 128, 0, 1) 0%,
    rgba(255, 224, 1, 1) 20%,
    rgba(253, 115, 0, 1) 46%,
    rgba(255, 221, 1, 1) 80%,
    rgba(255, 119, 1, 1) 100%
  );
  padding: 2rem 0;
  transform: rotate(2deg);
  margin: -1rem 0;
}

/* Feature Section Component */
.feature-section {
  padding: 6rem 2rem;
  background: white;
}

.feature-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.feature-image:hover {
  transform: scale(1.05);
}

.feature-content {
  position: relative;
}

.feature-content .vector {
  position: absolute;
  top: -100px;
  right: 0;
}

.feature-section.second .feature-content {
  position: relative;
}

.feature-section.second .feature-content .vector {
  position: absolute;
  top: -100px;
  left: -100px;
}

.feature-content h2 {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.feature-content h2 .highlight {
  color: #ff8214;
}

.feature-description {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #1c0a08;
  opacity: 0.6;
  margin-bottom: 3rem;
  padding-left: 1rem;
  border-left: 1px solid #1c0a08;
}

.feature-list {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 200px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.feature-item-text {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #1c0a08;
}

/* CTA Section Component */
.cta-section {
  padding: 6rem 2rem;
  background: #ff8214;
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  /* opacity: 0.1; */
  object-fit: contain;
}
.cta-content {
  max-width: 654px;
}
.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-content h2 .dark {
  color: #1c0a08;
}

.cta-subtitle {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 3rem;
}

/* Pricing Section Component */
.pricing-section {
  padding: 0 2rem 6rem;
  background: white;
  position: relative;
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 25px;
  max-width: 740px;
  margin: 0 auto 25px;
}

.pricing-title {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1c0a08;
}

.pricing-title .highlight {
  color: #ff8214;
}

.pricing-description {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #1c0a08;
  opacity: 0.6;
  max-width: 600px;
  margin: 0 auto 0;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 40px;
}

.toggle-label {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1c0a08;
  opacity: 0.5;
  transition: all 0.3s ease;
  cursor: pointer;
}

.toggle-label.active {
  opacity: 1;
  color: #ff8214;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #e0e0e0;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #ff8214;
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-slider {
  transform: translateX(30px);
}

.pricing-cards {
  display: flex;
  gap: 1.5rem;
  opacity: 1;
  transition: opacity 0.3s ease;
  max-width: 100%;
  margin: 0 auto;
}

.pricing-cards.switching {
  opacity: 0.5;
}

.pricing-card {
  border: 2px solid #e8e8e8;
  background: #e7e7df;
  border-radius: 20px;
  padding: 23px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.pricing-card:hover {
  border-color: #ff8214;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 130, 20, 0.15);
}

.pricing-card.featured {
  border-color: #ff8214;
  /* background: linear-gradient(135deg, #fff5ed 0%, #ffffff 100%); */
}

.pricing-card .cta-button {
  pointer-events: none;
}

.pricing-card.featured .cta-button {
  pointer-events: all;
}

.plan-badge {
  display: inline-block;
  margin-bottom: 40px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 24px;
  color: #ffffff;
  background: #1c0a08;
  border-radius: 10px;
  padding: 23px;
  text-align: center;
}

.plan-name {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1c0a08;
  margin-bottom: 1.5rem;
}

.plan-price {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  margin-bottom: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 75px;
  line-height: 94px;
  text-align: center;
  color: #1c0a08;
}

.plan-price .currency {
  font-size: 2.5rem;
  vertical-align: super;
}

.plan-period {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  margin-bottom: 2.5rem;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  color: #1c0a08;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 62px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.plan-feature {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  padding: 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: #1c0a08;
  position: relative;
  padding-left: calc(26px + 15px);
}

.plan-feature::before {
  content: "✓";
  width: 26px;
  height: 26px;
  background: url(../images/icons/list.svg);
  position: absolute;
  left: 0;
  top: 2px;
}
.pricing-card a.cta-button {
  max-width: max-content;
  margin: auto;
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.6;
}
.pricing-card.featured a.cta-button {
  max-width: max-content;
  margin: auto;
  pointer-events: inherit;
  cursor: pointer;
  opacity: 1;
}
.plan-button {
  width: 100%;
  padding: 1.125rem 2rem;
  background: #1c0a08;
  color: white;
  border: none;
  border-radius: 100px;
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.plan-button:hover {
  background: #ff8214;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 130, 20, 0.3);
}

.pricing-card.featured .plan-button {
  background: #ff8214;
}

.pricing-card.featured .plan-button:hover {
  background: #1c0a08;
}

/* Footer Component */
.footer-component {
  background: #ff8214;
  padding: 4rem 2rem 2rem;
  color: white;
  position: relative;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  /* display: grid; */
  /* grid-template-columns: 2fr 1fr 1fr 2fr; */
  /* gap: 3rem; */
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
}
.footer-brand {
  max-width: 348px;
}

.footer-brand h3 {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-description {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}

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

.payment-methods {
  width: 100%;
  height: auto;
  max-width: max-content;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 1rem;
}

.security-icon {
  width: 20px;
  height: 20px;
}
.footer-quick-links {
  max-width: 660px;
  width: 100%;
  display: flex;
  gap: 95px;
}
.footer-section.first {
  max-width: 64px;
  width: 100%;
}
.footer-section.second {
  width: 100%;
  max-width: 132px;
}
.footer-section.third {
  width: 100%;
  max-width: 274px;
}
.footer-section h4 {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-section h4 svg {
  display: none;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  margin-bottom: 10px;
}
.footer-link:last-child {
  margin: 0;
}

.footer-link a {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link a:hover {
  opacity: 0.8;
  transform: translateX(5px);
}

.newsletter-form {
  background: white;
  border-radius: 100px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.5rem 1rem;
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  color: #1c0a08;
  outline: none;
  box-shadow: none;
}

.newsletter-input::placeholder {
  color: #1c0a08;
  opacity: 0.5;
}

.newsletter-button {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
}

.newsletter-button:hover {
  transform: scale(1.1);
}

.newsletter-button img {
  width: 100%;
  height: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-icon {
  width: 30px;
  height: 30px;
}

.contact-item a,.location {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-item a:hover {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .footer-bottom {
    padding: 20px 0 40px;
  }
}

.footer-copyright {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 1rem;
  opacity: 0.8;
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: #1c0a08;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

@media screen and (max-width: 575px) {
  .scroll-top {
    bottom: 6px;
    right: 8px;
  }
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #ff8214;
  transform: translateY(-5px);
}

.scroll-top img {
  width: 24px;
  height: 24px;
}
.header-mode {
  height: 151px;
  background: #ff8214 url(../images/icons/modal-bg.png) no-repeat;
  border-radius: 28px 28px 0px 0px;
  margin: -50px -49px 0;
  padding: 48px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 90%;
  background-position: center;
}
.header-mode h2 {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 45px;
  line-height: 57px;
  text-align: center;
  color: #ffffff;
}
.header-mode h2 span {
  color: #000;
}
.content-modal {
  padding: 32px 0 12px;
}
.content-modal p {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: rgb(28 10 8 / 60%);
  margin-bottom: 20px;
}
.content-modal p a {
  color: #ff8214;
  transition: all 0.3s ease;
}
.content-modal p a:hover {
  color: #1c0a08;
}
.content-modal > a {
  margin: -10px auto 0;
  display: flex;
  max-width: max-content;
}

/* questions-wrapper */
.questions-wrapper {
  padding: 50px 0;
}
.title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.title {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 63px;
  text-transform: capitalize;
  color: #1c0a08;
}
.title span {
  color: #ff8214;
}
.content {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: #1c0a08;
  opacity: 0.6;
}
.questions-wrapper .title-wrapper {
  max-width: 670px;
}
.faq-wrapper {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}
.faq-img {
  border-radius: 20px;
  overflow: hidden;
  align-self: flex-start;
  width: 100%;
  max-width: 643px;
  position: sticky;
  top: 110px;
}
.faq-content-wrapper {
  width: 100%;
  max-width: calc(100% - 643px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-block {
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #1c0a08;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.faq-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-title h2 {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 21px;
  color: #1c0a08;
}
.faq-content {
  display: none;
}
.faq-content p {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: rgb(28 10 8 / 60%);
  margin-top: 12px;
  padding-left: 12px;
  border-left: 3px solid #ff8214;
}
.faq-block.active path.line {
  display: none;
}

.membership-wrapper {
  padding: 50px 0 100px;
}
.membership-block {
  max-width: 1164px;
  margin: auto;
  display: flex;
  gap: 24px;
}
.cancel-membership {
  width: 100%;
  background: #ffffff;
  border: 2px solid #1c0a08;
  border-radius: 20px;
  padding: 45px 50px;
}
.cancel-membership h2 {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  color: #1c0a08;
  margin-bottom: 40px;
}
.cancel-membership form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.cancel-membership form input {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 0.05em;
  color: #1c0a08;
  background: #ffffff;
  border: 1px solid #1c0a08;
  border-radius: 12px;
  padding: 15px 20px;
}
.cancel-membership form button {
  max-width: max-content;
}
.chatwith-us h2 {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  color: #1c0a08;
}
.chatwith-us {
  width: 100%;
  background: #e7e7df;
  border-radius: 20px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.chatwith-us > img {
  width: 80px;
  height: 80px;
}
.chatwith-us button {
  max-width: max-content;
}
.title.center,
.content.center {
  text-align: center;
}
.contact-wrapper {
  padding-bottom: 100px;
}
.contact-wrapper .title-wrapper {
  max-width: 612px;
  margin: auto;
}
.contact-block {
  background: #ff8214;
  border-radius: 20px;
  display: flex;
  margin-top: 50px;
}
.form-block {
  width: 100%;
  max-width: 1000px;
  background: #fff;
  background: linear-gradient(
      89.04deg,
      #ffffff -96.29%,
      #ffffff 17.08%,
      rgba(255, 255, 255, 0) 99.17%
    ),
    #ffffff;
  box-shadow: 5px 5px 20px rgba(165, 164, 164, 0.25);
  border-radius: 40px 19px 19px 40px;
  max-width: calc(100% - 318px);
  display: flex;
  justify-content: space-between;
}
.info-block {
  width: 100%;
  max-width: 318px;
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  text-align: center;
}
.info-block > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.info-block > div h2 {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 33px;
  color: #ffffff;
}
.info-block > div a,
.info-block > div span {
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  opacity: 0.7;
  transition: all 0.5s ease;
}
.info-block > div a:hover {
  opacity: 1;
}
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 0px solid #e8e8e8;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 1rem;
  color: #1c0a08;
  transition: all 0.3s ease;
  background: rgb(28 10 8 / 5%);
  outline: none !important;
  box-shadow: none;
  height: 199px;
  resize: none;
}
.form-block .form-group {
  margin-bottom: 20px;
}
.form-block form {
  padding: 42px 37px;
  max-width: 574px;
  width: 100%;
}
.form-captcha {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.form-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form-bg {
  line-height: 0;
  font-size: 0;
  display: block;
}
.g-recaptcha {
  zoom: 0.7;
}
.signup-wrapper {
  padding: 50px 0 100px;
}
.signup-img-block {
  border-radius: 20px;
  overflow: hidden;
  display: block;
  font-size: 0;
  line-height: 0;
  max-width: 560px;
}
.signup-block {
  display: flex;
}
.signup-img-block img {
  display: block;
  width: 100%;
}
.signup-form-block {
  background: #ffffff;
  box-shadow: 5px 5px 20px rgba(165, 164, 164, 0.25);
  border-radius: 40px 20px 20px 40px;
  padding: 42px 88px;
  margin-left: -65px;
  width: 100%;
  max-width: calc(100% - 495px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.signup-form-wrapper {
  margin-top: 30px;
  width: 100%;
}
.signup-form-wrapper .row {
  display: flex;
  gap: 20px;
}
.signup-form-wrapper .row .col-lg-6 {
  width: 100%;
}
.signup-form-wrapper .form-group {
  margin-bottom: 20px;
}
.signup-form-wrapper .cta-button {
  margin: 20px auto 0;
  width: max-content;
  display: flex;
}
.backtosignin-btn {
  text-align: center;
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  color: rgb(28 10 8 / 60%);
  margin-top: 20px;
}
.backtosignin-btn a {
  color: #ff8214;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

#pricing,
#service {
  scroll-margin-top: 120px;
}

/* TERMS */
/* POLICY SECTION START HERE */
.terms-wrapper .policy-content {
  max-width: 1920px;
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  margin: auto;
  color: rgb(28 10 8 / 60%);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
}
@media (max-width: 991px) {
  .terms-wrapper .policy-content {
    font-size: 14px;
  }
}

.terms-wrapper .policy-content a {
  color: #ff8214;
  transition: all 0.3s ease;
  font-weight: 600;
}
.terms-wrapper .policy-content a:hover {
  color: #1a1a18;
}

.terms-wrapper .policy-content b,
.terms-wrapper .policy-content h1,
.terms-wrapper .policy-content h2,
.terms-wrapper .policy-content h3,
.terms-wrapper .policy-content h4,
.terms-wrapper .policy-content h5,
.terms-wrapper .policy-content h6 {
  color: #1c0a08;
  font-size: 24px;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .terms-wrapper .policy-content b,
  .terms-wrapper .policy-content h1,
  .terms-wrapper .policy-content h2,
  .terms-wrapper .policy-content h3,
  .terms-wrapper .policy-content h4,
  .terms-wrapper .policy-content h5,
  .terms-wrapper .policy-content h6 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .terms-wrapper .policy-content b,
  .terms-wrapper .policy-content h1,
  .terms-wrapper .policy-content h2,
  .terms-wrapper .policy-content h3,
  .terms-wrapper .policy-content h4,
  .terms-wrapper .policy-content h5,
  .terms-wrapper .policy-content h6 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .terms-wrapper .policy-content b,
  .terms-wrapper .policy-content h1,
  .terms-wrapper .policy-content h2,
  .terms-wrapper .policy-content h3,
  .terms-wrapper .policy-content h4,
  .terms-wrapper .policy-content h5,
  .terms-wrapper .policy-content h6 {
    margin-bottom: 10px;
  }
}
.terms-wrapper .policy-content p small {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .terms-wrapper .policy-content p small {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .terms-wrapper .policy-content p small {
    font-size: 12px;
  }
}
.terms-wrapper .policy-content .print {
  display: flex;
  align-items: center;
  width: max-content;
  background: #ff8214;
  padding: 20px 15px;
  border-radius: 8px 0 0 8px;
  box-shadow: 0px 2px 10px 0px #ff8214;
  position: sticky;
  float: right;
  right: 0;
  top: 140px;
  writing-mode: vertical-rl;
  color: #fff;
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  z-index: 99;
  transition: all 0.3s ease;
  cursor: pointer;
  transition: 0.5s all ease-in-out;
}
@media (max-width: 767px) {
  .terms-wrapper .policy-content .print {
    font-size: 0px;
    padding: 10px;
    top: 80px;
  }
}
.terms-wrapper .policy-content .print span {
  transform: rotate(180deg);
}
.terms-wrapper .policy-content .print img {
  margin-bottom: 10px;
  transform: rotate(0deg);
}
@media (max-width: 767px) {
  .terms-wrapper .policy-content .print img {
    margin-bottom: 0px;
    transform: rotate(90deg);
  }
}
.terms-wrapper .policy-content .print:hover {
  color: #1a1a18;
}
.terms-wrapper table {
  width: 100%;
  font-size: 12px;
  /* background: #1a1a18; */
  box-shadow: none;
  outline: none;
  border-collapse: separate;
  box-sizing: border-box;
  border-spacing: 0;
  border-radius: 0px;
}
.terms-wrapper table:focus {
  outline: none;
}
.terms-wrapper table thead tr th:first-child {
  border-radius: 20px 0px 0px 0px;
}
.terms-wrapper table thead tr th:last-child {
  border-radius: 0px 20px 0px 0px;
}
.terms-wrapper table tbody tr:last-child td:first-child {
  border-radius: 0px 0px 0px 20px;
}
.terms-wrapper table tbody tr:last-child td:last-child {
  border-radius: 0px 0px 20px 0px;
}
.terms-wrapper table tbody tr:nth-child(even) {
  background-color: rgb(255, 130, 20, 0.1);
}
.terms-wrapper table th {
  border: none;
  background: #1c0a08;
  padding: 15px;
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
  border-right: 1px solid rgb(0 0 0 / 50%);
  text-transform: capitalize;
  text-align: left;
}
.terms-wrapper table th:last-child {
  border-right: none;
}
@media (max-width: 1399px) {
  .terms-wrapper table th {
    padding: 20px;
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .terms-wrapper table th {
    font-size: 18px;
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .terms-wrapper table th {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .terms-wrapper table th {
    padding: 10px 5px;
    font-size: 12px;
  }
}
.terms-wrapper table td {
  padding: 15px;
  font-family: "Plus Jakarta Sans", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(28 10 8 / 60%);
  border-right: 1px solid rgb(0 0 0 / 50%);
  border-bottom: 1px solid;
}
.terms-wrapper table td:last-child {
  border-right: none;
}
@media (max-width: 1399px) {
  .terms-wrapper table td {
    padding: 20px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .terms-wrapper table td {
    font-size: 12px;
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .terms-wrapper table td {
    padding: 10px 5px;
    font-size: 11px;
  }
}
.terms-wrapper table tr {
  background-color: rgba(255, 255, 255, 0.1);
}
.terms-wrapper table tr td:first-child {
  border-left: 1px solid rgb(0 0 0 / 50%);
}
.terms-wrapper table tr td:last-child {
  border-right: 1px solid rgb(0 0 0 / 50%);
}
.terms-wrapper table tr:last-child td {
  border-bottom: 1px solid rgb(0 0 0 / 50%);
}
.terms-wrapper #pricing,
#serviceplans,
.terms-wrapper #paymentandbilling,
.terms-wrapper #deliverypolicy,
.terms-wrapper #cancellation {
  display: block;
  padding-top: 120px;
  margin-top: -120px;
}
@media (max-width: 1199px) {
  .terms-wrapper #pricing,
  #serviceplans,
  .terms-wrapper #paymentandbilling,
  .terms-wrapper #deliverypolicy,
  .terms-wrapper #cancellation {
    padding-top: 110px;
    margin-top: -110px;
  }
}
@media (max-width: 991px) {
  .terms-wrapper #pricing,
  #serviceplans,
  .terms-wrapper #paymentandbilling,
  .terms-wrapper #deliverypolicy,
  .terms-wrapper #cancellation {
    padding-top: 100px;
    margin-top: -100px;
  }
}
@media (max-width: 575px) {
  .terms-wrapper #pricing,
  #serviceplans,
  .terms-wrapper #paymentandbilling,
  .terms-wrapper #deliverypolicy,
  .terms-wrapper #cancellation {
    padding-top: 80px;
    margin-top: -80px;
  }
}
.terms-wrapper .policy-page {
  position: relative;
}
.terms-wrapper .policy-page .lightning-strike {
  position: absolute;
  z-index: -1;
  top: 90%;
  right: 0;
}
.terms-wrapper .policy-page .lightning-strike-first {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 30%;
}
.terms-wrapper .policy-page .lightning-border {
  position: absolute;
  top: 14%;
  right: 0;
  z-index: -1;
}
.terms-wrapper .policy-page .lightning-fill {
  position: absolute;
  top: 10%;
  left: 0;
  z-index: -1;
}
.terms-wrapper .policy-page .lightning-fill:last-child {
  top: 60%;
}
.terms-wrapper .policy-page .spark {
  position: absolute;
  left: 84%;
  top: 30%;
}
.terms-wrapper .policy-page .spark:last-child {
  top: 80%;
}
.terms-wrapper {
  padding: 50px 0 100px;
}
/* POLICY SECTION END'S HERE */
/* TERMS */

/* Responsive Design */
@media (max-width: 1399px) {
  .breadcrumbe_wrapper h1,
  .breadcrumbe_wrapper h2,
  .breadcrumbe_wrapper h3,
  .breadcrumbe_wrapper h4,
  .breadcrumbe_wrapper h5,
  .breadcrumbe_wrapper h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
  }
  .breadcrumbe_wrapper {
    padding: 50px 0 50px;
  }
  .title {
    font-size: 42px;
    line-height: 54px;
  }
  .content {
    font-size: 18px;
    line-height: 24px;
  }
  .signup-form-block {
    padding: 42px 50px;
  }
  .signup-wrapper,
  .terms-wrapper {
    padding: 30px 0 80px;
  }
}
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .feature-content h2,
  .cta-content h2 {
    font-size: 2.5rem;
  }
  .nav-menu {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 14px;
  }

  .footer-quick-links {
    gap: 30px;
    justify-content: flex-end;
  }
  .header-mode h2 {
    font-size: 32px;
    line-height: 42px;
  }
  .header-mode {
    height: auto;
    padding: 28px;
  }
  .faq-img,
  .faq-content-wrapper {
    max-width: 50%;
  }
  .breadcrumbe_wrapper {
    padding: 60px 0 10px;
  }
  .breadcrumbe_wrapper h1,
  .breadcrumbe_wrapper h2,
  .breadcrumbe_wrapper h3,
  .breadcrumbe_wrapper h4,
  .breadcrumbe_wrapper h5,
  .breadcrumbe_wrapper h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
  }
  .title {
    font-size: 38px;
    line-height: 46px;
  }
  .title-wrapper {
    gap: 10px;
  }
  .faq-wrapper {
    margin-top: 20px;
  }
  .faq-title h2 {
    font-size: 16px;
    line-height: 22px;
  }
  .questions-wrapper {
    padding: 40px 0;
  }
  .membership-wrapper {
    padding: 40px 0 80px;
  }
  .cancel-membership {
    padding: 30px;
  }
  .chatwith-us {
    padding: 30px;
    gap: 27px;
  }
  .chatwith-us h2,
  .cancel-membership h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .form-bg {
    display: none;
  }
  .form-block form {
    padding: 42px 37px;
    max-width: 100%;
  }
  .form-block .form-group {
    margin-bottom: 10px;
  }
  .info-block > div img {
    max-width: 50px;
    height: 50px;
  }
  .info-block > div h2 {
    font-size: 22px;
    line-height: 30px;
  }
  .info-block {
    max-width: 318px;
    padding: 60px 64px;
    gap: 40px;
  }
  .contact-wrapper {
    padding: 30px 0 70px;
  }
  .contact-block {
    margin-top: 30px;
  }
  .signup-form-block {
    padding: 40px;
    max-width: calc(100% - 390px);
  }
  .signup-img-block img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
  }
  .signup-wrapper,
  .terms-wrapper {
    padding: 30px 0 60px;
  }
}

@media (max-width: 992px) {
  .header-component {
    padding: 10px 15px;
  }
  .logo-img {
    height: 30px;
    width: auto;
  }
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

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

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block;
    padding: 0;
    font-size: 16px;
    max-width: max-content;
    margin: auto;
  }

  .mobile-menu-toggle {
    display: block;
    width: 24px;
    padding: 0;
    height: 12px;
    position: relative;
    background-color: #000000;
    border-radius: 6px;
    height: 24px;
  }

  .feature-content .vector {
    width: 40px;
    top: -40px;
  }

  .feature-section.second .feature-content .vector {
    width: 40px;
    top: -40px;
    left: 0;
  }

  .feature-section,
  .cta-section,
  .pricing-section {
    padding: 3rem 1rem;
  }
  .cta-section {
    padding: 2rem 1rem;
  }
  .cta-background {
    width: 70%;
    height: 100%;
    opacity: 0.6;
  }
  .promo-banner {
    padding: 0rem 0;
    overflow: hidden;
    position: relative;
    transform: rotate(3deg) scale(1.1);
    z-index: 3;
  }
  .promo-gradient {
    padding: 2rem 0;
    transform: rotate(0deg);
    margin: 0;
  }
  .cta-subtitle {
    margin-bottom: 1rem;
  }
  .cta-content {
    max-width: 375px;
  }
  .hero-container,
  .feature-container {
    /* grid-template-columns: 1fr; */
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .feature-content h2,
  .cta-content h2 {
    font-size: 2rem;
  }
  .hero-section {
    padding: 0 2rem 0rem;
    margin-bottom: 30px;
  }
  .feature-description {
    margin-bottom: 2rem;
  }
  .feature-list {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .plan-badge {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 22px;
    padding: 14px;
  }
  .plan-price {
    font-size: 38px;
    line-height: normal;
  }
  .pricing-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .pricing-header {
    max-width: 520px;
    margin: 0 auto 25px;
  }
  .plan-feature {
    font-size: 18px;
    line-height: 26px;
  }
  .plan-features {
    margin-bottom: 40px;
    gap: 18px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 30px;
  }
  .footer-brand {
    max-width: 100%;
    text-align: center;
    border-bottom: 1px solid #ffffff56;
    padding-bottom: 30px;
  }
  .footer-brand > img {
    height: 40px !important;
    margin: 0 auto 20px !important;
  }
  .footer-security {
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  .footer-description {
    margin-bottom: 1.5rem;
  }
  .footer-quick-links {
    gap: 30px;
    justify-content: space-between;
    max-width: 100%;
  }
  .footer-component {
    padding: 2rem 2rem 2rem;
  }
  .faq-img {
    top: 80px;
  }
  .breadcrumbe_wrapper {
    padding: 25px 0 25px;
    border-bottom: 1px solid #f3f3f3;
  }
  .breadcrumbe_wrapper h1,
  .breadcrumbe_wrapper h2,
  .breadcrumbe_wrapper h3,
  .breadcrumbe_wrapper h4,
  .breadcrumbe_wrapper h5,
  .breadcrumbe_wrapper h1 {
    font-size: 26px;
    line-height: 38px;
  }
  .title {
    font-size: 32px;
    line-height: 42px;
    text-align: center;
  }
  .content {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
  .questions-wrapper .title-wrapper {
    max-width: 500px;
    margin: auto;
  }
  .faq-wrapper {
    margin-top: 30px;
  }
  .questions-wrapper {
    padding: 30px 0;
  }
  .membership-wrapper {
    padding: 30px 0 60px;
  }
  .chatwith-us h2,
  .cancel-membership h2 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .cancel-membership form {
    gap: 20px;
  }
  .chatwith-us > img {
    width: 60px;
    height: 60px;
  }
  .chatwith-us {
    gap: 20px;
  }
  .chatwith-us h2 {
    margin-bottom: 0;
  }
  .info-block {
    max-width: 260px;
    padding: 60px 30px;
    gap: 40px;
  }
  .form-block {
    max-width: calc(100% - 260px);
  }
  .g-recaptcha {
    zoom: 0.7;
  }
  .signup-block {
    flex-direction: column;
  }
  .signup-img-block {
    display: none;
  }
  .signup-form-block {
    padding: 30px;
    max-width: 100%;
    margin: auto;
  }
  #pricing,
  #service {
    scroll-margin-top: 40px;
  }
  
  .form-block form {
    padding: 42px 22px;
  }
}

@media (max-width: 767px) {
  .header-component {
    /* padding: 1rem; */
  }

  .hero-section {
    padding: 3rem 1rem 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .feature-section,
  .cta-section,
  .pricing-section {
    padding: 4rem 1rem;
  }

  .feature-content h2,
  .cta-content h2 {
    font-size: 1.75rem;
  }

  .pricing-title {
    font-size: 2rem;
  }

  .feature-list {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .plan-price {
    font-size: 3rem;
  }
  .hero-description,
  .feature-description {
    margin-bottom: 2rem;
    padding-left: 0;
    border-left: none;
  }
  .hero-container,
  .feature-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-container {
    gap: 0;
  }
  .hero-content,
  .feature-content {
    position: relative;
    z-index: 2;
  }
  .hero-image,
  .feature-image {
    position: relative;
    z-index: 1;
    margin: 0 auto;
  }
  .hero-section {
    padding: 3rem 1rem 0rem;
    margin-bottom: -1px;
  }

  .hero-content,
  .feature-content {
    margin-bottom: 20px;
    text-align: center;
  }
  .feature-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }
  .feature-section,
  .cta-section,
  .pricing-section {
    padding: 3rem 1rem;
  }

  .cta-section {
    padding: 3rem 1rem 0;
  }

  .cta-background {
    width: 100%;
    opacity: 1;
    max-width: 300px;
    margin: 20px auto 0;
    position: static;
  }
  .cta-content {
    max-width: 100%;
    text-align: center;
  }
  .feature-content h2,
  .cta-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .feature-section.second .feature-container {
    flex-direction: column;
  }
  section.feature-section.second {
    padding-bottom: 0;
  }
  .plan-price {
    font-size: 2.5rem;
  }
  .plan-feature {
    font-size: 16px;
    line-height: 23px;
  }
  .plan-period {
    margin-bottom: 1.5rem;
  }
  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .footer-link a {
    font-size: 15px;
  }
  .footer-section.third {
    width: 100%;
    max-width: 264px;
    margin: 0 auto;
  }
  .faq-img {
    display: none;
  }
  .faq-img,
  .faq-content-wrapper {
    max-width: 100%;
  }
  .membership-block {
    gap: 20px;
    flex-direction: column;
  }
  .cancel-membership {
    padding: 30px;
    text-align: center;
  }
  .cancel-membership form {
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  .cancel-membership form input {
    padding: 12px 20px;
    width: 100%;
  }
  .chatwith-us {
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
  .chatwith-us > img {
    margin: auto;
  }
  .chatwith-us button {
    max-width: max-content;
    margin: auto;
  }
  .title {
    font-size: 28px;
    line-height: 38px;
    text-align: center;
  }
  .faq-wrapper {
    margin-top: 20px;
  }
  .contact-block {
    margin-top: 30px;
    flex-direction: column;
  }
  .info-block {
    max-width: 100%;
    padding: 30px 10px;
    gap: 30px;
    display: flex;
  }
  .form-block {
    max-width: 100%;
    border-radius: 19px;
  }
  .form-block form {
    padding: 20px;
    max-width: 100%;
  }
  .contact-wrapper {
    padding: 30px 0 50px;
  }
  .form-captcha {
    gap: 10px;
    flex-direction: column;
  }
  .signup-wrapper,
  .terms-wrapper {
    padding: 30px 0 40px;
  }
  .signup-form-wrapper .cta-button {
    margin: 0px auto 0;
  }
}

@media (max-width: 575px) {
  .header-container,
  .nav-actions {
    gap: 1rem;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .promo-text {
    font-size: 1rem;
  }
  .promo-arrow {
    width: 16px;
  }
  .promo-gradient {
    padding: 1.2rem 0;
    transform: rotate(0deg);
    margin: 0;
  }

  .feature-content h2,
  .cta-content h2 {
    font-size: 1.5rem;
  }

  .pricing-title {
    font-size: 1.75rem;
  }

  .cta-button {
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    font-size: 0.875rem;
    gap: 1rem;
  }

  .cta-button-icon {
    width: 35px;
    height: 35px;
  }

  .plan-price {
    font-size: 2.5rem;
  }

  .plan-name {
    font-size: 1.5rem;
  }

  .auth-modal {
    padding: 2rem 1.5rem;
  }

  .auth-modal-title {
    font-size: 1.5rem;
  }

  .social-auth {
    flex-direction: column;
  }
  .pricing-cards {
    gap: 1rem;
    flex-direction: column;
  }

  .footer-quick-links {
    gap: 10px;
    justify-content: center;
    flex-direction: column;
  }

  .footer-section:last-child h4 {
    text-align: center;
  }

  .footer-section.first,
  .footer-section.second {
    max-width: 100%;
  }

  .footer-section h4 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-section h4 svg {
    display: block;
    transition: all 0.3s ease-in-out;
  }

  .footer-section.active h4 svg {
    transform: rotate(180deg);
  }

  .header-mode {
    height: auto;
    padding: 16px;
    margin: -32px -16px 0;
    border-radius: 20px 20px 0 0;
  }
  .header-mode h2 {
    font-size: 24px;
    line-height: 38px;
  }
  .modal-close {
    top: 10px;
    right: 10px;
  }
  .auth-modal {
    padding: 2rem 1rem;
  }
  .title {
    font-size: 24px;
    line-height: 36px;
  }
  .content {
    font-size: 15px;
    line-height: 24px;
    text-align: center;
  }
  .faq-title h2 {
    font-size: 14px;
    line-height: 20px;
    padding-right: 8px;
  }
  .faq-block {
    padding: 10px 10px;
    border-radius: 10px;
  }
  .faq-content-wrapper {
    gap: 15px;
  }
  .breadcrumbe_wrapper h1,
  .breadcrumbe_wrapper h2,
  .breadcrumbe_wrapper h3,
  .breadcrumbe_wrapper h4,
  .breadcrumbe_wrapper h5,
  .breadcrumbe_wrapper h1 {
    font-size: 22px;
    line-height: 34px;
  }
  .breadcrumbe_wrapper {
    padding: 20px 0 20px;
    border-bottom: 1px solid #f3f3f3;
  }
  .membership-wrapper {
    padding: 10px 0 40px;
  }
  .cancel-membership,
  .chatwith-us {
    padding: 20px;
  }
  .chatwith-us h2,
  .cancel-membership h2 {
    font-size: 18px;
    line-height: 26px;
  }
  .signup-form-wrapper .row {
    flex-direction: column;
    gap: 0px;
  }
  .signup-form-block {
    padding: 20px;
  }
}




/* FAQ Table Styling */
table#customers {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  font-size: 15px;
  color: #000;
  margin: 14px 0px;
}

/* Header */
table#customers thead {
  background-color: #ff8214;
}

table#customers thead th {
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  color: #000;
}

/* Body rows */
table#customers tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid #eaeaea;
}

/* Last row border removal */
table#customers tbody tr:last-child td {
  border-bottom: none;
}

/* Zebra striping */
table#customers tbody tr:nth-child(even) {
  background-color: #fff7f0;
}

/* Hover effect */
table#customers tbody tr:hover {
  background-color: rgba(255, 130, 20, 0.08);
}

/* Mobile-friendly */
@media (max-width: 576px) {
  table#customers thead {
    display: none;
  }

  table#customers,
  table#customers tbody,
  table#customers tr,
  table#customers td {
    display: block;
    width: 100%;
  }

  table#customers tr {
    margin-bottom: 12px;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 10px;
  }

  table#customers td {
    border: none;
    padding: 6px 0;
  }

  table#customers td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #ff8214;
    display: block;
    margin-bottom: 4px;
  }
}

