@font-face {
  font-family: 'SF Pro Display';
  src: url('assets/fonts/SFPRODISPLAYREGULAR.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('assets/fonts/SFPRODISPLAYMEDIUM.OTF') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('assets/fonts/SFPRODISPLAYBOLD.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('assets/fonts/SFPRODISPLAYULTRALIGHTITALIC.OTF') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: white;
  color: black;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 1;
}

*, *::before, *::after {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.page-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 82px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 11px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  gap: 10px;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.btn-primary {
  background-color: black;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: black;
  border: 1px solid black;
}

.btn-secondary:hover {
  background-color: #f0f0f0;
}

.btn-cyan {
  background-color: #53F7E6;
  color: black;
  border: none;
}

.btn-cyan:hover {
  background-color: #48D9C7;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

main {
  padding-top: 0;
  padding-bottom: 80px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-icon {
  width: 33.66px;
  height: 31.26px;
}

.logo-text {
  font-size: 28px;
  font-weight: 500;
  color: #000;
  font-family: "SF Pro Display", sans-serif;
  font-style: normal;
  line-height: normal;
  text-align: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 8px;
}

.logo-link:hover {
  opacity: 0.8;
  transition: opacity 0.2s ease-in-out;
}

.nav-link {
  font-size: 20px;
  font-weight: 500;
  color: black;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.nav-link:hover {
  color: #555;
}

.nav-link.active {
  text-decoration: underline;
}

.tag-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #F6F6F6;
  padding: 5px 19px;
  border-radius: 30px;
  width: fit-content;
}

.section-tag.no-bg {
  background-color: transparent;
}

.section-tag.no-bg .tag-icon {
  width: 32px;
  height: 30px;
}

.section-tag.no-bg .tag-text {
  font-size: 30px;
  font-weight: 700;
}

.tag-icon {
  width: 18.70px;
  height: 17.37px;
  display: block;
}

.tag-text {
  font-size: 14px;
  font-weight: 700;
}

.highlight-bg-cyan {
  background-color: #53F7E6;
  color: black;
}

.highlight-bg-white {
  background-color: white;
  color: black;
}

.faq-section {
  margin-bottom: 80px;
  width: 100%;
  box-sizing: border-box;
}

.faq-section .section-title {
  font-size: 50px;
  font-weight: 500;
  color: black;
  margin: 0 0 40px 0;
  text-align: center;
}

.faq-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-image-container {
  width: 215px;
  flex-shrink: 0;
}

.faq-image {
  width: 100%;
  height: auto;
  display: block;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
  max-width: 600px;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0 0 10px 0;
  font-size: 22px;
  font-weight: 500;
  color: black;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-question::after {
  content: '+';
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding-left: 10px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.faq-answer p {
  margin: 0 0 10px 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .page-container {
    padding: 0 20px;
    max-width: 100%;
    box-sizing: border-box;
  }

  h1, .pricing-hero-title, .faq-section .section-title {
    font-size: 36px;
    line-height: 1.2;
  }

  h2, .success-title {
    font-size: 28px;
  }

  h3, .comparison-title {
    font-size: 24px;
  }

  body {
    font-size: 15px;
  }

  .section-tag {
    padding: 4px 15px;
  }

  .tag-text {
    font-size: 13px;
  }

  .section-tag.no-bg .tag-text {
    font-size: 24px;
  }

  .tag-wrapper {
    margin-bottom: 60px;
  }

  .faq-section {
    margin-bottom: 60px;
  }

  .faq-section .section-title {
    font-size: 32px;
  }

  .faq-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .faq-image-container {
    width: 50%;
    max-width: 150px;
    margin-bottom: 20px;
  }

  .faq-list {
    width: 100%;
    max-width: 100%;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 14px;
  }

  body main {
    margin-top: 0;
    padding-top: 0 !important;
  }
}

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

@media (max-width: 576px) {
  .page-container {
    padding: 15px 20px;
  }

  h1, .pricing-hero-title, .faq-section .section-title {
    font-size: 28px;
  }

  h2, .success-title {
    font-size: 24px;
  }

  h3, .comparison-title {
    font-size: 20px;
  }

  .section-tag.no-bg .tag-text {
    font-size: 20px;
  }

  .faq-question {
    font-size: 16px;
  }
}
