.landing-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 120px 0;
}

.inside-container {
  width: 90%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.white {
  background-color: var(--primary-header-and-footer-logo);
}

.orange {
  background-color: var(--primary-cta);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 55px;
  background-color: var(--primary-cta);
  color: var(--primary-dark-text);
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  margin: 10px;
}

.cta:hover {
  filter: brightness(1.1);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  place-items: center;
  align-items: center;

  width: 100%;
}

.hero-content {
  animation: fadeInRight 0.8s ease-out;
  padding-left: 20px;
}

.subtitle {
  color: var(--primary-gray-text);
  font-weight: 500;
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-dark-text);
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.hero-content h1 .highlight {
  color: var(--primary-cta);
}

.hero-content p {
  font-size: 22px;
  color: var(--primary-gray-text);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.btn {
  font-family: var(--font);
  display: block;
  background-color: var(--primary-cta);
  color: var(--primary-header-and-footer-logo);
  text-align: center;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}


.registered {
    font-family: var(--font);
  display: block;
 
  text-align: center;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 1px solid var(--primary-cta);
  color: var(--primary-cta);
}

.btn-primary {
  background-color: var(--primary-cta);
  color: var(--primary-header-and-footer-logo);
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-secondary {
  background-color: var(--primary-second-button);

  color: var(--primary-dark-text);
}

.btn-secondary:hover {
  color: var(--primary-cta);
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: var(--primary-gray-text);
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-visuals {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  perspective: 1200px;
  width: 100%;
  animation: fadeInUp 0.8s ease-out;
}

.hero-video-wrapper {
  width: 100%;
  height: auto;
  border-radius: 12px;
  padding: 5px;
  background-color: var(--primary-cta);
  z-index: 5;
  position: relative;
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: block;
}

.floating-elements-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.visual-element {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 20px;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  z-index: 10;
}

.sales-report-card {
  color: var(--primary-button-color);
  top: 14%;
  right: 27%;
  transform: translate(20%, -30%);
}

.new-order-toast {
  color: var(--primary-button-color);
  bottom: 14%;
  left: 8%;
  transform: translateX(-40%);
}

.inventory-alert {
  color: var(--primary-button-color);
  bottom: 28%;
  right: -11%;
  padding: 12px 16px;
  font-size: 14px;
  transform: translateY(30%);
}

.alert-bar {
  width: 100%;
  height: 4px;
  background-color: var(--primary-button-color);
  border-radius: 4px;
  margin-top: 5px;
}

.card-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-button-color);
}

.new-order-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

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

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-card {
  position: absolute;
  background: var(--primary-header-and-footer-logo);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--primary-background);
  will-change: transform;
  transition: transform 0.2s ease-out;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.card-value {
  font-size: 32px;
  font-weight: 700;
}
.card-value small {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-gray-text);
}

.ai-generated {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* موقعیت‌دهی کارت‌ها */
.card-inventory {
  top: -20px;
  right: 5%;
  width: 340px;
  transform: rotate(4deg);
  z-index: 1;
}
.card-revenue {
  top: 160px;
  right: -5%;
  width: 380px;
  transform: rotate(-3deg);
  z-index: 3;
}
.card-accounting {
  bottom: -40px;
  right: 20%;
  width: 320px;
  transform: rotate(2deg);
  z-index: 2;
}

/* استایل‌های داخل کارت‌ها */
.inventory-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.inventory-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.inventory-item span:first-child {
  width: 80px;
  text-align: left;
  color: var(--primary-gray-text);
}
.inventory-item span:last-child {
  font-weight: 600;
}
.inventory-bar {
  height: 8px;
  border-radius: 4px;
  background-color: var(--primary-button-color);
}

.revenue-change {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-cta);
  background-color: var(--primary-second-button);
  padding: 4px 8px;
  border-radius: 50px;
}
.bar-chart-container {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
  margin-top: 20px;
}
.bar {
  flex-grow: 1;
  background-color: var(--primary-background);
  border-radius: 4px;
  transition: background-color 0.2s;
}
.bar.bar--active {
  background-color: var(--primary-button-color);
}
.bar:hover {
  background-color: #c7d2fe;
}

.accounting-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.accounting-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
}
.accounting-item span {
  color: var(--primary-gray-text);
}
.accounting-item strong {
  font-weight: 700;
}

