:root {
  --f2-purple: #6a03be;
  --f2-purple-dark: #4b008b;
  --f2-purple-soft: #f4ebff;
  --f2-text: #22182c;
  --f2-muted: #756b7e;
  --f2-border: #e9e2ee;
  --f2-shadow: 0 22px 60px rgba(84, 27, 123, 0.12);
  --f2-radius: 24px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--f2-text);
  background: #fff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body.f2-menu-open {
  overflow: hidden;
}

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

.f2-container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.f2-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(106, 3, 190, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.f2-header__inner {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 30px;
}

.f2-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.f2-logo img {
  display: block;
  object-fit: contain;
}

.f2-logo__mark {
  width: 43px;
  height: 43px;
}

.f2-logo__word {
  width: auto;
  height: 23px;
  max-width: 132px;
}

.f2-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.f2-nav a,
.f2-footer a {
  color: inherit;
  text-decoration: none;
}

.f2-nav a {
  color: #4f4657;
  font-size: 15px;
  font-weight: 650;
  transition: color 0.2s ease;
}

.f2-nav a:hover,
.f2-nav a:focus-visible {
  color: var(--f2-purple);
}

.f2-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 22px;
  color: inherit;
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.f2-btn:hover {
  transform: translateY(-2px);
}

.f2-btn:focus-visible,
.f2-nav a:focus-visible,
.f2-final__terms:focus-visible,
.f2-menu-button:focus-visible {
  outline: 3px solid rgba(106, 3, 190, 0.24);
  outline-offset: 3px;
}

.f2-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #7c19cf, #5d00a8);
  box-shadow: 0 12px 25px rgba(106, 3, 190, 0.25);
}

.f2-btn--secondary,
.f2-btn--ghost {
  border-color: #d8c8e5;
  color: var(--f2-purple);
  background: #fff;
}

.f2-btn--ghost {
  min-height: 42px;
  margin-left: 6px;
  padding: 9px 19px;
}

.f2-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  color: var(--f2-purple);
  background: var(--f2-purple-soft);
}

.f2-menu-button svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.f2-hero {
  position: relative;
  padding: 72px 0 94px;
  background:
    radial-gradient(circle at 8% 22%, rgba(184, 111, 245, 0.13), transparent 27%),
    radial-gradient(circle at 92% 18%, rgba(106, 3, 190, 0.09), transparent 27%),
    linear-gradient(180deg, #fff 0%, #fdfaff 100%);
  overflow: hidden;
}

.f2-hero::after {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -270px;
  bottom: -330px;
  border-radius: 50%;
  background: rgba(106, 3, 190, 0.06);
  content: "";
}

.f2-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}

