@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #484848;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

.btn-primary {
  background: #9381ff;
  color: #fefefe;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.btn-primary .btn-text-container {
  position: relative;
  display: block;
  height: 24px;
  overflow: hidden;
}
.btn-primary span {
  color: #fefefe;
}
.btn-primary .btn-text-original,
.btn-primary .btn-text-hover {
  display: block;
  transition: transform 0.3s ease;
  line-height: 24px;
}
.btn-primary .btn-text-original {
  transform: translateY(0);
}
.btn-primary .btn-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}
.btn-primary:hover .btn-text-original {
  transform: translateY(-100%);
}
.btn-primary:hover .btn-text-hover {
  transform: translateY(0);
}

.badge {
  border: 1px solid #e8e8e8;
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Inter", sans-serif;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

@media (min-width: 991px) {
  .container {
    width: 80%;
    margin: 0 auto;
  }
  .hero {
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .hero .container {
    margin-top: 20vh;
    position: relative;
    z-index: 2;
  }
  .hero .container h1 {
    text-align: center;
  }
  .hero .container p {
    width: 50%;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
  }
  .hero .container .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }
  .hero .container .hero-buttons .secondary-link {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .hero .container .hero-buttons .secondary-link span {
    font-size: 20px;
  }
  .hero .container .hero-buttons .secondary-link:hover {
    color: #9381ff;
  }
  .hero .hero-img {
    margin: 40px auto;
    width: 80%;
    position: relative;
    z-index: 2;
  }
  .hero .hero-img img {
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    display: block;
    transform: perspective(1000px) rotateX(15deg) translateY(0);
    transition: transform 0.6s ease-out;
    will-change: transform;
  }
  .hero .hero-img .gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 350px;
    width: 200%;
    background: linear-gradient(to bottom, transparent, rgb(255, 255, 255) 60%, rgb(255, 255, 255));
    pointer-events: none;
  }
  .hero .hero-img.animate img {
    transform: perspective(1000px) rotateX(0deg) translateY(-20px);
  }
  .why-fittara {
    height: 100%;
    display: flex;
    margin-top: 20vh;
    align-items: center;
  }
  .why-fittara .why-grid {
    display: flex;
  }
  .why-fittara .why-grid .grid-main {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #e8e8e8;
    padding: 40px;
    border-radius: 12px 0px 0px 12px;
  }
  .why-fittara .why-grid .grid-main p {
    text-align: left;
    width: 100%;
    margin-top: 20px;
  }
  .why-fittara .why-grid .grid-main .gradient-text {
    background: linear-gradient(90deg, #1a1a1a, #ffd8be, #1a1a1a);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 20s ease-in-out infinite;
  }
  @keyframes gradient-move {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .why-fittara .why-grid .grid-second {
    width: 50%;
    border-radius: 0px 12px 12px 0px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .why-fittara .why-grid .grid-second .grid-content {
    border: 1px solid #e8e8e8;
    padding: 20px;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
  }
  .why-fittara .why-grid .grid-second .grid-content .icon {
    width: 40px;
    height: 40px;
  }
  .why-fittara .why-grid .grid-second .grid-content .text {
    height: 35%;
  }
  .why-fittara .why-grid .grid-second .grid-content p {
    text-align: left;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .who-fittara {
    height: 100%;
    padding: 100px 0px;
  }
  .who-fittara h2 {
    text-align: center;
  }
  .who-fittara h2 span {
    line-height: 0.9;
    font-size: 16rem;
    color: #9381ff;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(45deg, #9381ff, #ffd8be, #9381ff, #ffd8be);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 20s ease-in-out infinite;
  }
  @supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .who-fittara h2 span {
      color: #9381ff;
      background: none;
      animation: none;
    }
  }
  .who-fittara p {
    width: 50%;
    margin: 20px 0px;
  }
  .who-fittara .who-grid {
    display: flex;
    gap: 20px;
  }
  .who-fittara .who-grid .who-card {
    width: 50%;
    border: 1px solid #e8e8e8;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
  }
  .who-fittara .who-grid .who-card h4 {
    color: #fdfdfd;
    text-align: center;
    font-size: 24px;
  }
  .who-fittara .who-grid .who-card:nth-child(1) {
    background: url(./assets/established.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .who-fittara .who-grid .who-card:nth-child(2) {
    background: url(./assets/startup.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .mission {
    padding: 100px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mission .mission-card {
    width: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background-color: #fefefe;
    height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .mission .mission-card .gradient-text {
    background: linear-gradient(90deg, #1a1a1a, #ffd8be, #1a1a1a);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 20s ease-in-out infinite;
  }
  .mission .mission-card .card-text {
    padding: 20px;
    width: 40%;
  }
  .mission .mission-card .card-img {
    width: 60%;
    height: 100%;
    position: relative;
    overflow: visible;
    border-radius: 0 12px 12px 0;
  }
  .mission .mission-card .card-img::before {
    content: "";
    position: absolute;
    top: 70px;
    right: 70px;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #ded8ff, #ffd8be, #ded8ff, #ded8ff);
    background-size: 400% 400%;
    animation: gradient-move 8s linear infinite, shape-float 12s ease-in-out infinite;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.9;
    z-index: 1;
  }
  .mission .mission-card .card-img img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    border-radius: 0 12px 12px 0;
  }
  .pricing {
    background: #0e0e0e;
    padding: 100px 0px 0px 0px;
    position: relative;
  }
  .pricing h2 {
    color: #fefefe;
    text-align: center;
    margin-bottom: 60px;
  }
  .pricing .pricing-grid {
    display: flex;
    gap: 30px;
    margin-top: 20px;
  }
  .pricing .pricing-grid .pricing-card {
    width: 33.33%;
    background: #1a1a1a;
    border: 1px solid #181818;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .pricing .pricing-grid .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  .pricing .pricing-grid .pricing-card.popular {
    border: 2px solid #9381ff;
    transform: scale(1.05);
  }
  .pricing .pricing-grid .pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
  }
  .pricing .pricing-grid .pricing-card .plan-label {
    background: #0e0e0e;
    color: #fefefe;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    display: inline-block;
    margin-bottom: 20px;
  }
  .pricing .pricing-grid .pricing-card h5 {
    color: #fefefe;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  .pricing .pricing-grid .pricing-card h5 .plan-name-accent-growth {
    color: #e8c5ad;
  }
  .pricing .pricing-grid .pricing-card h5 .plan-name-accent-elite {
    color: #9381ff;
  }
  .pricing .pricing-grid .pricing-card .plan-description {
    color: #fcfcfc;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .pricing .pricing-grid .pricing-card .pricing-details {
    color: #fbfbfb;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  .pricing .pricing-grid .pricing-card .plan-buttons {
    display: flex;
    gap: 15px;
    flex-direction: column;
  }
  .pricing .pricing-grid .pricing-card .plan-buttons .btn-primary {
    background: #9381ff;
    color: #fefefe;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s ease;
  }
  .pricing .pricing-grid .pricing-card .plan-buttons .btn-primary:hover {
    background: #8675e8;
  }
  .pricing .pricing-grid .pricing-card .plan-buttons .btn-secondary {
    background: transparent;
    color: #fefefe;
    border: 1px solid #9381ff;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
  }
  .pricing .pricing-grid .pricing-card .plan-buttons .btn-secondary:hover {
    background: #9381ff;
    color: #fefefe;
  }
  .pricing .compare-plans-link {
    margin-top: 40px;
    text-align: left;
  }
  .pricing .compare-plans-link a {
    color: #fefefe;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
  }
  .pricing .compare-plans-link a:hover {
    color: #9381ff;
  }
  .pricing .compare-plans-link a .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
  }
  .pricing .compare-plans-link a:hover .arrow {
    transform: translate(2px, -2px);
  }
  .pricing .character-section {
    margin-top: 80px;
    width: 300px;
    height: 400px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .pricing .character-section img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .faqs {
    background: #fefefe;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
  }
  .faqs h2 {
    color: #1a1a1a;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
  }
  .faqs .faq-content {
    display: flex;
    gap: 20px;
  }
  .faqs .faq-content .faq-left {
    width: 50%;
    height: 100%;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item {
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item:last-child {
    border-bottom: none;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question span {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question span .highlight {
    color: #9381ff;
    font-weight: 600;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question .faq-arrow {
    color: #484848;
    font-size: 20px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question .faq-arrow.material-icons {
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question:hover span {
    color: #9381ff;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-answer p {
    color: #484848;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
    font-family: "Inter", sans-serif;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item.active .faq-arrow {
    transform: rotate(180deg);
  }
  .faqs .faq-content .faq-left .faq-list .faq-item.active .faq-answer {
    max-height: 200px;
  }
  .faqs .faq-content .faq-right {
    width: 50%;
    min-height: 100%;
  }
  .faqs .faq-content .faq-right .cta-card {
    background: #f9f9f9;
    height: 100%;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
  }
  .faqs .faq-content .faq-right .cta-card h3 {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    font-family: "Inter", sans-serif;
  }
  .faqs .faq-content .faq-right .cta-card .btn-demo {
    background: #9381ff;
    color: #fefefe;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
    margin-bottom: 20px;
  }
  .faqs .faq-content .faq-right .cta-card .btn-demo:hover {
    background: #8675e8;
  }
  .faqs .faq-content .faq-right .cta-card .contact-info {
    color: #484848;
    font-size: 14px;
    font-family: "Inter", sans-serif;
  }
  .faqs .faq-content .faq-right .cta-card .contact-info .phone {
    color: #9381ff;
    font-weight: 600;
  }
  .footer {
    padding: 100px 0px;
  }
  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    border-top: 1px solid #e8e8e8;
  }
  .footer .container .start .logo {
    display: flex;
    gap: 8px;
  }
  .footer .container .start .logo img {
    width: 40px;
    height: 40px;
  }
  .footer .container .start .logo span {
    font-size: 24px;
    font-weight: 600;
    color: #9381ff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  .footer .container .end {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .footer .container .end .socials {
    display: flex;
    gap: 20px;
  }
  .footer .container .end .socials .social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #cdc5ff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .container .end .socials .social img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 991px) {
  .container {
    width: 98%;
    margin: 0 auto;
  }
  .hero {
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .hero .container {
    margin-top: 20vh;
    position: relative;
    z-index: 2;
  }
  .hero .container h1 {
    text-align: center;
    font-size: 2rem;
  }
  .hero .container p {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
  }
  .hero .container .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0px;
  }
  .hero .container .hero-buttons .secondary-link {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .hero .container .hero-buttons .secondary-link span {
    font-size: 20px;
  }
  .hero .container .hero-buttons .secondary-link:hover {
    color: #9381ff;
  }
  .hero .hero-img {
    margin: 40px auto;
    width: 98%;
    position: relative;
    z-index: 2;
  }
  .hero .hero-img img {
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    display: block;
    transform: perspective(1000px) rotateX(15deg) translateY(0);
    transition: transform 0.6s ease-out;
    will-change: transform;
  }
  .hero .hero-img .gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 150px;
    width: 200%;
    background: linear-gradient(to bottom, transparent, rgb(255, 255, 255) 60%, rgb(255, 255, 255));
    pointer-events: none;
  }
  .hero .hero-img.animate img {
    transform: perspective(1000px) rotateX(0deg) translateY(-20px);
  }
  .why-fittara {
    height: 100%;
    display: flex;
    margin-top: 0vh;
    align-items: center;
    padding: 100px 20px;
  }
  .why-fittara .why-grid {
    display: flex;
    flex-direction: column;
  }
  .why-fittara .why-grid .grid-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #e8e8e8;
    padding: 20px;
    border-radius: 12px 12px 0px 0px;
  }
  .why-fittara .why-grid .grid-main p {
    text-align: left;
    width: 100%;
    margin-top: 20px;
  }
  .why-fittara .why-grid .grid-main .gradient-text {
    font-size: 32px;
    background: linear-gradient(90deg, #1a1a1a, #ffd8be, #1a1a1a);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 20s ease-in-out infinite;
  }
  @keyframes gradient-move {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .why-fittara .why-grid .grid-second {
    width: 100%;
    border-radius: 0px 12px 12px 0px;
    display: grid;
    grid-template-columns: 1fr;
  }
  .why-fittara .why-grid .grid-second .grid-content {
    border: 1px solid #e8e8e8;
    padding: 20px;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
  }
  .why-fittara .why-grid .grid-second .grid-content .icon {
    width: 40px;
    height: 40px;
  }
  .why-fittara .why-grid .grid-second .grid-content .text {
    height: 55%;
  }
  .who-fittara {
    height: 100%;
    padding: 100px 20px;
  }
  .who-fittara h2 {
    font-size: 1rem;
  }
  .who-fittara h2 span {
    line-height: 0.9;
    font-size: 6rem;
    color: #9381ff;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(45deg, #9381ff, #ffd8be, #9381ff, #ffd8be);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 20s ease-in-out infinite;
  }
  @supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .who-fittara h2 span {
      color: #9381ff;
      background: none;
      animation: none;
    }
  }
  .who-fittara .who-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .who-fittara .who-grid .who-card {
    width: 100%;
    border: 1px solid #e8e8e8;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
  }
  .who-fittara .who-grid .who-card h4 {
    color: #fdfdfd;
    text-align: center;
    font-size: 24px;
  }
  .who-fittara .who-grid .who-card:nth-child(1) {
    background: url(./assets/established.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .who-fittara .who-grid .who-card:nth-child(2) {
    background: url(./assets/startup.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .mission {
    padding: 100px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mission .mission-card {
    width: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background-color: #fefefe;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }
  .mission .mission-card .gradient-text {
    background: linear-gradient(90deg, #1a1a1a, #ffd8be, #1a1a1a);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 20s ease-in-out infinite;
  }
  .mission .mission-card .card-text {
    padding: 20px;
    width: 100%;
  }
  .mission .mission-card .card-img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
    border-radius: 0 12px 12px 0;
  }
  .mission .mission-card .card-img::before {
    content: "";
    position: absolute;
    top: 70px;
    right: 70px;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #ded8ff, #ffd8be, #ded8ff, #ded8ff);
    background-size: 400% 400%;
    animation: gradient-move 8s linear infinite, shape-float 12s ease-in-out infinite;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.9;
    z-index: 1;
  }
  .mission .mission-card .card-img img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    border-radius: 0 12px 12px 0;
  }
  .pricing {
    background: #0e0e0e;
    padding: 100px 10px 10px 10px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .pricing h2 {
    color: #fefefe;
    text-align: left;
    margin-bottom: 40px;
    font-size: 32px;
  }
  .pricing .pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  .pricing .pricing-grid .pricing-card {
    width: 100%;
    background: #121212;
    border: 1px solid #181818;
    padding: 25px;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .pricing .pricing-grid .pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  .pricing .pricing-grid .pricing-card.popular {
    border: 2px solid #9381ff;
    transform: none;
  }
  .pricing .pricing-grid .pricing-card.popular:hover {
    transform: translateY(-3px);
  }
  .pricing .pricing-grid .pricing-card .plan-label {
    background: #181818;
    color: #fefefe;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    display: inline-block;
    margin-bottom: 15px;
  }
  .pricing .pricing-grid .pricing-card h5 {
    color: #fefefe;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .pricing .pricing-grid .pricing-card h5 .plan-name-accent {
    color: #9381ff;
  }
  .pricing .pricing-grid .pricing-card .plan-description {
    color: #fcfcfc;
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  .pricing .pricing-grid .pricing-card .pricing-details {
    color: #fbfbfb;
    font-size: 13px;
    margin-bottom: 25px;
    line-height: 1.5;
  }
  .pricing .pricing-grid .pricing-card .plan-buttons {
    display: flex;
    gap: 12px;
    flex-direction: column;
  }
  .pricing .pricing-grid .pricing-card .plan-buttons .btn-primary, .pricing .pricing-grid .pricing-card .plan-buttons .btn-secondary {
    padding: 10px 20px;
    font-size: 13px;
  }
  .pricing .compare-plans-link {
    margin-top: 40px;
    text-align: center;
  }
  .pricing .compare-plans-link a {
    color: #fefefe;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
  }
  .pricing .compare-plans-link a:hover {
    color: #9381ff;
  }
  .pricing .compare-plans-link a .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
  }
  .pricing .compare-plans-link a:hover .arrow {
    transform: translate(2px, -2px);
  }
  .pricing .character-section {
    margin-top: 80px;
    width: 100%;
    height: 400px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  .pricing .character-section img {
    position: absolute;
    width: 100%;
    bottom: -200px;
  }
  .faqs {
    background: #fefefe;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
  }
  .faqs h2 {
    color: #1a1a1a;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
  }
  .faqs .faq-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .faqs .faq-content .faq-left {
    width: 100%;
    height: 100%;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item {
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item:last-child {
    border-bottom: none;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question span {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question span .highlight {
    color: #9381ff;
    font-weight: 600;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question .faq-arrow {
    color: #484848;
    font-size: 20px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question .faq-arrow.material-icons {
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question:hover span {
    color: #9381ff;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-answer p {
    color: #484848;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
    font-family: "Inter", sans-serif;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item.active .faq-arrow {
    transform: rotate(180deg);
  }
  .faqs .faq-content .faq-left .faq-list .faq-item.active .faq-answer {
    max-height: 200px;
  }
  .faqs .faq-content .faq-right {
    width: 100%;
    min-height: 100%;
  }
  .faqs .faq-content .faq-right .cta-card {
    background: #f9f9f9;
    height: 100%;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
  }
  .faqs .faq-content .faq-right .cta-card h3 {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    font-family: "Inter", sans-serif;
  }
  .faqs .faq-content .faq-right .cta-card .btn-demo {
    background: #9381ff;
    color: #fefefe;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
    margin-bottom: 20px;
  }
  .faqs .faq-content .faq-right .cta-card .btn-demo:hover {
    background: #8675e8;
  }
  .faqs .faq-content .faq-right .cta-card .contact-info {
    color: #484848;
    font-size: 14px;
    font-family: "Inter", sans-serif;
  }
  .faqs .faq-content .faq-right .cta-card .contact-info .phone {
    color: #9381ff;
    font-weight: 600;
  }
  .footer {
    padding: 100px 10px;
  }
  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    border-top: 1px solid #e8e8e8;
  }
  .footer .container .start .logo {
    display: flex;
    gap: 8px;
  }
  .footer .container .start .logo img {
    width: 40px;
    height: 40px;
  }
  .footer .container .start .logo span {
    font-size: 24px;
    font-weight: 600;
    color: #9381ff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  .footer .container .end {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .footer .container .end .socials {
    display: flex;
    gap: 20px;
  }
  .footer .container .end .socials .social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #cdc5ff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .container .end .socials .social img {
    width: 24px;
    height: 24px;
  }
}
.features {
  background: #fefefe;
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.features h2 {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-size: 40px;
  font-weight: 700;
}
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.features .features-grid .feature-card {
  background: #fefefe;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  transition: all 0.3s ease;
}
.features .features-grid .feature-card h3 {
  background: linear-gradient(90deg, #1a1a1a, #9381ff, #1a1a1a);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-move 20s ease-in-out infinite;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
}
.features .features-grid .feature-card p {
  color: #484848;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  font-family: "Inter", sans-serif;
}

@media (max-width: 991px) {
  .features {
    padding: 80px 10px;
  }
  .features h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: left;
  }
  .features .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .features .features-grid .feature-card {
    padding: 25px;
  }
  .features .features-grid .feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .features .features-grid .feature-card p {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .features {
    padding: 60px 10px;
  }
  .features h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .features .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .features .features-grid .feature-card {
    padding: 20px;
  }
  .features .features-grid .feature-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .features .features-grid .feature-card p {
    font-size: 12px;
  }
  .faqs {
    padding: 60px 15px;
  }
  .faqs h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .faqs .faq-content {
    gap: 30px;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item {
    padding: 12px 0;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question span {
    font-size: 14px;
    line-height: 1.4;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question .faq-arrow {
    font-size: 16px;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-answer p {
    font-size: 13px;
    margin-top: 12px;
  }
  .faqs .faq-content .faq-right .cta-card {
    padding: 25px;
  }
  .faqs .faq-content .faq-right .cta-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .faqs .faq-content .faq-right .cta-card .btn-demo {
    padding: 10px 20px;
    font-size: 13px;
  }
  .faqs .faq-content .faq-right .cta-card .contact-info {
    font-size: 13px;
  }
}
@media (min-width: 1440px) {
  .container {
    width: 60%;
    margin: 0 auto;
  }
  .hero-img {
    width: 60%;
  }
}
@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes shape-float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -15px) rotate(90deg);
  }
  50% {
    transform: translate(-10px, -30px) rotate(180deg);
  }
  75% {
    transform: translate(-25px, -10px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #484848;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

.btn-primary {
  background: #9381ff;
  color: #fefefe;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.btn-primary .btn-text-container {
  position: relative;
  display: block;
  height: 24px;
  overflow: hidden;
}
.btn-primary span {
  color: #fefefe;
}
.btn-primary .btn-text-original,
.btn-primary .btn-text-hover {
  display: block;
  transition: transform 0.3s ease;
  line-height: 24px;
}
.btn-primary .btn-text-original {
  transform: translateY(0);
}
.btn-primary .btn-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}
.btn-primary:hover .btn-text-original {
  transform: translateY(-100%);
}
.btn-primary:hover .btn-text-hover {
  transform: translateY(0);
}

.badge {
  border: 1px solid #e8e8e8;
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Inter", sans-serif;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

@media (min-width: 991px) {
  .container {
    width: 80%;
    margin: 0 auto;
  }
  .hero {
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .hero .container {
    margin-top: 20vh;
    position: relative;
    z-index: 2;
  }
  .hero .container h1 {
    text-align: center;
  }
  .hero .container p {
    width: 50%;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
  }
  .hero .container .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }
  .hero .container .hero-buttons .secondary-link {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .hero .container .hero-buttons .secondary-link span {
    font-size: 20px;
  }
  .hero .container .hero-buttons .secondary-link:hover {
    color: #9381ff;
  }
  .hero .hero-img {
    margin: 40px auto;
    width: 80%;
    position: relative;
    z-index: 2;
  }
  .hero .hero-img img {
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    display: block;
    transform: perspective(1000px) rotateX(15deg) translateY(0);
    transition: transform 0.6s ease-out;
    will-change: transform;
  }
  .hero .hero-img .gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 350px;
    width: 200%;
    background: linear-gradient(to bottom, transparent, rgb(255, 255, 255) 60%, rgb(255, 255, 255));
    pointer-events: none;
  }
  .hero .hero-img.animate img {
    transform: perspective(1000px) rotateX(0deg) translateY(-20px);
  }
  .why-fittara {
    height: 100%;
    display: flex;
    margin-top: 20vh;
    align-items: center;
  }
  .why-fittara .why-grid {
    display: flex;
  }
  .why-fittara .why-grid .grid-main {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #e8e8e8;
    padding: 40px;
    border-radius: 12px 0px 0px 12px;
  }
  .why-fittara .why-grid .grid-main p {
    text-align: left;
    width: 100%;
    margin-top: 20px;
  }
  .why-fittara .why-grid .grid-main .gradient-text {
    background: linear-gradient(90deg, #1a1a1a, #ffd8be, #1a1a1a);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 20s ease-in-out infinite;
  }
  @keyframes gradient-move {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .why-fittara .why-grid .grid-second {
    width: 50%;
    border-radius: 0px 12px 12px 0px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .why-fittara .why-grid .grid-second .grid-content {
    border: 1px solid #e8e8e8;
    padding: 20px;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
  }
  .why-fittara .why-grid .grid-second .grid-content .icon {
    width: 40px;
    height: 40px;
  }
  .why-fittara .why-grid .grid-second .grid-content .text {
    height: 35%;
  }
  .why-fittara .why-grid .grid-second .grid-content p {
    text-align: left;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .who-fittara {
    height: 100%;
    padding: 100px 0px;
  }
  .who-fittara h2 {
    text-align: center;
  }
  .who-fittara h2 span {
    line-height: 0.9;
    font-size: 16rem;
    color: #9381ff;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(45deg, #9381ff, #ffd8be, #9381ff, #ffd8be);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 20s ease-in-out infinite;
  }
  @supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .who-fittara h2 span {
      color: #9381ff;
      background: none;
      animation: none;
    }
  }
  .who-fittara p {
    width: 50%;
    margin: 20px 0px;
  }
  .who-fittara .who-grid {
    display: flex;
    gap: 20px;
  }
  .who-fittara .who-grid .who-card {
    width: 50%;
    border: 1px solid #e8e8e8;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
  }
  .who-fittara .who-grid .who-card h4 {
    color: #fdfdfd;
    text-align: center;
    font-size: 24px;
  }
  .who-fittara .who-grid .who-card:nth-child(1) {
    background: url(./assets/established.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .who-fittara .who-grid .who-card:nth-child(2) {
    background: url(./assets/startup.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .mission {
    padding: 100px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mission .mission-card {
    width: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background-color: #fefefe;
    height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .mission .mission-card .gradient-text {
    background: linear-gradient(90deg, #1a1a1a, #ffd8be, #1a1a1a);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 20s ease-in-out infinite;
  }
  .mission .mission-card .card-text {
    padding: 20px;
    width: 40%;
  }
  .mission .mission-card .card-img {
    width: 60%;
    height: 100%;
    position: relative;
    overflow: visible;
    border-radius: 0 12px 12px 0;
  }
  .mission .mission-card .card-img::before {
    content: "";
    position: absolute;
    top: 70px;
    right: 70px;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #ded8ff, #ffd8be, #ded8ff, #ded8ff);
    background-size: 400% 400%;
    animation: gradient-move 8s linear infinite, shape-float 12s ease-in-out infinite;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.9;
    z-index: 1;
  }
  .mission .mission-card .card-img img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    border-radius: 0 12px 12px 0;
  }
  .pricing {
    background: #0e0e0e;
    padding: 100px 0px 0px 0px;
    position: relative;
  }
  .pricing h2 {
    color: #fefefe;
    text-align: center;
    margin-bottom: 60px;
  }
  .pricing .pricing-grid {
    display: flex;
    gap: 30px;
    margin-top: 20px;
  }
  .pricing .pricing-grid .pricing-card {
    width: 33.33%;
    background: #1a1a1a;
    border: 1px solid #181818;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .pricing .pricing-grid .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  .pricing .pricing-grid .pricing-card.popular {
    border: 2px solid #9381ff;
    transform: scale(1.05);
  }
  .pricing .pricing-grid .pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
  }
  .pricing .pricing-grid .pricing-card .plan-label {
    background: #0e0e0e;
    color: #fefefe;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    display: inline-block;
    margin-bottom: 20px;
  }
  .pricing .pricing-grid .pricing-card h5 {
    color: #fefefe;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  .pricing .pricing-grid .pricing-card h5 .plan-name-accent-growth {
    color: #e8c5ad;
  }
  .pricing .pricing-grid .pricing-card h5 .plan-name-accent-elite {
    color: #9381ff;
  }
  .pricing .pricing-grid .pricing-card .plan-description {
    color: #fcfcfc;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .pricing .pricing-grid .pricing-card .pricing-details {
    color: #fbfbfb;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  .pricing .pricing-grid .pricing-card .plan-buttons {
    display: flex;
    gap: 15px;
    flex-direction: column;
  }
  .pricing .pricing-grid .pricing-card .plan-buttons .btn-primary {
    background: #9381ff;
    color: #fefefe;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s ease;
  }
  .pricing .pricing-grid .pricing-card .plan-buttons .btn-primary:hover {
    background: #8675e8;
  }
  .pricing .pricing-grid .pricing-card .plan-buttons .btn-secondary {
    background: transparent;
    color: #fefefe;
    border: 1px solid #9381ff;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
  }
  .pricing .pricing-grid .pricing-card .plan-buttons .btn-secondary:hover {
    background: #9381ff;
    color: #fefefe;
  }
  .pricing .compare-plans-link {
    margin-top: 40px;
    text-align: left;
  }
  .pricing .compare-plans-link a {
    color: #fefefe;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
  }
  .pricing .compare-plans-link a:hover {
    color: #9381ff;
  }
  .pricing .compare-plans-link a .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
  }
  .pricing .compare-plans-link a:hover .arrow {
    transform: translate(2px, -2px);
  }
  .pricing .character-section {
    margin-top: 80px;
    width: 300px;
    height: 400px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .pricing .character-section img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .faqs {
    background: #fefefe;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
  }
  .faqs h2 {
    color: #1a1a1a;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
  }
  .faqs .faq-content {
    display: flex;
    gap: 20px;
  }
  .faqs .faq-content .faq-left {
    width: 50%;
    height: 100%;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item {
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item:last-child {
    border-bottom: none;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question span {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question span .highlight {
    color: #9381ff;
    font-weight: 600;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question .faq-arrow {
    color: #484848;
    font-size: 20px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question .faq-arrow.material-icons {
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question:hover span {
    color: #9381ff;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-answer p {
    color: #484848;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
    font-family: "Inter", sans-serif;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item.active .faq-arrow {
    transform: rotate(180deg);
  }
  .faqs .faq-content .faq-left .faq-list .faq-item.active .faq-answer {
    max-height: 200px;
  }
  .faqs .faq-content .faq-right {
    width: 50%;
    min-height: 100%;
  }
  .faqs .faq-content .faq-right .cta-card {
    background: #f9f9f9;
    height: 100%;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
  }
  .faqs .faq-content .faq-right .cta-card h3 {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    font-family: "Inter", sans-serif;
  }
  .faqs .faq-content .faq-right .cta-card .btn-demo {
    background: #9381ff;
    color: #fefefe;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
    margin-bottom: 20px;
  }
  .faqs .faq-content .faq-right .cta-card .btn-demo:hover {
    background: #8675e8;
  }
  .faqs .faq-content .faq-right .cta-card .contact-info {
    color: #484848;
    font-size: 14px;
    font-family: "Inter", sans-serif;
  }
  .faqs .faq-content .faq-right .cta-card .contact-info .phone {
    color: #9381ff;
    font-weight: 600;
  }
  .footer {
    padding: 100px 0px;
  }
  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    border-top: 1px solid #e8e8e8;
  }
  .footer .container .start .logo {
    display: flex;
    gap: 8px;
  }
  .footer .container .start .logo img {
    width: 40px;
    height: 40px;
  }
  .footer .container .start .logo span {
    font-size: 24px;
    font-weight: 600;
    color: #9381ff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  .footer .container .end {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .footer .container .end .socials {
    display: flex;
    gap: 20px;
  }
  .footer .container .end .socials .social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #cdc5ff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .container .end .socials .social img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 991px) {
  .container {
    width: 98%;
    margin: 0 auto;
  }
  .hero {
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .hero .container {
    margin-top: 20vh;
    position: relative;
    z-index: 2;
  }
  .hero .container h1 {
    text-align: center;
    font-size: 2rem;
  }
  .hero .container p {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
  }
  .hero .container .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0px;
  }
  .hero .container .hero-buttons .secondary-link {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .hero .container .hero-buttons .secondary-link span {
    font-size: 20px;
  }
  .hero .container .hero-buttons .secondary-link:hover {
    color: #9381ff;
  }
  .hero .hero-img {
    margin: 40px auto;
    width: 98%;
    position: relative;
    z-index: 2;
  }
  .hero .hero-img img {
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    display: block;
    transform: perspective(1000px) rotateX(15deg) translateY(0);
    transition: transform 0.6s ease-out;
    will-change: transform;
  }
  .hero .hero-img .gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 150px;
    width: 200%;
    background: linear-gradient(to bottom, transparent, rgb(255, 255, 255) 60%, rgb(255, 255, 255));
    pointer-events: none;
  }
  .hero .hero-img.animate img {
    transform: perspective(1000px) rotateX(0deg) translateY(-20px);
  }
  .why-fittara {
    height: 100%;
    display: flex;
    margin-top: 0vh;
    align-items: center;
    padding: 100px 20px;
  }
  .why-fittara .why-grid {
    display: flex;
    flex-direction: column;
  }
  .why-fittara .why-grid .grid-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #e8e8e8;
    padding: 20px;
    border-radius: 12px 12px 0px 0px;
  }
  .why-fittara .why-grid .grid-main p {
    text-align: left;
    width: 100%;
    margin-top: 20px;
  }
  .why-fittara .why-grid .grid-main .gradient-text {
    font-size: 32px;
    background: linear-gradient(90deg, #1a1a1a, #ffd8be, #1a1a1a);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 20s ease-in-out infinite;
  }
  @keyframes gradient-move {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .why-fittara .why-grid .grid-second {
    width: 100%;
    border-radius: 0px 12px 12px 0px;
    display: grid;
    grid-template-columns: 1fr;
  }
  .why-fittara .why-grid .grid-second .grid-content {
    border: 1px solid #e8e8e8;
    padding: 20px;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
  }
  .why-fittara .why-grid .grid-second .grid-content .icon {
    width: 40px;
    height: 40px;
  }
  .why-fittara .why-grid .grid-second .grid-content .text {
    height: 55%;
  }
  .who-fittara {
    height: 100%;
    padding: 100px 20px;
  }
  .who-fittara h2 {
    font-size: 1rem;
  }
  .who-fittara h2 span {
    line-height: 0.9;
    font-size: 6rem;
    color: #9381ff;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(45deg, #9381ff, #ffd8be, #9381ff, #ffd8be);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 20s ease-in-out infinite;
  }
  @supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .who-fittara h2 span {
      color: #9381ff;
      background: none;
      animation: none;
    }
  }
  .who-fittara .who-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .who-fittara .who-grid .who-card {
    width: 100%;
    border: 1px solid #e8e8e8;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
  }
  .who-fittara .who-grid .who-card h4 {
    color: #fdfdfd;
    text-align: center;
    font-size: 24px;
  }
  .who-fittara .who-grid .who-card:nth-child(1) {
    background: url(./assets/established.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .who-fittara .who-grid .who-card:nth-child(2) {
    background: url(./assets/startup.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .mission {
    padding: 100px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mission .mission-card {
    width: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background-color: #fefefe;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }
  .mission .mission-card .gradient-text {
    background: linear-gradient(90deg, #1a1a1a, #ffd8be, #1a1a1a);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 20s ease-in-out infinite;
  }
  .mission .mission-card .card-text {
    padding: 20px;
    width: 100%;
  }
  .mission .mission-card .card-img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
    border-radius: 0 12px 12px 0;
  }
  .mission .mission-card .card-img::before {
    content: "";
    position: absolute;
    top: 70px;
    right: 70px;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #ded8ff, #ffd8be, #ded8ff, #ded8ff);
    background-size: 400% 400%;
    animation: gradient-move 8s linear infinite, shape-float 12s ease-in-out infinite;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.9;
    z-index: 1;
  }
  .mission .mission-card .card-img img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    border-radius: 0 12px 12px 0;
  }
  .pricing {
    background: #0e0e0e;
    padding: 100px 10px 10px 10px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .pricing h2 {
    color: #fefefe;
    text-align: left;
    margin-bottom: 40px;
    font-size: 32px;
  }
  .pricing .pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  .pricing .pricing-grid .pricing-card {
    width: 100%;
    background: #121212;
    border: 1px solid #181818;
    padding: 25px;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .pricing .pricing-grid .pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  .pricing .pricing-grid .pricing-card.popular {
    border: 2px solid #9381ff;
    transform: none;
  }
  .pricing .pricing-grid .pricing-card.popular:hover {
    transform: translateY(-3px);
  }
  .pricing .pricing-grid .pricing-card .plan-label {
    background: #181818;
    color: #fefefe;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    display: inline-block;
    margin-bottom: 15px;
  }
  .pricing .pricing-grid .pricing-card h5 {
    color: #fefefe;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .pricing .pricing-grid .pricing-card h5 .plan-name-accent {
    color: #9381ff;
  }
  .pricing .pricing-grid .pricing-card .plan-description {
    color: #fcfcfc;
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  .pricing .pricing-grid .pricing-card .pricing-details {
    color: #fbfbfb;
    font-size: 13px;
    margin-bottom: 25px;
    line-height: 1.5;
  }
  .pricing .pricing-grid .pricing-card .plan-buttons {
    display: flex;
    gap: 12px;
    flex-direction: column;
  }
  .pricing .pricing-grid .pricing-card .plan-buttons .btn-primary, .pricing .pricing-grid .pricing-card .plan-buttons .btn-secondary {
    padding: 10px 20px;
    font-size: 13px;
  }
  .pricing .compare-plans-link {
    margin-top: 40px;
    text-align: center;
  }
  .pricing .compare-plans-link a {
    color: #fefefe;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
  }
  .pricing .compare-plans-link a:hover {
    color: #9381ff;
  }
  .pricing .compare-plans-link a .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
  }
  .pricing .compare-plans-link a:hover .arrow {
    transform: translate(2px, -2px);
  }
  .pricing .character-section {
    margin-top: 80px;
    width: 100%;
    height: 400px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  .pricing .character-section img {
    position: absolute;
    width: 100%;
    bottom: -200px;
  }
  .faqs {
    background: #fefefe;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
  }
  .faqs h2 {
    color: #1a1a1a;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
  }
  .faqs .faq-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .faqs .faq-content .faq-left {
    width: 100%;
    height: 100%;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item {
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item:last-child {
    border-bottom: none;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question span {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question span .highlight {
    color: #9381ff;
    font-weight: 600;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question .faq-arrow {
    color: #484848;
    font-size: 20px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question .faq-arrow.material-icons {
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question:hover span {
    color: #9381ff;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-answer p {
    color: #484848;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
    font-family: "Inter", sans-serif;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item.active .faq-arrow {
    transform: rotate(180deg);
  }
  .faqs .faq-content .faq-left .faq-list .faq-item.active .faq-answer {
    max-height: 200px;
  }
  .faqs .faq-content .faq-right {
    width: 100%;
    min-height: 100%;
  }
  .faqs .faq-content .faq-right .cta-card {
    background: #f9f9f9;
    height: 100%;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
  }
  .faqs .faq-content .faq-right .cta-card h3 {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    font-family: "Inter", sans-serif;
  }
  .faqs .faq-content .faq-right .cta-card .btn-demo {
    background: #9381ff;
    color: #fefefe;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
    margin-bottom: 20px;
  }
  .faqs .faq-content .faq-right .cta-card .btn-demo:hover {
    background: #8675e8;
  }
  .faqs .faq-content .faq-right .cta-card .contact-info {
    color: #484848;
    font-size: 14px;
    font-family: "Inter", sans-serif;
  }
  .faqs .faq-content .faq-right .cta-card .contact-info .phone {
    color: #9381ff;
    font-weight: 600;
  }
  .footer {
    padding: 100px 10px;
  }
  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    border-top: 1px solid #e8e8e8;
  }
  .footer .container .start .logo {
    display: flex;
    gap: 8px;
  }
  .footer .container .start .logo img {
    width: 40px;
    height: 40px;
  }
  .footer .container .start .logo span {
    font-size: 24px;
    font-weight: 600;
    color: #9381ff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  .footer .container .end {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .footer .container .end .socials {
    display: flex;
    gap: 20px;
  }
  .footer .container .end .socials .social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #cdc5ff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .container .end .socials .social img {
    width: 24px;
    height: 24px;
  }
}
.features {
  background: #fefefe;
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.features h2 {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-size: 40px;
  font-weight: 700;
}
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.features .features-grid .feature-card {
  background: #fefefe;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  transition: all 0.3s ease;
}
.features .features-grid .feature-card h3 {
  background: linear-gradient(90deg, #1a1a1a, #9381ff, #1a1a1a);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-move 20s ease-in-out infinite;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
}
.features .features-grid .feature-card p {
  color: #484848;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  font-family: "Inter", sans-serif;
}

@media (max-width: 991px) {
  .features {
    padding: 80px 10px;
  }
  .features h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: left;
  }
  .features .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .features .features-grid .feature-card {
    padding: 25px;
  }
  .features .features-grid .feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .features .features-grid .feature-card p {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .features {
    padding: 60px 10px;
  }
  .features h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .features .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .features .features-grid .feature-card {
    padding: 20px;
  }
  .features .features-grid .feature-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .features .features-grid .feature-card p {
    font-size: 12px;
  }
  .faqs {
    padding: 60px 15px;
  }
  .faqs h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .faqs .faq-content {
    gap: 30px;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item {
    padding: 12px 0;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question span {
    font-size: 14px;
    line-height: 1.4;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-question .faq-arrow {
    font-size: 16px;
  }
  .faqs .faq-content .faq-left .faq-list .faq-item .faq-answer p {
    font-size: 13px;
    margin-top: 12px;
  }
  .faqs .faq-content .faq-right .cta-card {
    padding: 25px;
  }
  .faqs .faq-content .faq-right .cta-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .faqs .faq-content .faq-right .cta-card .btn-demo {
    padding: 10px 20px;
    font-size: 13px;
  }
  .faqs .faq-content .faq-right .cta-card .contact-info {
    font-size: 13px;
  }
}
@media (min-width: 1440px) {
  .container {
    width: 60%;
    margin: 0 auto;
  }
  .hero-img {
    width: 60%;
  }
}
@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes shape-float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -15px) rotate(90deg);
  }
  50% {
    transform: translate(-10px, -30px) rotate(180deg);
  }
  75% {
    transform: translate(-25px, -10px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}
.logo, a {
  text-decoration: none;
}

@media (max-width: 991px) {
  .container-nav {
    width: 90%;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    position: fixed;
    z-index: 9999;
  }
  .container-nav nav {
    display: flex;
    margin: 0px;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .container-nav nav .menu {
    display: none;
  }
  .container-nav nav .logo {
    display: flex;
    gap: 8px;
  }
  .container-nav nav .logo img {
    width: 40px;
    height: 40px;
  }
  .container-nav nav .logo span {
    display: none;
  }
  .container-nav nav .nav-links {
    display: none;
  }
}
@media (min-width: 991px) {
  .container-nav {
    width: 80%;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    position: fixed;
    z-index: 9999;
  }
  .container-nav nav {
    display: flex;
    margin: 20px 0px;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .container-nav nav .menu {
    display: none;
  }
  .container-nav nav .logo {
    display: flex;
    gap: 8px;
  }
  .container-nav nav .logo img {
    width: 40px;
    height: 40px;
  }
  .container-nav nav .logo span {
    font-size: 24px;
    font-weight: 600;
    color: #9381ff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    margin: 0px;
    padding: 0px;
  }
  .container-nav nav .nav-links {
    display: flex;
    gap: 24px;
  }
  .container-nav nav .nav-links a {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
  }
  .container-nav nav .nav-links a:hover {
    color: #9381ff;
  }
}
@media (min-width: 1440px) {
  .container-nav {
    width: 60%;
    left: 50%;
    transform: translateX(-50%);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pricing {
  background-color: white;
}

.btn-text-container span {
  color: #fefefe;
}

.container {
  margin: 10vh auto;
}
.container .pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0px;
}
.container .pricing__grid .pricing-card {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.container .pricing__grid .pricing-card .pricing-card__header {
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}
.container .pricing__grid .pricing-card .pricing-card__header .header-content {
  height: 350px;
}
.container .pricing__grid .pricing-card .pricing-card__header .header-content .growth {
  color: #AF6B0C;
}
.container .pricing__grid .pricing-card .pricing-card__header .header-content .elite {
  color: #9381ff;
}
.container .pricing__grid .pricing-card .pricing-card__header .pricing-card__badge {
  border: 1px solid #e8e8e8;
  border-radius: 40px;
  padding: 8px 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Inter", sans-serif;
}
.container .pricing__grid .pricing-card .pricing-card__header .pricing-card__name {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-top: 10px;
  color: #1a1a1a;
  text-align: left;
}
.container .pricing__grid .pricing-card .pricing-card__header .pricing-card__price {
  margin-top: 20px;
}
.container .pricing__grid .pricing-card .pricing-card__features {
  margin-top: 20px;
  list-style: none;
  height: 100%;
}
.container .pricing__grid .pricing-card .pricing-card__features h6 {
  margin-top: 20px;
  margin-bottom: 0px;
}
.container .pricing__grid .pricing-card__feature {
  display: grid;
  grid-template-columns: 1rem 1fr;
  align-items: start;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  margin-top: 16px;
  color: #484848;
}
.container .pricing__grid .pricing-card__feature::before {
  content: "✓";
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  background: rgba(147, 129, 255, 0.18);
  border: 1px solid rgba(147, 129, 255, 0.35);
  margin-top: 0.15rem;
}
.container .pricing__grid .pricing-card .pricing-card__cta {
  margin-top: 40px;
}
.container .pricing__grid .pricing-card .pricing-card__cta .btn-primary {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media (max-width: 991px) {
  .container {
    margin: 10vh auto;
  }
  .container .pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0px;
  }
  .footer {
    padding: 100px 10px;
  }
  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    border-top: 1px solid #e8e8e8;
  }
  .footer .container .start .logo {
    display: flex;
    gap: 8px;
  }
  .footer .container .start .logo img {
    width: 40px;
    height: 40px;
  }
  .footer .container .start .logo span {
    font-size: 24px;
    font-weight: 600;
    color: #9381ff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  .footer .container .end {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .footer .container .end .socials {
    display: flex;
    gap: 20px;
  }
  .footer .container .end .socials .social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #cdc5ff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .container .end .socials .social img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 1200px) and (min-width: 991px) {
  .container {
    margin: 10vh auto;
    width: 90%;
  }
  .container .pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0px;
  }
  .container .pricing__grid .pricing-card {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .container .pricing__grid .pricing-card .pricing-card__header {
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
  }
  .container .pricing__grid .pricing-card .pricing-card__header .header-content {
    height: 300px;
  }
  .footer {
    padding: 100px 0px;
  }
  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    border-top: 1px solid #e8e8e8;
  }
  .footer .container .start .logo {
    display: flex;
    gap: 8px;
  }
  .footer .container .start .logo img {
    width: 40px;
    height: 40px;
  }
  .footer .container .start .logo span {
    font-size: 24px;
    font-weight: 600;
    color: #9381ff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  .footer .container .end {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .footer .container .end .socials {
    display: flex;
    gap: 20px;
  }
  .footer .container .end .socials .social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #cdc5ff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .container .end .socials .social img {
    width: 24px;
    height: 24px;
  }
}/*# sourceMappingURL=pricing.css.map */