@charset "UTF-8";
/* Main SCSS entry point */
/* CSS Reset for consistency */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* SCSS Variables */
/* Enhanced Reusable SCSS Mixins */
/* Layout styles for main containers */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Reusable Component Styles */
/* Reusable Card Components */
.card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.card__icon {
  margin-bottom: 1rem;
}
.card__icon img,
.card__icon svg {
  width: 48px;
  height: 48px;
}
.card__content {
  text-align: center;
}
.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000000;
}
.card__desc {
  font-size: 0.95rem;
  color: #000000;
  opacity: 0.7;
  line-height: 1.5;
}
.card--shadow {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.card--shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.card--bordered {
  border: 1px solid #f5f6fa;
}
.card--bordered:hover {
  border-color: #38e28f;
}
.card--hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.card--compact {
  padding: 1rem;
}
.card--compact .card__title {
  font-size: 1rem;
}
.card--compact .card__desc {
  font-size: 0.9rem;
}

/* Reusable Button Components */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.button--primary {
  background: #38e28f;
  color: #fff;
  box-shadow: 0 2px 8px rgba(56, 226, 143, 0.12);
}
.button--primary:hover {
  background: rgb(32.2815789474, 221.5184210526, 129.1263157895);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 226, 143, 0.2);
}
.button--secondary {
  background: transparent;
  color: #000000;
  border: 2px solid #f5f6fa;
}
.button--secondary:hover {
  background: #f5f6fa;
  color: #000000;
}
.button--outline {
  background: transparent;
  color: #38e28f;
  border: 2px solid #38e28f;
}
.button--outline:hover {
  background: #38e28f;
  color: #fff;
}
.button--ghost {
  background: transparent;
  color: #000000;
  opacity: 0.7;
}
.button--ghost:hover {
  opacity: 1;
  color: #38e28f;
}
.button--small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
.button--large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* Toggle Content Component */
.toggle-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(110deg, rgb(255, 249, 249) 53%, rgb(215, 240, 231) 99%);
  z-index: 1000;
  padding: 2rem 1.5rem;
  color: white;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}
.toggle-content .toggle-content__header-container-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: red;
}
.toggle-content.toggle-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.toggle-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%), radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}
.toggle-content__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.toggle-content__logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #54bd95;
}
.toggle-content .toggle-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000000;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.toggle-content .toggle-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}
.toggle-content .toggle-close-btn:active {
  transform: scale(0.95);
}
.toggle-content .toggle-close-btn span {
  line-height: 1;
}
.toggle-content__tagline {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 300;
}
.toggle-content__nav {
  margin-bottom: 2rem;
}
.toggle-content__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toggle-content__nav ul li {
  margin-bottom: 0.5rem;
}
.toggle-content__nav ul li a {
  display: block;
  color: #a6a6a6;
  text-decoration: none;
  font-size: 18px;
  line-height: 30px;
}
.toggle-content__nav ul li a:hover {
  color: #000;
}
.toggle-content__nav ul li a.active {
  color: #000;
}
.toggle-content__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}
.toggle-content__actions .toggle-content__login {
  color: #000000;
  background: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border: 2px solid rgba(84, 189, 149, 0.3);
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(5px);
}
.toggle-content__actions .toggle-content__login:hover {
  background: rgb(255, 255, 255);
  border-color: #54bd95;
  color: #54bd95;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(84, 189, 149, 0.3);
}
.toggle-content__actions .button--signup {
  background: #54bd95;
  color: white;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  border: none;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(84, 189, 149, 0.4);
}
.toggle-content__actions .button--signup:hover {
  background: rgb(68.4227848101, 177.2772151899, 135.8088607595);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(84, 189, 149, 0.5);
}
.toggle-content__extra {
  margin-top: auto;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
.toggle-content__extra h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: white;
}
.toggle-content__extra p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.toggle-content__stats {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  margin-top: 1rem;
}
.toggle-content__stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  flex: 1;
}
.toggle-content__stats .stat-item .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}
.toggle-content__stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}
@media (max-width: 768px) {
  .toggle-content {
    padding: 1.5rem 1rem;
  }
  .toggle-content__logo {
    font-size: 2rem;
  }
  .toggle-content__tagline {
    font-size: 0.9rem;
  }
  .toggle-content__nav ul li a {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
  }
  .toggle-content .toggle-close-btn {
    top: 0.5rem;
    right: 1rem;
    font-size: 1.8rem;
  }
  .toggle-content__stats {
    flex-direction: column;
    gap: 0.5rem;
  }
  .toggle-content__stats .stat-item {
    padding: 0.75rem;
  }
  .toggle-content__stats .stat-item .stat-number {
    font-size: 1.2rem;
  }
  .toggle-content__stats .stat-item .stat-label {
    font-size: 0.8rem;
  }
  .toggle-content__extra {
    padding: 1rem;
  }
  .toggle-content__extra h3 {
    font-size: 1.1rem;
  }
  .toggle-content__extra p {
    font-size: 0.9rem;
  }
}

/* Reusable Utility Classes */
.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #54bd95;
}

.text-accent {
  color: #38e28f;
}