.f2-eyebrow {
  margin: 0 0 14px;
  color: var(--f2-purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.f2-hero h1,
.f2-heading h2,
.f2-final h2,
.f2-terms h2 {
  margin: 0;
  color: var(--f2-text);
  letter-spacing: -0.045em;
}

.f2-hero h1 {
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 0.99;
}

.f2-hero h1 span {
  color: var(--f2-purple);
}

.f2-hero__lead {
  max-width: 540px;
  margin: 25px 0 28px;
  color: #5f5567;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
}

.f2-offer {
  display: flex;
  max-width: 520px;
  align-items: center;
  gap: 19px;
  border: 1px solid rgba(106, 3, 190, 0.29);
  border-radius: 21px;
  padding: 19px 22px;
  background: linear-gradient(135deg, #fff 0%, #f8f0ff 100%);
  box-shadow: 0 14px 35px rgba(106, 3, 190, 0.14);
}

.f2-offer__icon {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #8722d9, #5d00a8);
  box-shadow: 0 8px 20px rgba(106, 3, 190, 0.28);
}

.f2-offer__icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.f2-offer p {
  margin: 0;
  color: #3e274e;
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 800;
  line-height: 1.34;
}

.f2-offer strong {
  color: var(--f2-purple);
  font-size: 1.15em;
}

.f2-hero__note {
  max-width: 520px;
  margin: 22px 0;
  color: var(--f2-muted);
  font-size: 15px;
  line-height: 1.55;
}

.f2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.f2-product {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(210px, 0.87fr);
  gap: 13px;
  transform: rotate(0.6deg);
}

.f2-ui-card {
  border: 1px solid rgba(106, 3, 190, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(70, 29, 96, 0.11);
}

.f2-post-card {
  grid-row: span 2;
  padding: 17px;
}

.f2-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.f2-ui-title {
  margin: 0 0 13px;
  font-size: 13px;
  font-weight: 800;
}

.f2-author {
  display: flex;
  align-items: center;
  gap: 9px;
}

.f2-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #9c45e5, #5e00a9);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.f2-author strong,
.f2-author small {
  display: block;
  line-height: 1.3;
}

.f2-author strong {
  font-size: 11px;
}

.f2-author small {
  color: #948a9b;
  font-size: 9px;
}

.f2-more {
  color: #9b91a1;
  letter-spacing: 1px;
}

.f2-post-image {
  position: relative;
  height: 145px;
  margin: 14px 0;
  border-radius: 13px;
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(135deg, #7021af, #b76df0);
  overflow: hidden;
}

.f2-post-image img {
  position: absolute;
  width: 54%;
  height: 135%;
  right: -7%;
  bottom: -37%;
  object-fit: contain;
  filter: drop-shadow(0 8px 15px rgba(46, 0, 76, 0.25));
}

.f2-post-image__copy {
  position: relative;
  z-index: 1;
  width: 66%;
  padding: 24px 0 0 20px;
  color: #fff;
}

.f2-post-image__copy span {
  display: inline-block;
  margin-bottom: 9px;
  border-radius: 20px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.19);
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.f2-post-image__copy strong {
  font-size: 13px;
  line-height: 1.25;
}

.f2-text-lines {
  display: grid;
  gap: 7px;
}

.f2-text-lines i {
  display: block;
  height: 6px;
  border-radius: 8px;
  background: #eeeaf0;
}

.f2-text-lines i:nth-child(2) {
  width: 88%;
}

.f2-text-lines i:nth-child(3) {
  width: 62%;
}

.f2-post-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 15px;
  color: #817687;
  font-size: 10px;
}

.f2-post-stats span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.f2-post-stats svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.f2-post-stats .f2-bookmark {
  margin-left: auto;
}

.f2-subscription-card {
  padding: 15px;
}

.f2-pill {
  border-radius: 20px;
  padding: 4px 7px;
  color: var(--f2-purple);
  background: var(--f2-purple-soft);
  font-size: 8px;
  font-weight: 800;
}

.f2-tier {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  border: 1px solid #ede7f0;
  border-radius: 10px;
  padding: 7px 8px;
  cursor: pointer;
}

.f2-tier--active {
  border-color: rgba(106, 3, 190, 0.42);
  background: #faf5ff;
}

.f2-tier input {
  width: 12px;
  height: 12px;
  margin: 0;
  accent-color: var(--f2-purple);
}

.f2-tier strong,
.f2-tier small {
  display: block;
  font-size: 9px;
  line-height: 1.25;
}

.f2-tier small {
  margin-top: 2px;
  color: var(--f2-purple);
  font-size: 8px;
  font-weight: 700;
}

.f2-ui-button {
  width: 100%;
  margin-top: 10px;
  border: 0;
  border-radius: 9px;
  padding: 8px;
  color: #fff;
  background: var(--f2-purple);
  font: inherit;
  font-size: 9px;
  font-weight: 750;
}

.f2-mini-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.f2-mini-card {
  position: relative;
  display: flex;
  min-width: 0;
  gap: 8px;
  padding: 12px;
}

.f2-mini-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  color: #e44485;
  background: #ffeaf2;
}

.f2-mini-icon--goal {
  color: #ed8b16;
  background: #fff2dd;
}

.f2-mini-icon--sale {
  color: #2572d2;
  background: #e8f1ff;
}

.f2-mini-icon svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.f2-mini-card div {
  min-width: 0;
}

.f2-mini-card small,
.f2-mini-card strong,
.f2-mini-card b,
.f2-mini-card em {
  display: block;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.f2-mini-card small {
  margin-bottom: 3px;
  color: #938899;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.f2-mini-card strong {
  font-size: 9px;
}

.f2-mini-card b {
  margin-top: 4px;
  color: var(--f2-purple);
  font-size: 12px;
}

.f2-mini-card em {
  margin-top: 2px;
  color: #998f9f;
  font-size: 7px;
  font-style: normal;
}

.f2-progress {
  position: absolute;
  height: 3px;
  right: 12px;
  bottom: 8px;
  left: 50px;
  border-radius: 5px;
  background: #eee7f2;
}

.f2-progress i {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #a34ce2, #6a03be);
}

.f2-income-card {
  display: flex;
  grid-column: 1 / -1;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 19px;
  padding: 20px 24px;
  color: #fff;
  background: linear-gradient(125deg, #420077, #7c16cb 65%, #9d45df);
  box-shadow: 0 18px 38px rgba(83, 0, 143, 0.28);
}

.f2-income-card small,
.f2-income-card strong,
.f2-income-card span {
  display: block;
}

.f2-income-card small {
  opacity: 0.72;
  font-size: 10px;
}

.f2-income-card strong {
  margin: 3px 0;
  font-size: 24px;
}

.f2-income-card span {
  width: max-content;
  border-radius: 20px;
  padding: 3px 7px;
  color: #aaffd0;
  background: rgba(74, 255, 148, 0.13);
  font-size: 10px;
  font-weight: 800;
}

.f2-income-card svg {
  width: 53%;
  max-width: 260px;
  overflow: visible;
}

.f2-chart-area {
  fill: url("#chartFill");
}

.f2-chart-line {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.f2-section {
  padding: 105px 0;
}

.f2-section--tint {
  background: linear-gradient(180deg, #fbf8fe, #f7f0fc);
}

.f2-heading {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.f2-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.f2-heading p {
  max-width: 640px;
  margin: 18px auto 0;
  color: #5f5567;
  font-size: 16px;
  line-height: 1.5;
}

.f2-four-grid,
.f2-advantages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.f2-feature,
.f2-advantage {
  border: 1px solid var(--f2-border);
  border-radius: var(--f2-radius);
  background: #fff;
  box-shadow: 0 15px 38px rgba(73, 31, 100, 0.07);
}

.f2-feature {
  min-height: 240px;
  padding: 30px;
  text-align: center;
}

.f2-feature__icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 22px;
  color: var(--f2-purple);
  background: #f0e2fc;
}

.f2-feature__icon--pink {
  color: #dc3f81;
  background: #ffe7f1;
}

.f2-feature__icon--orange {
  color: #d87a08;
  background: #fff0d8;
}

.f2-feature__icon--blue {
  color: #176fc9;
  background: #e5f0ff;
}

.f2-feature__icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.f2-feature h3,
.f2-advantage h3,
.f2-step h3 {
  margin: 0;
  color: var(--f2-text);
}

.f2-feature h3 {
  font-size: 20px;
}

.f2-feature p,
.f2-advantage p,
.f2-step p {
  margin: 10px 0 0;
  color: var(--f2-muted);
  line-height: 1.6;
}

.f2-feature p {
  font-size: 14px;
}

.f2-info-strip,
.f2-help-strip {
  border-radius: 18px;
  color: #4d2864;
  background: #eee0fa;
  font-weight: 650;
  text-align: center;
}

.f2-info-strip {
  display: flex;
  max-width: 850px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 28px auto 0;
  padding: 18px 24px;
}

.f2-info-strip svg {
  width: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--f2-purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.f2-advantage {
  position: relative;
  min-height: 235px;
  padding: 38px 38px 34px;
  overflow: hidden;
}

.f2-advantage::after {
  position: absolute;
  width: 120px;
  height: 120px;
  right: -54px;
  bottom: -54px;
  border-radius: 50%;
  background: var(--f2-purple-soft);
  content: "";
}

.f2-number {
  display: inline-flex;
  margin-bottom: 26px;
  border-radius: 10px;
  padding: 7px 10px;
  color: var(--f2-purple);
  background: var(--f2-purple-soft);
  font-size: 13px;
  font-weight: 850;
}

.f2-advantage h3 {
  max-width: 430px;
  font-size: 23px;
  line-height: 1.25;
}

.f2-advantage p {
  max-width: 480px;
  font-size: 15px;
}

.f2-steps {
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr;
  align-items: center;
  gap: 8px;
}

.f2-step {
  position: relative;
  min-height: 310px;
  border: 1px solid var(--f2-border);
  border-radius: var(--f2-radius);
  padding: 34px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(73, 31, 100, 0.08);
  text-align: center;
}

.f2-step__number {
  position: absolute;
  display: grid;
  width: 38px;
  height: 38px;
  top: -16px;
  left: 20px;
  place-items: center;
  border: 4px solid #f8f3fb;
  border-radius: 50%;
  color: #fff;
  background: var(--f2-purple);
  font-size: 14px;
  font-weight: 800;
}

.f2-step__icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 16px auto 28px;
  place-items: center;
  border-radius: 25px;
  color: var(--f2-purple);
  background: var(--f2-purple-soft);
}

.f2-step__icon svg {
  width: 37px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.f2-step h3 {
  font-size: 21px;
  line-height: 1.25;
}

.f2-step p {
  font-size: 14px;
}

.f2-step-arrow {
  width: 100%;
  fill: none;
  stroke: #b994d3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.f2-help-strip {
  max-width: 670px;
  margin: 34px auto 0;
  padding: 18px 24px;
}

.f2-earn-media {
  display: grid;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
  justify-items: center;
}

.f2-earn-preview {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--f2-border);
  border-radius: var(--f2-radius);
  background: #1a1222;
  box-shadow: 0 18px 42px rgba(73, 31, 100, 0.12);
}

.f2-earn-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.f2-earn-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.f2-earn-cta {
  min-width: min(100%, 280px);
  text-align: center;
}

.f2-audience-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
}

.f2-audience-list span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  border: 1px solid #e5d7ef;
  border-radius: 999px;
  padding: 12px 22px;
  color: #573568;
  background: #fff;
  box-shadow: 0 8px 22px rgba(73, 31, 100, 0.06);
  font-size: 15px;
  font-weight: 700;
}

.f2-testimonial {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 30px;
  margin: 70px 0 0;
  border: 0;
  border-radius: 30px;
  padding: 45px 52px;
  background: linear-gradient(135deg, #f3e7fc, #faf5ff);
}

.f2-quote {
  height: 70px;
  color: var(--f2-purple);
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 1;
}

.f2-testimonial > p {
  margin: 0;
  color: #432752;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 650;
  line-height: 1.45;
}

.f2-testimonial footer {
  display: flex;
  max-width: 170px;
  align-items: center;
  gap: 12px;
}

.f2-avatar--large {
  width: 54px;
  height: 54px;
  font-size: 14px;
}

.f2-testimonial footer strong {
  font-size: 13px;
  line-height: 1.35;
}

.f2-final-section {
  padding: 30px 0 75px;
}

.f2-final {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  border-radius: 32px;
  padding: 48px 52px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 0, rgba(255, 255, 255, 0.17), transparent 24%),
    linear-gradient(125deg, #4a007e, #7000bb 58%, #9639da);
  box-shadow: 0 24px 65px rgba(79, 0, 135, 0.25);
}

.f2-final__icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.12);
}

.f2-final__icon svg {
  width: 43px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.f2-final h2 {
  color: #fff;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.12;
}

.f2-final__copy p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.f2-final__actions {
  display: grid;
  min-width: 210px;
  gap: 12px;
  text-align: center;
}

.f2-btn--white {
  color: var(--f2-purple);
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 0, 57, 0.22);
}

.f2-final__terms {
  color: #fff;
  font-size: 13px;
  text-underline-offset: 4px;
}

.f2-terms {
  max-width: 1000px;
  margin: 42px auto 0;
  border: 1px solid var(--f2-border);
  border-radius: 22px;
  padding: 42px 46px;
  background: #fcfaff;
}

.f2-terms h2 {
  font-size: clamp(26px, 3vw, 34px);
}

.f2-terms__eyebrow {
  margin: 0 0 8px !important;
  color: var(--f2-purple) !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.f2-terms__meta {
  margin-top: 8px !important;
  font-size: 12px !important;
}

.f2-terms__list {
  display: grid;
  gap: 22px;
  margin: 32px 0 0;
  padding-left: 24px;
}

.f2-terms__list > li {
  padding-left: 8px;
}

.f2-terms__list > li::marker {
  color: var(--f2-purple);
  font-weight: 800;
}

.f2-terms__details {
  margin-top: 20px;
}

.f2-terms__details summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--f2-purple);
  font-size: 14px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  list-style: none;
}

.f2-terms__details summary::-webkit-details-marker {
  display: none;
}

.f2-terms__details summary::after {
  content: "↓";
  text-decoration: none;
  transition: transform 0.2s ease;
}

.f2-terms__details[open] summary::after {
  transform: rotate(180deg);
}

.f2-terms__list--continued {
  margin-top: 24px;
}

.f2-terms h3 {
  margin: 0;
  color: var(--f2-text);
  font-size: 17px;
  line-height: 1.35;
}

.f2-terms p {
  margin: 8px 0 0;
  color: var(--f2-muted);
  font-size: 14px;
  line-height: 1.65;
}

.f2-terms ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--f2-muted);
  font-size: 14px;
  line-height: 1.65;
}

.f2-terms strong {
  color: #4d2864;
}

.f2-terms a {
  color: var(--f2-purple);
}

.f2-footer {
  padding: 54px 0 24px;
  color: #d9cce1;
  background: #26152f;
}

.f2-logo--footer .f2-logo__word {
  filter: brightness(0) invert(1);
}

.f2-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 50px;
}