@media (max-width: 992px) {
  .hero-content p {
    margin: 0 auto 30px auto;
  }

  .hero-cta,
  .hero-features {
    justify-content: center;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-content {
    order: 1;
    text-align: center;
    padding-left: 0;
  }

  /* .hero-visuals {
		order: 2;
		height: auto;
		margin-top: 40px;
		padding-bottom: 50px;
	} */

  .hero-visuals {
    order: 1;
    position: static;
    height: auto;
    perspective: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
  }
  .floating-card {
    position: static;
    transform: none !important;
    width: calc(100% - 20px) !important;
    max-width: 400px;
  }

  .hero-video-wrapper {
    width: 80%;
  }

  .sales-report-card {
    top: -2%;
    transform: translate(10%, -50%);
  }

  .new-order-toast {
    transform: translateX(-20%);
  }

  .inventory-alert {
    bottom: 12%;
    right: 5%;
    transform: translate(0, 50%);
  }
}

@media (max-width: 600px) {
  .hero-video-wrapper {
    width: 95%;
  }

  .hero-visuals {
    padding-bottom: 20px;
  }

  .visual-element {
    padding: 10px 15px;
    font-size: 13px;
  }

  .sales-report-card,
  .new-order-toast,
  .inventory-alert {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 15px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 20px;
  }

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

  .visual-element-video {
    width: 85%;
  }
}

/* the best experience */

.container-title {
  width: 100%;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  font-family: var(--font);
  margin: 0;
  margin-bottom: 40px;
}

.cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.horizontal-card {
  grid-row: span 2;
  height: 498px;
  background-color: var(--primary-button-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.square-card {
  grid-row: span 1;
  height: 239px;
  background-color: var(--primary-button-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vertical-card {
  grid-column: span 1;
  height: 239px;
  background-color: var(--primary-button-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-family: var(--font);
  font-size: 16px;
  color: var(--primary-header-and-footer-logo);
  width: calc(100% - 32px);
  padding: 20px;
  margin: 0;
  font-weight: 700;
}

.horizontal-card .demo {
  width: 90%;
  height: 420px;
  background-color: var(--primary-header-and-footer-logo);
  margin: 0 auto;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  position: relative;
}

.square-card .demo-branch {
  width: 70%;
  height: 140px;
  background-color: var(--primary-header-and-footer-logo);
  margin-bottom: 10px;
  border-radius: 12px 0 0 12px;
}

.base-image {
  position: absolute;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
}

.overlay-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  overflow: hidden;
}

.overlay-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  transform: translateY(0%);
}

.cta-part {
  width: 100%;
  display: flex;
  justify-content: center;
}

.cta-part .cta {
  margin: 0;
  margin-top: 20px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.map-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 12px;
  z-index: 1;
}

.map-pin {
  position: absolute;
  width: 40px;
  height: 20px;
  z-index: 5;
  display: flex;
  justify-content: center;
  transform: translateX(-50%);
  cursor: pointer;
}

.pin-icon-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.square-card .demo-permissions {
  width: 90%;
  height: 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  padding: 10px;
}

.permission-item {
  background-color: var(--primary-header-and-footer-logo);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-dark-text);
  font-size: 14px;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 32px;
  flex-shrink: 0;
}

.toggle-checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-background);
  border-radius: 34px;
  transition: background-color 0.3s ease;
}

.toggle-label::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background-color: var(--primary-button-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle-checkbox:checked + .toggle-label {
  background-color: var(--primary-cta);
}

.toggle-checkbox:checked + .toggle-label::before {
  background-color: white;
  transform: translateX(28px);
}

.demo-suggestion {
  width: 90%;
  height: 420px;
  background-color: var(--primary-header-and-footer-logo);
  margin: 0 auto;
  border-radius: 12px 12px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.demo-suggestion .suggestion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 40px) / 2);
  height: 120px;
  background-color: #eeeef6;
  border-radius: 12px;
  margin: 10px;
}

.top-side-suggestion {
  display: flex;
  width: calc(100% - 24px);
  justify-content: space-between;
  padding: 12px;
}

.suggestion-icon {
  width: 42px;
  height: 42px;
}

.suggestion-star {
  width: 32px;
  height: 32px;
}

.bottom-side-suggetion {
  display: flex;
  justify-content: end;
  width: calc(100% - 20px);
  padding: 10px;
}

.bottom-side-suggetion .add-item {
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 222px;
  background-color: #78b4f7;
  color: var(--primary-header-and-footer-logo);
  font-size: 24px;
}

