/* SECTIONS */

/* -------- Hero -------- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__gradient {
  display: none;
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  gap: 40px;
}

.hero__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 680px;
  text-align: center;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__h1 {
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.01em;
}

.hero__sub {
  font-size: var(--text-p);
  font-weight: 400;
  line-height: 150%;
}

.hero__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
}

.hero__desc {
  max-width: 800px;
  font-size: var(--text-p);
  line-height: 150%;
  text-align: center;
}

/* -------- Points -------- */
.points {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0 60px;
  position: relative;
  z-index: 1;
}

.point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
}

.point__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point__title {
  font-size: var(--text-h4);
  font-weight: 500;
  line-height: 25px;
}

.point__desc {
  font-size: var(--text-p);
  line-height: 150%;
  color: var(--color-text-secondary);
}

/* -------- Features -------- */
.features {
  padding: 80px 0 0;
}

.features__title {
  font-size: var(--text-h2);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* -------- Premium content -------- */
.premium {
  padding: 160px 0 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.premium__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 800px;
  text-align: center;
}

.premium__icon {
  width: 56px;
  height: 56px;
}

.premium__h2 {
  font-size: var(--text-h2);
  font-weight: 700;
}

.premium__p {
  font-size: var(--text-p);
  line-height: 150%;
}

.premium__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(198px, 1fr));
  gap: 20px;
  width: 100%;
}

/* -------- Pricing -------- */
.pricing {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.pricing__h2 {
  font-size: var(--text-h2);
  font-weight: 700;
}

.pricing__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

/* -------- FAQ -------- */
.faq {
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.faq__h2 {
  font-size: var(--text-h2);
  font-weight: 700;
}

/* -------- CTA -------- */
.cta-section {
  background: var(--color-base);
  border-radius: var(--radius-card);
  padding: 72px 40px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.cta-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 960px;
  width: 100%;
}

.cta-section__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: center;
}

.cta-section__icon {
  width: 56px;
  height: 56px;
}

.cta-section__h2 {
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 125%;
}

.cta-section__p {
  font-size: var(--text-p);
  line-height: 150%;
}

/* -------- Footer -------- */
footer {
  padding: 120px 0 80px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__label {
  font-family: var(--font-secondary);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.footer__link {
  font-size: var(--text-p);
  line-height: 150%;
  color: var(--color-text-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
  width: fit-content;
}

.footer__link:hover {
  color: var(--color-text-primary);
  border-color: var(--color-border);
}

.footer__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer__docs {
  display: flex;
  gap: 16px;
}

.footer__doc,
.footer__cr {
  font-family: var(--font-secondary);
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

.footer__doc {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.footer__doc:hover {
  color: var(--color-text-muted);
  border-color: var(--color-border);
}

/* -------- Wordmark -------- */
.wordmark {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.wordmark__img {
  width: 100%;
  max-width: 100%;
  display: block;
}