.f2-footer__grid p {
  margin: 19px 0 0;
  color: #aa9bb3;
  font-size: 14px;
}

.f2-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
}

.f2-footer nav a {
  font-size: 13px;
}

.f2-footer nav a:hover {
  color: #fff;
}

.f2-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 21px;
  color: #897a91;
  font-size: 12px;
}

.js .f2-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .f2-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .f2-hero__grid {
    grid-template-columns: minmax(340px, 0.8fr) minmax(500px, 1.2fr);
    gap: 28px;
  }

  .f2-hero h1 {
    font-size: 47px;
  }

  .f2-nav {
    gap: 20px;
  }

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

  .f2-step {
    padding: 28px 20px;
  }

  .f2-steps {
    grid-template-columns: 1fr 44px 1fr 44px 1fr;
  }

  .f2-final {
    grid-template-columns: auto 1fr;
  }

  .f2-final__actions {
    grid-column: 2;
    width: min(280px, 100%);
  }
}

@media (max-width: 900px) {
  .f2-header__inner {
    min-height: 68px;
  }

  .f2-header__login {
    margin-left: auto;
  }

  .f2-menu-button {
    display: inline-flex;
  }

  .f2-nav {
    position: fixed;
    z-index: 60;
    display: grid;
    width: min(360px, calc(100% - 32px));
    top: 76px;
    right: 16px;
    gap: 0;
    border: 1px solid var(--f2-border);
    border-radius: 18px;
    padding: 10px;
    background: #fff;
    box-shadow: var(--f2-shadow);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: 0.2s ease;
  }

  .f2-nav.is-open {
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .f2-nav a {
    border-radius: 10px;
    padding: 13px 14px;
  }

  .f2-nav a:hover {
    background: var(--f2-purple-soft);
  }

  .f2-hero {
    padding-top: 55px;
  }

  .f2-hero__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .f2-hero__content {
    max-width: 680px;
  }

  .f2-hero h1 {
    font-size: clamp(44px, 8vw, 63px);
  }

  .f2-product {
    width: min(680px, 100%);
    margin: 0 auto;
    transform: none;
  }

  .f2-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .f2-step {
    min-height: auto;
    padding: 34px;
  }

  .f2-step-arrow {
    width: 50px;
    justify-self: center;
    transform: rotate(90deg);
  }

  .f2-testimonial {
    grid-template-columns: 65px 1fr;
  }

  .f2-testimonial footer {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .f2-container {
    width: min(100% - 32px, 1240px);
  }

  .f2-section {
    padding: 78px 0;
  }

  .f2-header__login {
    display: none;
  }

  .f2-logo__mark {
    width: 38px;
    height: 38px;
  }

  .f2-logo__word {
    height: 20px;
    max-width: 114px;
  }

  .f2-hero {
    padding: 45px 0 70px;
  }

  .f2-hero h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .f2-hero__lead {
    font-size: 17px;
  }

  .f2-actions {
    display: grid;
  }

  .f2-btn {
    width: 100%;
    min-height: 54px;
  }

  .f2-product {
    grid-template-columns: 1fr;
  }

  .f2-post-card {
    grid-row: auto;
  }

  .f2-mini-grid {
    grid-template-columns: 1fr;
  }

  .f2-mini-card {
    min-height: 86px;
  }

  .f2-income-card {
    grid-column: auto;
  }

  .f2-four-grid,
  .f2-advantages {
    grid-template-columns: 1fr;
  }

  .f2-feature {
    min-height: 220px;
  }

  .f2-heading {
    margin-bottom: 38px;
  }

  .f2-testimonial {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 34px 28px;
  }

  .f2-quote {
    height: 50px;
  }

  .f2-testimonial footer {
    grid-column: auto;
    max-width: none;
    margin-top: 10px;
  }

  .f2-final {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    text-align: center;
  }

  .f2-final__icon {
    margin: 0 auto;
  }

  .f2-final__actions {
    grid-column: auto;
    width: 100%;
  }

  .f2-footer__grid {
    grid-template-columns: 1fr;
  }

  .f2-footer nav {
    display: grid;
    justify-content: start;
  }

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

@media (max-width: 420px) {
  .f2-container {
    width: min(100% - 24px, 1240px);
  }

  .f2-hero h1 {
    font-size: 39px;
  }

  .f2-offer {
    align-items: flex-start;
    gap: 13px;
    padding: 16px;
  }

  .f2-offer__icon {
    width: 48px;
    height: 48px;
  }

  .f2-offer__icon svg {
    width: 25px;
  }

  .f2-offer p {
    font-size: 14px;
  }

  .f2-post-image {
    height: 130px;
  }

  .f2-income-card {
    align-items: flex-start;
    padding: 18px;
  }

  .f2-income-card strong {
    font-size: 20px;
  }

  .f2-income-card svg {
    width: 45%;
  }

  .f2-feature,
  .f2-advantage,
  .f2-step {
    padding: 28px 22px;
  }

  .f2-info-strip {
    align-items: flex-start;
    text-align: left;
  }

  .f2-audience-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .f2-audience-list span {
    justify-content: center;
  }

  .f2-terms {
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