.demo-suggestion .suggestion-sckeleton {
  width: calc((100% - 85px) / 2);
  height: 40px;
  background-color: #eeeef6;
  border-radius: 12px 12px 0 0;
  position: absolute;
  bottom: 0;
  margin: 0 10px;
  display: flex;
  justify-content: start;
  align-items: end;
  padding: 0 12px;
}

.suggestion-sckeleton .image-sckeleton {
  width: 42px;
  height: 20px;
  background-color: var(--primary-header-and-footer-logo);
  border-radius: 8px 8px 0 0;
}

.suggestion-sckeleton .text-sckeleton {
  width: 70%;
  height: 10px;
  border-radius: 40px;
  background-color: var(--primary-header-and-footer-logo);
  margin: 7px 12px;
}

.active-suggestion {
  display: block;
}

.vertical-card .demo-warehouse {
  width: 95%;
  height: 180px;

  margin: 0 auto;
  border-radius: 12px 12px 0 0;
  display: flex;
  flex-direction: column;
}

.warehouse-features {
  padding: 10px 20px;
  border-radius: 8px;
  width: calc(100% - 40px);
  max-width: unset;
  background-color: var(--primary-header-and-footer-logo);
  font-family: var(--font);
  font-size: 14px;
  margin: 2px 0;
}

.demo-sell-speed {
  width: calc(100% - 40px);
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 20px;
}

.speed-sell-blue-box {
  position: relative;
  width: 50%;
  height: 120px;
  background-color: #78b4f7;
  border-radius: 8px;
}

.speed-sell-blue-box .icon {
  position: absolute;
  top: 12%;
  right: -20%;
  width: 80px;
  height: 80px;
}

.speed-sell-blue-box .white-button {
  width: 140%;
  height: 20px;
  background-color: var(--primary-header-and-footer-logo);
  position: absolute;
  bottom: 10px;
  left: 10px;
  border-radius: 3px;
}

.demo-loyalty {
  width: calc(100% - 40px);
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 20px;
}

.loyalty-blue-box {
  position: relative;
  width: 50%;
  height: 120px;
  background-color: #78b4f7;
  border-radius: 8px;
}

.loyalty-blue-box .icon {
  position: absolute;
  top: 9%;
  left: -23%;
  width: 80px;
  height: 80px;
}

.loyalty-blue-box .white-button {
  width: 140%;
  height: 20px;
  background-color: var(--primary-header-and-footer-logo);
  position: absolute;
  bottom: 10px;
  right: 10px;
  border-radius: 3px;
}

@media (max-width: 500px) {
  .active-suggestion {
    display: none !important;
  }

  .demo-suggestion .suggestion-card {
    width: calc(100% - 20px);
    position: absolute !important;
    top: -13% !important;
  }

  .demo-suggestion .suggestion-sckeleton {
    width: calc(100% - 42px);
    height: 30px;
  }
}

@media only screen and (min-width: 700px) {
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    grid-template-rows: 1fr 1fr;
  }
}

@media only screen and (min-width: 770px) {
  .vertical-card {
    grid-column: span 2;
  }
}

@media only screen and (min-width: 800px) {
  .container-title {
    font-size: 42px;
  }
}

@media only screen and (min-width: 1000px) {
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(355px, 1fr));
  }
}

@media only screen and (min-width: 1200px) {
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
  }
}

@media only screen and (min-width: 1500px) {
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(283px, 1fr));
  }
}

.reduce-card {
  background-color: var(--primary-background);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: none;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc((100% - 16rem) / 3);
}

.reduce-card:hover {
  transform: translateY(-10px);
}

.card-icon {
  display: inline-flex;
  background-color: transparent;
  border: none;
  margin-bottom: 1.5rem;
}

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

.reduce-card h2 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark-text);
  margin: 0 0 0.75rem 0;
  line-height: 2;
}

.reduce-card p {
  font-size: 14px;
  line-height: 2;
  max-width: 300px;
  margin: 0px auto 20px auto;
  font-family: var(--font);
  color: var(--primary-button-color);
}

@media (max-width: 768px) {
  .reduce-card {
    width: 100%;
    margin: 10px 0;
  }

  h2 {
    font-size: 1.5rem;
  }

  .reduce-card {
    padding: 2rem 1.5rem;
  }
}

/* features */

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  background-color: var(--primary-header-and-footer-logo);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chip-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  margin-left: 0.75rem;
  background-color: var(--chip-bg-color);
}

.chip-icon svg {
  color: var(--chip-color);
}