.text-muted {
  opacity: 0.7;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.flex {
  display: flex;
}

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

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

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

.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 2rem;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hidden-tablet {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hidden-tablet-down {
    display: none;
  }
}
@media (max-width: 768px) {
  .hidden-tablet-down {
    display: none;
  }
}

.show-mobile {
  display: none;
}
@media (max-width: 768px) {
  .show-mobile {
    display: block;
  }
}

@media (max-width: 1024px) {
  .br-desktop-only {
    display: none;
  }
}
@media (max-width: 768px) {
  .br-desktop-only {
    display: none;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Header Section Styles */
@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }
}

.top-section {
  background-image: linear-gradient(105deg, hsl(155, 39%, 90%) 0%, hsl(135, 30%, 92%) 8%, hsl(104, 24%, 92%) 16%, hsl(78, 22%, 92%) 23%, hsl(55, 20%, 93%) 31%, hsl(40, 21%, 94%) 38%, hsl(30, 14%, 95%) 46%, hsl(41, 20%, 94%) 54%, hsl(61, 18%, 93%) 62%, hsl(88, 21%, 92%) 71%, hsl(122, 23%, 92%) 80%, hsl(150, 33%, 91%) 90%, hsl(166, 41%, 89%) 100%);
}

.header {
  background: transparent;
  padding-top: 40px;
  position: relative;
}
@media (max-width: 768px) {
  .header {
    padding: 1rem 0;
  }
}
.header .header__container {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .header .header__container {
    height: auto;
    flex-direction: row;
    gap: 1rem;
    padding: 1rem 0;
    flex-wrap: wrap;
  }
}
.header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-right: 16px;
  z-index: 1000;
}
@media (max-width: 768px) {
  .header .mobile-menu-toggle {
    display: flex;
  }
}
.header .mobile-menu-toggle .hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #54bd95;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.header .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.header .mobile-menu-toggle:hover .hamburger-line {
  background-color: #38e28f;
}
.header .header__logo {
  font-size: 50px;
  font-weight: 600;
  color: #54bd95;
  letter-spacing: 0.5px;
  line-height: 30px;
  z-index: 10;
  margin-right: auto;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header .header__logo {
    font-size: 1.5rem;
    padding-left: 16px;
  }
}
@media (max-width: 768px) {
  .header .header__nav {
    display: none;
  }
}
.header .header__nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
@media (max-width: 768px) {
  .header .header__nav ul {
    flex-direction: column;
    gap: 0;
    text-align: center;
    padding: 1rem 0;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .header .header__nav ul li {
    border-bottom: 1px solid rgba(84, 189, 149, 0.1);
  }
  .header .header__nav ul li:last-child {
    border-bottom: none;
  }
}
.header .header__nav ul li a {
  color: #a6a6a6;
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
  background: transparent !important;
  outline: none;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .header .header__nav ul li a {
    font-size: 1rem;
    display: block;
    padding: 1rem 0;
    margin: 0;
    transition: all 0.2s ease;
  }
}
.header .header__nav ul li a.active {
  color: #000000;
  font-weight: 500;
  background: transparent !important;
}
@media (max-width: 768px) {
  .header .header__nav ul li a.active {
    color: #54bd95;
    background: rgba(84, 189, 149, 0.05) !important;
  }
}
.header .header__nav ul li a:hover {
  opacity: 1;
  background: transparent !important;
}
@media (max-width: 768px) {
  .header .header__nav ul li a:hover {
    background: rgba(84, 189, 149, 0.1) !important;
    color: #54bd95;
  }
}
.header .header__nav ul li a:focus {
  background: transparent !important;
  outline: none;
}
.header .header__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  z-index: 10;
  margin-left: 130px;
}
@media (max-width: 1024px) {
  .header .header__actions {
    display: flex;
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .header .header__actions {
    display: none;
  }
}
.header .header__actions .header__login {
  color: #a6a6a6;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
@media (max-width: 768px) {
  .header .header__actions .header__login {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(84, 189, 149, 0.3);
    opacity: 1;
  }
  .header .header__actions .header__login:hover {
    background: rgba(84, 189, 149, 0.1);
  }
}
.header .header__actions .header__login:hover {
  opacity: 1;
}
.header .header__actions .button--signup {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.header .header__actions .button--signup:focus {
  outline: 2px solid #38e28f;
  outline-offset: 2px;
}
.header .header__actions .button--signup {
  background: #38e28f;
  color: #f8f8fa;
  font-weight: 500;
  border-radius: 10px;
  padding: 11px 10px 10px 10px;
  box-shadow: 0 2px 8px rgba(56, 226, 143, 0.12);
  font-size: 16px;
}
@media (max-width: 768px) {
  .header .header__actions .button--signup {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 6px;
  }
}
.header .header__actions .button--signup:hover {
  background: rgb(29.4121052632, 201.8278947368, 117.6484210526);
  transform: translateY(-2px);
}

/* Header Section Styles */
.hero {
  margin-top: 130px !important;
  background: transparent;
}
@media (max-width: 1400px) {
  .hero {
    margin-top: 100px;
  }
}
@media (max-width: 1024px) {
  .hero {
    margin-top: 80px !important;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
    margin-top: 60px !important;
  }
}
.hero .hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
@media (max-width: 1400px) {
  .hero .hero__container {
    gap: 25px;
  }
}
@media (max-width: 1024px) {
  .hero .hero__container {
    flex-direction: column;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .hero .hero__container {
    gap: 2rem;
  }
}
.hero .hero__content {
  max-width: 540px;
}
@media (max-width: 1400px) {
  .hero .hero__content {
    max-width: 480px;
  }
}
@media (max-width: 1024px) {
  .hero .hero__content {
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero .hero__content {
    text-align: center;
  }
}
.hero .hero__title {
  font-size: 80px;
  font-weight: 700;
  color: #191a15;
  line-height: 90px;
  margin-bottom: 30px;
}
@media (max-width: 1400px) {
  .hero .hero__title {
    font-size: 70px;
    line-height: 80px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1024px) {
  .hero .hero__title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .hero .hero__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.hero .hero__underline {
  margin-bottom: 50px;
}
.hero .hero__desc {
  font-size: 18px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 50px;
  font-weight: 500;
}
@media (max-width: 1400px) {
  .hero .hero__desc {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .hero .hero__desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .hero .hero__desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
.hero .hero__actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  position: relative;
}
@media (max-width: 1400px) {
  .hero .hero__actions {
    gap: 1.2rem;
  }
}
@media (max-width: 1024px) {
  .hero .hero__actions {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .hero .hero__actions {
    flex-direction: column;
    gap: 1rem;
  }
}
.hero .hero__actions .button--trial {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.hero .hero__actions .button--trial:focus {
  outline: 2px solid #38e28f;
  outline-offset: 2px;
}
.hero .hero__actions .button--trial {
  background: #54bd95;
  color: #fff;
  font-weight: 600;
  border-radius: 40px;
  padding: 20px 30px;
  box-shadow: 0 2px 8px rgba(56, 226, 143, 0.12);
}
@media (max-width: 1400px) {
  .hero .hero__actions .button--trial {
    padding: 18px 28px;
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .hero .hero__actions .button--trial {
    padding: 16px 24px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .hero .hero__actions .button--trial {
    padding: 14px 20px;
    font-size: 14px;
    width: 100%;
    max-width: 200px;
  }
}
.hero .hero__actions .button--trial:hover {
  background: rgb(62.3407594937, 161.5192405063, 123.7369620253);
  transform: translateY(-2px);
}
.hero .hero__actions .hero__demo {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.hero .hero__actions .hero__demo:focus {
  outline: 2px solid #38e28f;
  outline-offset: 2px;
}
.hero .hero__actions .hero__demo {
  color: #000000;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 1400px) {
  .hero .hero__actions .hero__demo {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .hero .hero__actions .hero__demo {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .hero .hero__actions .hero__demo {
    font-size: 14px;
  }
}
.hero .hero__actions .hero__demo:hover {
  opacity: 1;
}
.hero .hero__visual {
  min-width: 340px;
  position: relative;
}
@media (max-width: 1400px) {
  .hero .hero__visual {
    min-width: 300px;
  }
}
@media (max-width: 1024px) {
  .hero .hero__visual {
    min-width: 280px;
  }
}
@media (max-width: 768px) {
  .hero .hero__visual {
    min-width: 240px;
  }
}
.hero .hero__visual .hero__card-group {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
}
.hero .hero__visual .hero__db {
  position: absolute;
  top: 26px;
  right: -34px;
}
@media (max-width: 1400px) {
  .hero .hero__visual .hero__db {
    top: 22px;
    right: -28px;
  }
}
@media (max-width: 1024px) {
  .hero .hero__visual .hero__db {
    top: 18px;
    right: -22px;
  }
}
@media (max-width: 768px) {
  .hero .hero__visual .hero__db {
    top: 15px;
    right: -15px;
    height: auto;
  }
}
@media (max-width: 530px) {
  .hero .hero__visual .hero__db {
    top: 100px;
    right: 10px;
    height: auto;
  }
}
.hero .hero__visual .hero__db img {
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.hero .hero__visual .hero__card {
  position: absolute;
  bottom: 21px;
  right: -111px;
}
@media (max-width: 1400px) {
  .hero .hero__visual .hero__card {
    bottom: 18px;
    right: -60px;
  }
}
@media (max-width: 1024px) {
  .hero .hero__visual .hero__card {
    bottom: 15px;
    right: -70px;
  }
}
@media (max-width: 768px) {
  .hero .hero__visual .hero__card {
    bottom: 12px;
    right: -50px;
    height: auto;
  }
}
@media (max-width: 530px) {
  .hero .hero__visual .hero__card {
    bottom: 12px;
    right: 1px;
    height: auto;
  }
}
.hero .hero__visual .hero__card img {
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.hero .hero__visual .hero__income {
  position: absolute;
  bottom: 21px;
  left: -73px;
}
@media (max-width: 1400px) {
  .hero .hero__visual .hero__income {
    bottom: 18px;
    left: -62px;
  }
}
@media (max-width: 1024px) {
  .hero .hero__visual .hero__income {
    bottom: 15px;
    left: -45px;
  }
}
@media (max-width: 768px) {
  .hero .hero__visual .hero__income {
    bottom: 12px;
    left: -35px;
    height: auto;
  }
}
@media (max-width: 530px) {
  .hero .hero__visual .hero__income {
    bottom: -32px;
    left: 10px;
    height: auto;
  }
}
.hero .hero__visual .hero__income img {
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.hero .hero__visual .hero__chat {
  position: absolute;
  bottom: -28px;
  right: 31px;
}
@media (max-width: 1400px) {
  .hero .hero__visual .hero__chat {
    bottom: -24px;
    right: 26px;
  }
}
@media (max-width: 1024px) {
  .hero .hero__visual .hero__chat {
    bottom: -20px;
    right: 22px;
  }
}
@media (max-width: 768px) {
  .hero .hero__visual .hero__chat {
    bottom: -16px;
    right: 18px;
    height: auto;
  }
}
.hero .hero__visual .hero__chat img {
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.hero .hero__visual .hero__amount {
  position: absolute;
  top: 30px;
  left: -182px;
}
@media (max-width: 1400px) {
  .hero .hero__visual .hero__amount {
    top: 25px;
    left: -150px;
  }
}
@media (max-width: 1024px) {
  .hero .hero__visual .hero__amount {
    top: 20px;
    left: -120px;
  }
}
@media (max-width: 768px) {
  .hero .hero__visual .hero__amount {
    top: 16px;
    left: -50px;
    height: auto;
  }
}
@media (max-width: 530px) {
  .hero .hero__visual .hero__amount {
    top: 16px;
    left: 16px;
    height: auto;
  }
}
.hero .hero__visual .hero__amount img {
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.hero .hero__visual .hero__check {
  position: absolute;
  top: 173px;
  left: -65px;
}
@media (max-width: 1400px) {
  .hero .hero__visual .hero__check {
    top: 148px;
    left: -55px;
  }
}
@media (max-width: 1024px) {
  .hero .hero__visual .hero__check {
    top: 125px;
    left: -45px;
  }
}
@media (max-width: 768px) {
  .hero .hero__visual .hero__check {
    top: 100px;
    left: -35px;
    height: auto;
  }
}
@media (max-width: 530px) {
  .hero .hero__visual .hero__check {
    top: 200px;
    left: 10px;
    height: auto;
  }
}
.hero .hero__visual .hero__check img {
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.hero .hero__visual .hero__visual__image {
  max-width: 100%;
  height: 558px;
  width: 702px;
  position: absolute;
  top: 0px;
  right: -40px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
@media (max-width: 1400px) {
  .hero .hero__visual .hero__visual__image {
    height: 480px;
    width: 600px;
    right: -35px;
  }
}
@media (max-width: 1024px) {
  .hero .hero__visual .hero__visual__image {
    width: 100%;
    max-width: 500px;
    height: auto;
    position: relative;
    right: 0;
    top: 0;
  }
}
@media (max-width: 768px) {
  .hero .hero__visual .hero__visual__image {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}
.hero .hero__visual .hero__image-bg {
  width: 320px;
  height: 340px;
  background: #ffd600;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  margin-left: 60px;
  margin-top: 30px;
  box-shadow: 0 4px 32px rgba(255, 214, 0, 0.12);
}
@media (max-width: 1400px) {
  .hero .hero__visual .hero__image-bg {
    width: 280px;
    height: 300px;
    margin-left: 50px;
    margin-top: 25px;
  }
}
@media (max-width: 1024px) {
  .hero .hero__visual .hero__image-bg {
    width: 250px;
    height: 280px;
    margin-left: 40px;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .hero .hero__visual .hero__image-bg {
    width: 200px;
    height: 220px;
    margin-left: 30px;
    margin-top: 15px;
  }
}

.stats {
  padding: 130px 0px;
  background: transparent;
}
.stats .stats__container {
  text-align: center;
}
.stats .stats__title {
  font-size: 40px;
  font-weight: 700;
  color: #191a15;
  margin-bottom: 60px;
}
.stats .stats__partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.stats .stats__partner {
  display: flex;
  align-items: center;
}
.stats .stats__partner img {
  height: 32px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.stats .stats__partner img:hover {
  opacity: 1;
}

.support {
  padding: 60px 0 70px 0;
  background: #f9f8fe;
}
@media (max-width: 1024px) {
  .support {
    padding: 50px 0 60px 0;
  }
}
@media (max-width: 768px) {
  .support {
    padding: 40px 0 50px 0;
  }
}
.support .support__container {
  display: flex;
  gap: 27px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .support .support__container {
    flex-direction: column;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .support .support__container {
    gap: 2.5rem;
  }
}
.support .support__main {
  max-width: 644px;
}
@media (max-width: 1024px) {
  .support .support__main {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .support .support__main {
    text-align: center;
  }
}
.support .support__title {
  font-size: 50px;
  font-weight: 600;
  color: #191a15;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .support .support__title {
    font-size: 40px;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .support .support__title {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
  }
}
.support .support__desc {
  font-size: 1rem;
  color: #a6a6a6;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 73px;
}
@media (max-width: 1024px) {
  .support .support__desc {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .support .support__desc {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 40px;
  }
}
.support .support__ratings {
  display: flex;
  gap: 80px;
}
@media (max-width: 1024px) {
  .support .support__ratings {
    gap: 60px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .support .support__ratings {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}
.support .support__rating {
  background: transparent;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
@media (max-width: 768px) {
  .support .support__rating {
    align-items: center;
    text-align: center;
  }
}
.support .support__rating .support__stars {
  color: #ffd600;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  gap: 4px;
}
@media (max-width: 768px) {
  .support .support__rating .support__stars {
    font-size: 20px;
    gap: 2px;
  }
}
.support .support__rating .support__stars img {
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .support .support__rating .support__stars img {
    width: 20px;
    height: 20px;
  }
}
.support .support__rating .support__score {
  font-size: 18px;
  font-weight: 700;
  color: #191a15;
  padding: 18px 0px;
}
@media (max-width: 1024px) {
  .support .support__rating .support__score {
    font-size: 16px;
    padding: 15px 0;
  }
}
@media (max-width: 768px) {
  .support .support__rating .support__score {
    font-size: 15px;
    padding: 12px 0;
  }
}
.support .support__rating .support__brand {
  font-size: 18px;
  color: #a6a6a6;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .support .support__rating .support__brand {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .support .support__rating .support__brand {
    font-size: 15px;
  }
}
.support .support__features {
  display: flex;
  flex-direction: column;
  gap: 21px;
  min-width: 320px;
}
@media (max-width: 1024px) {
  .support .support__features {
    min-width: 100%;
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .support .support__features {
    gap: 20px;
  }
}
.support .support__features .support__feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .support .support__features .support__feature {
    gap: 1rem;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .support .support__features .support__feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }
}
.support .support__features .support__feature img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .support .support__features .support__feature img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .support .support__features .support__feature img {
    width: 48px;
    height: 48px;
  }
}
.support .support__features .support__feature h3 {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #191a15;
}
@media (max-width: 1024px) {
  .support .support__features .support__feature h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .support .support__features .support__feature h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }
}
.support .support__features .support__feature p {
  font-size: 18px;
  color: #a6a6a6;
  line-height: 30px;
}
@media (max-width: 1024px) {
  .support .support__features .support__feature p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  .support .support__features .support__feature p {
    font-size: 15px;
    line-height: 24px;
  }
}
.support .support__features .support__feature .support__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f5f6fa;
  margin-top: 0.2rem;
}
@media (max-width: 768px) {
  .support .support__features .support__feature .support__icon {
    margin-top: 0;
  }
}
.support .support__features .support__feature .support__icon--publishing {
  background: url("../assets/publishing.svg") no-repeat center/24px, #f5f6fa;
}
.support .support__features .support__feature .support__icon--analytics {
  background: url("../assets/analytics.svg") no-repeat center/24px, #f5f6fa;
}
.support .support__features .support__feature .support__icon--engagement {
  background: url("../assets/engagement.svg") no-repeat center/24px, #f5f6fa;
}

.features {
  padding: 130px 0 80px 0;
  background: transparent;
}
@media (max-width: 1024px) {
  .features {
    text-align: center;
    padding: 100px 0 60px 0;
  }
}
.features .features__container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.features .features__header {
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 111px;
}
@media (max-width: 1024px) {
  .features .features__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.features .features__title {
  font-size: 48px;
  font-weight: 600;
  color: #191a15;
  margin-bottom: 0.5rem;
  max-width: 331px;
}
@media (max-width: 1024px) {
  .features .features__title {
    max-width: 100%;
    font-size: 45px;
    margin: auto;
  }
}
@media (max-width: 768px) {
  .features .features__title {
    font-size: 35px;
    width: 100%;
    text-align: center;
  }
}
.features .features__desc {
  font-size: 18px;
  color: #a6a6a6;
  line-height: 30px;
  max-width: 461px;
}
@media (max-width: 1024px) {
  .features .features__desc {
    max-width: 600px;
    margin: auto;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .features .features__desc {
    max-width: 100%;
  }
}
.features .button--getstarted {
  background: #54bd95;
  color: #fff;
  font-weight: 500;
  border-radius: 40px;
  padding: 18px 31px;
  box-shadow: 0 2px 8px rgba(56, 226, 143, 0.12);
  transition: background 0.2s;
  white-space: nowrap;
  font-size: 18px;
  line-height: 30px;
}
.features .button--getstarted:hover {
  background: rgb(29.4121052632, 201.8278947368, 117.6484210526);
}
@media (max-width: 1024px) {
  .features .button--getstarted {
    margin: auto;
  }
}
.features .features__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 44px;
  justify-content: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .features .features__cards {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .features .features__cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.features .features__card {
  background: transparent;
  min-width: 260px;
  max-width: 364px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .features .features__card {
    min-width: 80%;
    max-width: 100%;
    margin: auto;
  }
}
.features .features__card h3 {
  font-size: 30px;
  font-weight: 600;
  margin: 30px 0px;
  text-align: left;
  width: 100%;
}
.features .features__card p {
  font-size: 18px;
  color: #a6a6a6;
  line-height: 30px;
  text-align: left;
}
.features .features__card img {
  width: 100%;
}
.features .features__card .features__card-img {
  width: 100px;
  height: 80px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: #f5f6fa;
}
.features .features__card .features__card-img--collab {
  background: url("../assets/collab.svg") no-repeat center/60px, #f5f6fa;
}
.features .features__card .features__card-img--cloud {
  background: url("../assets/cloud.svg") no-repeat center/60px, #f5f6fa;
}
.features .features__card .features__card-img--analytics {
  background: url("../assets/daily-analytics.svg") no-repeat center/60px, #f5f6fa;
}

.benefits {
  padding: 50px 0 50px 0;
  background: transparent;
}
.benefits .benefits__container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .benefits .benefits__container {
    flex-direction: column;
    gap: 2rem;
  }
}
.benefits .benefits__main {
  max-width: 500px;
}
@media (max-width: 1024px) {
  .benefits .benefits__main {
    max-width: 100%;
  }
}
.benefits .benefits__title {
  font-size: 50px;
  font-weight: 700;
  color: #191a15;
  margin-bottom: 50px;
  max-width: 429px;
}
@media (max-width: 1024px) {
  .benefits .benefits__title {
    font-size: 40px;
    margin-bottom: 30px;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
}
.benefits .benefits__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.benefits .benefits__list li {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 30px;
  gap: 20px;
  color: #191a15;
  font-weight: 500;
}
.benefits .benefits__visual {
  position: relative;
  min-width: 340px;
}
@media (max-width: 1024px) {
  .benefits .benefits__visual {
    text-align: center;
  }
}
.benefits .benefits__visual .benefits__image-bg {
  max-width: 450px;
  max-height: 529px;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .benefits .benefits__visual .benefits__image-bg {
    max-width: 100%;
    margin: auto;
  }
}
.benefits .benefits__visual .benefits__extra-saving {
  position: absolute;
  top: 36px;
  left: -200px;
}
@media (max-width: 1024px) {
  .benefits .benefits__visual .benefits__extra-saving {
    left: 2%;
    top: 1%;
  }
}
.benefits .benefits__visual .benefits__income {
  position: absolute;
  top: 121px;
  right: -78px;
}
@media (max-width: 1024px) {
  .benefits .benefits__visual .benefits__income {
    right: 15%;
    top: 50%;
  }
}
.benefits .benefits__visual .benefits__transfer {
  position: absolute;
  bottom: -23px;
  left: -113px;
}
@media (max-width: 1024px) {
  .benefits .benefits__visual .benefits__transfer {
    left: 10%;
    bottom: -5%;
  }
}
.benefits .benefits__visual .benefits__image {
  position: absolute;
  left: -73px;
  top: 275px;
}
@media (max-width: 1024px) {
  .benefits .benefits__visual .benefits__image {
    left: 20%;
  }
}

.pricing {
  padding: 25px 20px 130px 20px;
  background: transparent;
}
@media (max-width: 1024px) {
  .pricing {
    padding: 40px 20px 80px 20px;
  }
}
@media (max-width: 768px) {
  .pricing {
    padding: 30px 15px 60px 15px;
  }
}
.pricing__container {
  text-align: center;
}
.pricing__title {
  font-size: 50px;
  font-weight: 700;
  color: #191a15;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .pricing__title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .pricing__title {
    font-size: 1.75rem;
  }
}
.pricing__title {
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .pricing__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .pricing__title {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.3;
  }
}
.pricing__description {
  font-size: 18px;
  line-height: 30px;
  color: #a6a6a6;
}
@media (max-width: 768px) {
  .pricing__description {
    font-size: 0.9rem;
  }
}
.pricing__description {
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .pricing__description {
    margin-bottom: 35px;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .pricing__description {
    margin-bottom: 30px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 10px;
  }
}
.pricing__toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 89px;
  background: #ffffff;
  border-radius: 10px;
  padding: 4px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .pricing__toggle {
    margin-bottom: 60px;
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .pricing__toggle {
    margin-bottom: 40px;
    max-width: 280px;
    gap: 5px;
    padding: 3px;
  }
}
.pricing__toggle-btn {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.pricing__toggle-btn:focus {
  outline: 2px solid #38e28f;
  outline-offset: 2px;
}
.pricing__toggle-btn {
  padding: 13px 40px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  color: #000000;
  border: none;
  flex: 1;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .pricing__toggle-btn {
    padding: 12px 30px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .pricing__toggle-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}
.pricing__toggle-btn--active {
  background: #54bd95;
  color: #ffffff;
  font-weight: 600;
}
.pricing__toggle-btn:hover:not(.pricing__toggle-btn--active) {
  background: rgba(84, 189, 149, 0.1);
}
.pricing__cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .pricing__cards {
    gap: 24px;
    max-width: 100%;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .pricing__cards {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}
.pricing__card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 40px 20px 25px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  flex: 0 1 330px;
  min-width: 330px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .pricing__card {
    flex: 0 1 300px;
    min-width: 280px;
    padding: 35px 18px 20px 18px;
  }
}
@media (max-width: 768px) {
  .pricing__card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    width: 100%;
    padding: 30px 20px 20px 20px;
    margin: 0 auto;
  }
}
.pricing__card--popular {
  transform: scale(1.05);
  background: #54bd95;
  color: #ffffff;
  padding: 40px 0px 0px 0px;
}
@media (max-width: 1024px) {
  .pricing__card--popular {
    transform: scale(1.02);
    padding: 35px 0px 0px 0px;
  }
}
@media (max-width: 768px) {
  .pricing__card--popular {
    transform: none;
    padding: 30px 0px 0px 0px;
    margin: 20px auto;
  }
}
.pricing__card--popular .pricing__overlay-container {
  position: relative;
  overflow: hidden;
}
.pricing__card--popular .pricing__semicircle {
  position: absolute;
  width: 600px;
  height: 600px;
  background: #6bc2a1;
  border-radius: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 1024px) {
  .pricing__card--popular .pricing__semicircle {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 768px) {
  .pricing__card--popular .pricing__semicircle {
    width: 500px;
    height: 500px;
  }
}
.pricing__card--popular .pricing__semicircle_body {
  background: transparent;
  padding: 0px 20px 25px 20px;
}
@media (max-width: 1024px) {
  .pricing__card--popular .pricing__semicircle_body {
    padding: 0px 18px 20px 18px;
  }
}
@media (max-width: 768px) {
  .pricing__card--popular .pricing__semicircle_body {
    padding: 0px 20px 20px 20px;
  }
}
.pricing__card--popular .pricing__card-header,
.pricing__card--popular .price__type,
.pricing__card--popular .pricing__card-subtitle,
.pricing__card--popular .price__features li {
  color: #ffffff;
}
.pricing__card--popular .price__amount {
  color: #ffffff;
}
.pricing__card--popular .price__currency {
  color: #ffffff;
}
.pricing__card--popular .price__period {
  background: #85dab9;
  color: #ffffff;
  font-size: 14px;
  line-height: 30px;
  padding: 5px 10px 5px 11px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .pricing__card--popular .price__period {
    font-size: 12px;
    line-height: 24px;
    padding: 4px 8px;
  }
}
.pricing__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .pricing__card:hover {
    transform: translateY(-4px);
  }
}
.pricing__card:hover.pricing__card--popular {
  transform: scale(1.05) translateY(-8px);
}
@media (max-width: 1024px) {
  .pricing__card:hover.pricing__card--popular {
    transform: scale(1.02) translateY(-6px);
  }
}
@media (max-width: 768px) {
  .pricing__card:hover.pricing__card--popular {
    transform: translateY(-4px);
  }
}
.pricing__card-subtitle {
  font-size: 18px;
  color: #a6a6a6;
  line-height: 27px;
  font-weight: 500;
  margin-bottom: 13px;
}
@media (max-width: 1024px) {
  .pricing__card-subtitle {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .pricing__card-subtitle {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 10px;
  }
}
.pricing__card-price:not(.pricing__card-price-popular) {
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 1024px) {
  .pricing__card-price:not(.pricing__card-price-popular) {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .pricing__card-price:not(.pricing__card-price-popular) {
    margin-bottom: 20px;
  }
}
.pricing__card-price-popular {
  margin-bottom: 15px;
  position: relative;
}
@media (max-width: 768px) {
  .pricing__card-price-popular {
    margin-bottom: 12px;
  }
}

.price__type {
  font-size: 30px;
  font-weight: 600;
  color: #191a15;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .price__type {
    font-size: 26px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .price__type {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
.price__currency {
  font-size: 18px;
  font-weight: 600;
  color: #a6a6a6;
  vertical-align: top;
}
@media (max-width: 1024px) {
  .price__currency {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .price__currency {
    font-size: 14px;
  }
}
.price__amount {
  font-size: 50px;
  font-weight: 700;
  color: #191a15;
  line-height: 1;
}
@media (max-width: 1024px) {
  .price__amount {
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .price__amount {
    font-size: 40px;
  }
}
.pricing__card--popular .price__amount {
  color: #ffffff;
}
.price__period {
  display: block;
  font-size: 12px;
  color: #ffffff;
  background: #54bd95;
  padding: 4px 12px;
  border-radius: 10px;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  font-weight: 500;
}
@media (max-width: 768px) {
  .price__period {
    font-size: 11px;
    padding: 3px 10px;
    margin-top: 12px;
  }
}
.pricing__card:not(.pricing__card--popular) .price__period {
  background: #54bd95;
  color: #ffffff;
}
.price__features_container:not(.price__features_container--popular) {
  background: #f9fafb;
  border-radius: 10px;
  padding: 26px 31px 25px 37px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .price__features_container:not(.price__features_container--popular) {
    padding: 22px 26px 20px 30px;
  }
}
@media (max-width: 768px) {
  .price__features_container:not(.price__features_container--popular) {
    padding: 20px 25px 18px 28px;
  }
}
.price__features_container--popular {
  background: #fff;
  border-radius: 10px;
  padding: 26px 31px 25px 37px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .price__features_container--popular {
    padding: 22px 26px 20px 30px;
  }
}
@media (max-width: 768px) {
  .price__features_container--popular {
    padding: 20px 25px 18px 28px;
  }
}
.price__features {
  list-style: none;
  text-align: left;
  flex-grow: 1;
}
.price__features li {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .price__features li {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .price__features li {
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    white-space: normal;
    line-height: 1.4;
  }
}
.price__features li::before {
  content: "✓";
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  width: 20px;
  height: 20px;
  background: #54bd95;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .price__features li::before {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .price__features li::before {
    width: 16px;
    height: 16px;
    font-size: 11px;
  }
}
.pricing__card--popular .price__features li::before {
  color: #ffffff;
  background: #54bd95;
}
.pricing__card--popular .price__features li {
  color: #191a15;
}
.price__button {
  width: 100%;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.price__button:focus {
  outline: 2px solid #38e28f;
  outline-offset: 2px;
}
.price__button {
  padding: 16px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(56, 226, 143, 0.15);
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .price__button {
    padding: 14px 20px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .price__button {
    padding: 12px 18px;
    font-size: 13px;
  }
}
.price__button--primary {
  background: #54bd95;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(56, 226, 143, 0.25);
}
.price__button--primary:hover {
  background: #ffffff;
  color: #54bd95;
  box-shadow: 0 6px 20px rgba(56, 226, 143, 0.35);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .price__button--primary:hover {
    transform: translateY(-1px);
  }
}
.price__button--secondary {
  background: #ffffff;
  color: #54bd95;
  box-shadow: 0 4px 12px rgba(56, 226, 143, 0.1);
}
.price__button--secondary:hover {
  background: #54bd95;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(56, 226, 143, 0.25);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .price__button--secondary:hover {
    transform: translateY(-1px);
  }
}

/* Testimonials Section Styles */
.testimonials {
  padding: 130px 0px;
  background: #161c28;
  color: #fff;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
}
.testimonials__container {
  display: flex;
  gap: 101px;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .testimonials__container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
}
.testimonials__main {
  max-width: 470px;
  flex: 1;
}
@media (max-width: 1024px) {
  .testimonials__main {
    max-width: 100%;
    text-align: center;
  }
}
.testimonials__title {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  line-height: 100%;
}
@media (max-width: 1024px) {
  .testimonials__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .testimonials__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.testimonials__desc {
  font-size: 18px;
  color: #a6a6a6;
  margin-bottom: 42px;
  line-height: 30px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .testimonials__desc {
    font-size: 14px;
    margin-bottom: 32px;
  }
}
.testimonials .quote-logo {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .testimonials .quote-logo {
    justify-content: flex-start;
  }
}
.testimonials .quote-logo img {
  width: 40px;
  height: 40px;
}
.testimonials__quote {
  font-size: 18px;
  color: #a6a6a6;
  margin-top: 40px;
  margin-bottom: 32px;
  font-style: normal;
  line-height: 30px;
  font-weight: 500;
  position: relative;
}
@media (max-width: 768px) {
  .testimonials__quote {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.testimonials__author {
  display: block;
  margin-top: 40px;
  font-size: 18px;
  color: #a6a6a6;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
@media (max-width: 768px) {
  .testimonials__author {
    font-size: 14px;
    margin-top: 16px;
  }
}
.testimonials__avatars {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .testimonials__avatars {
    gap: 12px;
    margin-top: 32px;
    justify-content: center;
  }
}
.testimonials__avatars img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .testimonials__avatars img {
    width: 40px;
    height: 40px;
  }
}
.testimonials__play {
  background: #54bd95;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 8px;
}
@media (max-width: 768px) {
  .testimonials__play {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.testimonials__play:hover {
  background: rgb(68.4227848101, 177.2772151899, 135.8088607595);
  transform: scale(1.1);
}
.testimonials__play span {
  margin-left: 2px;
}
.testimonials__form {
  background: #222938;
  border-radius: 20px;
  padding: 40px 86px 66px 86px;
  min-width: 360px;
  max-width: 612px;
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .testimonials__form {
    min-width: 320px;
    max-width: 500px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .testimonials__form {
    padding: 32px 24px;
    min-width: 280px;
  }
}
.testimonials__form form {
  display: flex;
  flex-direction: column;
}
.testimonials__form img {
  width: 73px;
  margin: 0 auto 10px auto;
}
.testimonials__form h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .testimonials__form h3 {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.testimonials__form label {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .testimonials__form label {
    font-size: 13px;
  }
}
.testimonials__form input,
.testimonials__form textarea {
  background: #fff;
  color: #222938;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 16px;
  font-size: 14px;
  margin-bottom: 20px;
  resize: none;
  font-family: inherit;
  transition: border-color 0.2s ease;
}
@media (max-width: 768px) {
  .testimonials__form input,
  .testimonials__form textarea {
    padding: 14px;
    font-size: 13px;
  }
}
.testimonials__form input::placeholder,
.testimonials__form textarea::placeholder {
  color: #a6a6a6;
}
.testimonials__form input:focus,
.testimonials__form textarea:focus {
  outline: none;
  border-color: #54bd95;
}
.testimonials__form .quote-logo {
  text-align: left;
}
.testimonials__form .quote-logo img {
  width: 40px;
  height: 40px;
}
.testimonials__form textarea {
  min-height: 80px;
  resize: vertical;
}
.testimonials__form .button--demo {
  background: #54bd95;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 21px 0px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(56, 226, 143, 0.2);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .testimonials__form .button--demo {
    padding: 14px 20px;
    font-size: 14px;
  }
}
.testimonials__form .button--demo:hover {
  background: rgb(68.4227848101, 177.2772151899, 135.8088607595);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 226, 143, 0.3);
}
.testimonials__form-link {
  color: #ffffff;
  font-size: 14px;
  margin-top: 16px;
  text-align: right;
}
@media (max-width: 768px) {
  .testimonials__form-link {
    font-size: 13px;
    margin-top: 12px;
  }
}
.testimonials__form-link a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.testimonials__form-link a:hover {
  opacity: 0.8;
}

/* Footer Section Styles */
.footer {
  background: #161c28;
  color: #fff;
  padding: 40px 0 40px 0;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 30px 0;
  }
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 1024px) {
  .footer__container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }
}
.footer__main {
  max-width: 320px;
}
@media (max-width: 1024px) {
  .footer__main {
    max-width: 100%;
  }
}
.footer__logo {
  font-size: 50px;
  font-weight: 600;
  color: #54bd95;
  margin-bottom: 30px;
  line-height: 30px;
}
@media (max-width: 768px) {
  .footer__logo {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
.footer__tagline {
  font-size: 18px;
  color: #a6a6a6;
  line-height: 30px;
  margin-bottom: 30px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .footer__tagline {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
.footer__newsletter {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 30px;
  width: 420px;
  position: relative;
}
@media (max-width: 768px) {
  .footer__newsletter {
    max-width: 100%;
  }
}
.footer__newsletter input {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 2px solid #a6a6a6;
  border-radius: 50px;
  padding: 15px 60px 15px 20px;
  font-size: 18px;
  width: 100%;
  transition: border-color 0.2s ease;
}
.footer__newsletter input::placeholder {
  color: #a6a6a6;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
}
.footer__newsletter input:focus {
  outline: none;
  border-color: #54bd95;
}
@media (max-width: 768px) {
  .footer__newsletter input {
    padding: 14px 55px 14px 18px;
    font-size: 13px;
  }
}
.footer__newsletter-btn {
  background: #54bd95;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
}
.footer__newsletter-btn:hover {
  background: rgb(68.4227848101, 177.2772151899, 135.8088607595);
  transform: translateY(-50%) scale(1.05);
}
@media (max-width: 768px) {
  .footer__newsletter-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
    right: 3px;
  }
}
.footer__copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 13px;
  }
}
.footer__links {
  display: flex;
  gap: 80px;
  flex: 1;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .footer__links {
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .footer__links {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
}
.footer__col {
  min-width: 140px;
}
.footer__col h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .footer__col h4 {
    font-size: 15px;
    margin-bottom: 16px;
  }
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__col ul li {
  margin-bottom: 12px;
}
.footer__col ul li:last-child {
  margin-bottom: 0;
}
.footer__col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.footer__col ul li a:hover {
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .footer__col ul li a {
    font-size: 13px;
  }
}
.footer__legal {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .footer__legal {
    margin-top: 30px;
    padding-top: 24px;
    font-size: 13px;
  }
}
.footer__legal a {
  color: #54bd95;
  text-decoration: none;
  margin: 0 4px;
  transition: opacity 0.2s ease;
}
.footer__legal a:hover {
  opacity: 0.8;
}
.footer__bottom {
  background: #161c28;
  padding-top: 60px;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
  }
}
.footer__copyright {
  font-size: 18px;
  color: #ffffff;
  margin: 0;
  line-height: 30px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .footer__copyright {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 13px;
  }
}
.footer__legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #ffffff;
  margin: 0;
  padding: 0;
  border: none;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .footer__legal {
    text-align: center;
    justify-content: center;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .footer__legal {
    font-size: 13px;
  }
}
.footer__legal a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__legal a:hover {
  color: #ffffff;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #fff;
  color: #222;
  margin: 0;
  padding: 0;
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar styles */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: #54bd95;
  border-radius: 6px;
  border: 2px solid #f1f1f1;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(64.6215189873, 167.4284810127, 128.2639240506);
}

/* Custom scrollbar for Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #54bd95 #f1f1f1;
}

/* Smooth scrolling for specific elements */
.header__nav,
.mobile-menu {
  scroll-behavior: smooth;
}

/* Image optimization to prevent blur */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Prevent blur on transforms */
* {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.main-sections {
  background: linear-gradient(110deg, rgb(255, 249, 249) 53%, rgb(215, 240, 231) 99%);
  position: relative;
}

/*# sourceMappingURL=main.css.map */