.feature-chip span {
  font-family: var(--font);
  font-size: 16px;
  color: var(--primary-button-color);
  white-space: nowrap;
}

/* receipt */

.receipt-grid {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.receipt-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.receipt-card {
  background-color: var(--primary-background);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 80px;
}

.receipt-card h3 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-dark-text);
  margin: 0;
  line-height: 2;
}

.demo-section {
  flex: 1.5;

  background: var(--primary-button-color);
  border-radius: 12px;
  padding: 2rem;
  min-height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 50px -20px rgba(31, 59, 115, 0.6);
}

.demo-desktop {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}



.demo-content img {
  display: block;
  width: 100%;
  height: auto;
}

.demo-mobile {
  display: none;
}

.phone-frame {
  background: #1a202c;
  border-radius: 16px;
  box-shadow: 0 0 0 8px #1a202c, 0 0 0 10px #718096;
}

.phone-frame .demo-content {
  border-radius: 16px;
  overflow: hidden;
}

.phone-notch {
  width: 120px;
  height: 25px;
  background: #1a202c;
  border-radius: 0 0 15px 15px;
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

@media (max-width: 1100px) {
  .receipt-grid {
    flex-direction: column;
  }

  .demo-section {
    order: -1;
    width: 100%;
    box-sizing: border-box;
    min-height: auto;
  }

  .demo-desktop {
    display: none;
  }

  .demo-mobile {
    display: block;
  }

  .receipt-column {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .receipt-card {
    padding: 15px;
  }

  .receipt-card h3 {
    font-size: 16px;
  }
}

/* special benefits */

.features-list-container {
  flex-wrap: wrap;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  background-color: var(--primary-header-and-footer-logo);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--primary-background);
  flex: 1 1 300px;
}

.feature-icon {
  width: 48px;
  height: 100%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.feature-icon svg {
  stroke: var(--primary-header-and-footer-logo);
}

.feature-text {
  font-family: var(--font);
  margin: 0 1rem;
  flex-grow: 1;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark-text);
  margin: 0;
  line-height: 2;
}

.feature-description {
  font-size: 14px;
  color: var(--primary-button-color);
  margin: 12px 0 0 0;
  line-height: 2;
}

@media (max-width: 768px) {
  .features-list-container {
    gap: 1rem;
  }

  .feature-item {
    flex-basis: 100%;
  }
}

/* subscriptions list */

.toggle-container {
  background-color: #e5e7eb;
  border-radius: 999px;
  padding: 0.3rem;
  display: flex;
  margin: 0 auto 3rem auto;
}

.toggle-btn {
  border: none;
  background: transparent;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: var(--primary-dark-text);
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background-color: var(--primary-header-and-footer-logo);
  color: var(--primary-dark-text);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.pricing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.pricing-card {
  background-color: var(--primary-header-and-footer-logo);
  border-radius: 12px;
  padding: 2rem;
  width: calc((100% - 17rem) / 3);
  height: 500px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  background-color: var(--primary-button-color);
  color: var(--primary-header-and-footer-logo);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.08) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: var(--primary-header-and-footer-logo);
  color: var(--primary-dark-text);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.card-title-price h3 {
  font-family: var(--font);
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.pricing-card.popular .card-title-price h3 {
  color: var(--primary-header-and-footer-logo);
}

.price {
  margin: 0.25rem 0 0 0;
  font-size: 14px;
  color: var(--primary-dark-text);
}

.price .amount {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-dark-text);
}

.pricing-card.popular .price,
.pricing-card.popular .price .amount {
  color: var(--primary-header-and-footer-logo);
}

.yearly-savings {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-cta);
  margin-top: 0.5rem;
}

.pricing-card.popular .yearly-savings {
  color: var(--primary-cta);
}

.yearly-savings.visible {
  display: block;
}

.card-divider {
  height: 1px;
  background-color: var(--primary-background);
  margin-bottom: 1.5rem;
  width: 100%;
}

.pricing-card.popular .card-divider {
  background-color: var(--primary-background);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.features-list li {
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  margin-bottom: 1rem;
}

.features-list svg {
  color: var(--primary-button-color);
}

.pricing-card.popular .features-list svg {
  color: var(--primary-background);
}

.card-footer {
  margin-top: 1.5rem;
}

@media (max-width: 1100px) {
  .pricing-container {
    align-items: stretch;
  }

  .pricing-card {
    width: calc((100% - 11rem) / 2);

    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }

  .pricing-card {
    width: 100%;
    margin: 0;
  }
}

/* FAQ */

.faq-container {
  width: 70%;
  margin: 0 auto;
}

.faq-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.faq-tab {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--primary-button-color);
  border-radius: 999px;
  background-color: transparent;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-button-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-tab.active {
  background-color: var(--primary-button-color);
  color: var(--primary-header-and-footer-logo);
  border-color: var(--primary-button-color);
}

.faq-item {
  background-color: var(--primary-background);
  padding: 15px;
  border-radius: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1.5rem;

  cursor: pointer;
  width: 100%;
}

.faq-question h4 {
  font-family: var(--font);
  flex-grow: 1;
  text-align: right;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  color: var(--primary-dark-text);
}

.faq-toggle-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--primary-dark-text);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-answer p {
  font-family: var(--font);
  padding: 1.5rem 0.5rem 1.5rem 2.5rem;
  margin: 0;
  line-height: 2;
  font-size: 14px;
  max-width: unset;
  color: var(--primary-gray-text);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

@media (max-width: 1000px) {
  .faq-container {
    width: 95%;
  }
}

/* cta one */

.cta-section {
  position: relative;
  max-width: 1400px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
  color: var(--primary-header-and-footer-logo);
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.cta-content p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 0 32px 0;
  opacity: 0.85;
  line-height: 1.7;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  color: #333;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-button svg {
  transition: transform 0.2s ease;
}

.cta-button:hover svg {
  transform: translateX(-4px);
}

@media (max-width: 800px) {
  .cta-content h1 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-section {
    padding: 60px 20px;
  }
}

/* cta two */
.cta-showcase-wrapper {
  width: 100%;
}

.cta-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  background-color: var(--primary-button-color);
  color: var(--primary-header-and-footer-logo);
  margin: 0 auto;
  padding: 60px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.cta-showcase__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cta-showcase__subtitle {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-showcase__title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px 0;
}

.cta-showcase__description {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 24px 0;
  max-width: 450px;
}

.cta-showcase__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 15px;
  font-weight: 500;
}

.cta-showcase__feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-showcase__action-area {
  margin-top: 24px;
}

.cta-showcase__trial-text {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 12px 0;
  opacity: 0.9;
}

.cta-showcase__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--primary-header-and-footer-logo);
  color: var(--primary-button-color);
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-showcase__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-showcase__decorative-arrow {
  position: absolute;
  top: 40px;
  left: 20%;
  width: 100px;
  height: 50px;
  opacity: 0.5;
}

.cta-showcase__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.base-cta-image {
  position: absolute;
  height: 100%;
  width: 40%;
  object-fit: cover;
  object-position: top right;
  right: 0;
  top: 0;
}

.inner-shadow-cta-wallpaper {
  position: absolute;
  z-index: 2;
  top: -40px;
  right: 0;
  width: 42%;
  height: 150%;
  box-shadow: 74px 2px 58px 27px rgba(0, 71, 122, 1) inset;
  -webkit-box-shadow: 74px 2px 58px 27px rgba(0, 71, 122, 1) inset;
  -moz-box-shadow: 74px 2px 58px 27px rgba(0, 71, 122, 1) inset;
}

@media (max-width: 1100px) {
  .cta-showcase {
    grid-template-columns: 1fr;
    padding: 40px;
    text-align: center;
  }

  .cta-showcase__content {
    align-items: center;
  }

  .cta-showcase__features {
    justify-content: center;
  }

  .cta-showcase__decorative-arrow {
    display: none;
  }

  .cta-showcase__visual {
    margin-top: 40px;
    height: 380px;
  }

  .base-cta-image {
    position: absolute;
    height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: top right;
    right: 0;
    top: 0;
  }

  .inner-shadow-cta-wallpaper {
    top: 0;
    right: -40px;
    width: 150%;
    height: 400px;
    box-shadow: 13px -95px 36px -15px rgba(0, 71, 122, 1) inset;
    -webkit-box-shadow: 13px -95px 36px -15px rgba(0, 71, 122, 1) inset;
    -moz-box-shadow: 13px -95px 36px -15px rgba(0, 71, 122, 1) inset;
  }
}

@media (max-width: 600px) {
  .cta-showcase__title {
    font-size: 32px;
  }

  .cta-showcase__description {
    font-size: 16px;
  }

  .cta-showcase__visual {
    height: 124px;
  }

  .base-cta-image {
    height: 200px;
  }

  .inner-shadow-cta-wallpaper {
    height: 239px;
  }
}
