/* typography */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* typography */

/* reset */

* {
    padding: 0;
    margin: 0;
    border: 0;
}

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

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 100%;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-family: "Montserrat", sans-serif;
}

a {
    color: inherit;
}

/* reset */

/* root */
:root {
    --white: #ffffff;
    --black: #000000;
    --grey: #8696a0;
    --muted-green: #25d366;
    --light-green: #d9fdd3;
    --lime-green: #128c7e;
    --blue: #34b7f1;
    --red: #ea0038;
    --purple: #7c3aed;
    --purple-dark: #4a0e8f;
    --purple-light: #a78bfa;
    --color-link: #7c3aed;

    --lg-white-grey: linear-gradient(335.11deg, #E4E0E7 1.49%, #FFFFFF 100%);
    --lg-white-grey-2: radial-gradient(
        50% 50% at 50% 50%,
        #d9fdd3 76.71%,
        rgba(115, 115, 115, 0) 100%
    );

    --lg-purple: linear-gradient(135deg, #7c3aed 0%, #6C1CD3 100%);
    --lg-purple-soft: linear-gradient(135deg, #ede9fe 0%, #faf5ff 50%, #f8f4ff 100%);
    --container-width: 1200px;

    --text-primary: #1a1a2e;
    --text-secondary: #4a4a6a;
    --text-muted: #8b8ba7;
    --border-light: #e8e8f0;
    --border-purple: #d4c4fc;
    --bg-card: #ffffff;
    --bg-page: #f8f9fc;

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-bg-strong: rgba(255, 255, 255, 0.95);
    --glass-bg-subtle: rgba(255, 255, 255, 0.5);
    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-border-strong: rgba(0, 0, 0, 0.1);
    --glass-shadow: 0 2px 16px rgba(0, 0, 0, 0.04), 0 4px 32px rgba(108, 28, 211, 0.04);
    --glass-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.06), 0 2px 16px rgba(108, 28, 211, 0.06);
    --glass-purple-bg: rgba(108, 28, 211, 0.04);
    --glass-purple-bg-strong: rgba(108, 28, 211, 0.08);
    --glass-purple-border: rgba(108, 28, 211, 0.12);
}


/* end root */

/* default */

body {
    font-weight: 400;
    scroll-behavior: smooth;
    font-family: "Inter", sans-serif;
    background: #f9f8fd;
    background-attachment: fixed;
    position: relative;
    min-height: 100%;
}

body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 15%, rgba(124, 58, 237, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 45%, rgba(168, 85, 247, 0.04) 0%, transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(124, 58, 237, 0.04) 0%, transparent 35%),
        radial-gradient(circle at 10% 85%, rgba(99, 102, 241, 0.03) 0%, transparent 30%);
    pointer-events: none;
    z-index: 0;
    animation: bgPulse 12s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.02);
    }
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 85% 60%, rgba(124, 58, 237, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 45% 30%, rgba(168, 85, 247, 0.04) 1px, transparent 1px);
    background-size: 100px 100px, 120px 120px, 80px 80px;
    pointer-events: none;
    z-index: 0;
}

html {
    height: 100%;
    font-weight: 400;
    scroll-behavior: smooth;
    font-family: "Inter", sans-serif;
}

h1 {
    color: var(--text-primary);
    font-size: 53px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

h2 {
    color: var(--text-primary);
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
}
h3 {
    color: var(--text-primary);
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
}

h4 {
    color: var(--text-primary);
    font-size: 28px;
    line-height: 30px;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 20px;
}

.app {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.green {
    color: var(--purple);
}

.green-light {
    color: var(--purple-light);
}

.text-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

.advantage-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #faf9ff 100%);
    border: 1px solid rgba(124, 58, 237, 0.08);
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.03),
        0 6px 20px rgba(108, 28, 211, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover {
    border-color: rgba(124, 58, 237, 0.18);
    box-shadow:
        0 4px 18px rgba(108, 28, 211, 0.08),
        0 10px 32px rgba(108, 28, 211, 0.06);
    transform: translateX(8px);
    background: linear-gradient(135deg, #f9f7ff 0%, #f4f0fe 100%);
}

.advantage-card__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(168, 85, 247, 0.14) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    transition: all 0.35s ease;
}

.advantage-card:hover .advantage-card__icon {
    background: var(--lg-purple);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(108, 28, 211, 0.25);
}

.about-items__item-description__text {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

/* default */

/* main */
/* 1360px */

/* intro */
.intro .container {
    max-width: 1360px;
    padding-top: 30px;
}
.intro-content {
    border-radius: 32px;
    background: linear-gradient(155deg, #ffffff 0%, #faf9ff 35%, #f4f0ff 100%);
    border: 1px solid rgba(124, 58, 237, 0.08);
    padding: 40px;
    box-shadow:
        0 4px 32px rgba(0, 0, 0, 0.05),
        0 12px 64px rgba(108, 28, 211, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset,
        0 20px 80px rgba(108, 28, 211, 0.04);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.5s ease;
}

.intro-content:hover {
    box-shadow:
        0 6px 36px rgba(0, 0, 0, 0.06),
        0 16px 72px rgba(108, 28, 211, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset,
        0 24px 96px rgba(108, 28, 211, 0.06);
}

.intro-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #7c3aed 20%, #a855f7 50%, #7c3aed 80%, transparent 100%);
    z-index: 2;
}

.intro-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.04),
        transparent
    );
    animation: shimmer 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes shimmer {
    0%, 100% { left: -100%; }
    50% { left: 200%; }
}
/* header */
.intro-content__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.intro-content__header-title {
    color: var(--text-primary);
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
}
.intro-content__header-logo {
    height: 35px;
    width: 100%;
    max-width: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 6px;
    border-radius: 24px;
    border: 1.6px solid var(--border-purple);
    background: var(--lg-purple);
    box-shadow:
        0 4px 16px rgba(108, 28, 211, 0.3),
        0 0 0 0 rgba(124, 58, 237, 0.4);
    animation: pulseGlowSmall 3s ease-in-out infinite;
}

.intro-content__header-logo span {
    display: flex;
}

.intro-content__header-logo span:last-child {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}
/* header */
.intro-content__about {
    margin-top: 50px;
}
.intro-content__about-info__title {
    text-align: center;
}
.intro-content__about-info__text,
.intro-content__about-media__text,
.intro-content__about-info__title,
.intro-content__about-info__subtitle {
    text-align: center;
}
.intro-content__about-media__text > p {
    color: var(--text-secondary);
}

.intro-content__about-info__video {
    margin: 25px auto 0;
    max-width: 500px;
}

.intro-content__about-info__text {
    margin-top: 25px;
}
.intro-content__about-info__button,
.intro-content__about-info__subtitle {
    margin-top: 50px;
}

.intro-content__about-info__video video,
.intro-content__about-media__video video {
    width: 100%;
}
.intro-content__about-info__button {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
/* .intro-content__about-info__button .button {
    max-width: 140px;
} */
.intro-content__about-media {
    display: none;
}
/* intro */

.secondary-button {
    background: var(--lg-purple);
    border: none;
    border-radius: 20px;
    max-width: 290px;
    width: 100%;
    height: 55px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 24px rgba(108, 28, 211, 0.35),
        0 0 0 0 rgba(124, 58, 237, 0.5);
    animation: pulseGlow 2.4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            0 4px 24px rgba(108, 28, 211, 0.3),
            0 0 0 0 rgba(124, 58, 237, 0.4);
    }
    50% {
        box-shadow:
            0 4px 24px rgba(108, 28, 211, 0.3),
            0 0 0 14px rgba(124, 58, 237, 0);
    }
}

.secondary-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

.secondary-button:hover {
    box-shadow: 0 8px 40px rgba(108, 28, 211, 0.55);
    transform: translateY(-3px);
    animation: none;
}

.secondary-button__text {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.22;
    color: var(--white);
    text-align: center;
}


.media-title {
    color: var(--text-primary);
    font-size: 40px;
    text-align: center;
    line-height: 1.1;
    font-weight: semibold;
}


.stats-cards {
  width: 100%;
  display: flex;
  gap: 8px;
}

.stats-card {
  background: linear-gradient(180deg, #ffffff 0%, #faf9ff 100%);
  border-radius: 24px;
  padding: 24px 20px;
  border: 1px solid rgba(124, 58, 237, 0.08);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.03),
    0 8px 32px rgba(108, 28, 211, 0.05);
  flex: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #c084fc, #7c3aed);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stats-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.02) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stats-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 8px 32px rgba(108, 28, 211, 0.12),
    0 20px 56px rgba(108, 28, 211, 0.1);
  border-color: rgba(124, 58, 237, 0.2);
}

.stats-card:hover::before {
  opacity: 1;
  animation: progressShimmer 2s ease-in-out infinite;
}

.stats-card:hover::after {
  opacity: 1;
}

.stats-card:nth-child(2)::before {
  background: linear-gradient(90deg, #7c3aed, #6366f1);
}

.stats-card:nth-child(3)::before {
  background: linear-gradient(90deg, #7c3aed, #8b5cf6);
}

.stats-card__period {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.33;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.stats-card__label {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.33;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.stats-card__value {
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  background: linear-gradient(135deg, #7c3aed, #4a0e8f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.progress-bar {
  width: 55px;
  height: 6px;
  background: #f0eff5;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.progress-bar__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #7c3aed, #c084fc, #7c3aed);
  background-size: 200% 100%;
  border-radius: 8px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.4), 0 0 2px rgba(124, 58, 237, 0.6);
  animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* about */
.about {
    padding: 50px 0;
}
.about-items {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}
.about-items__item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px 120px;
}
.about-items__item-description {
    flex: 1 1 520px;
}

.about-items__item:nth-child(1)
    .about-items__item-description
    .about-items__item-description__text
    p:last-child {
    display: none;
}
.about-items__item-content {
    flex: 1 1 450px;
    position: relative;
    max-width: 580px;
}
.about-items__item:nth-child(1) .about-items__item-content,
.about-items__item:nth-child(2) .about-items__item-content {
    border-radius: 28px;
    background: linear-gradient(160deg, #ffffff 0%, #faf9ff 60%, #f4f0ff 100%);
    border: 1px solid rgba(124, 58, 237, 0.08);
    padding: 35px;
    width: 100%;
    margin: 0 auto;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.04),
        0 12px 48px rgba(108, 28, 211, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.about-items__item:nth-child(1) .about-items__item-content:hover,
.about-items__item:nth-child(2) .about-items__item-content:hover {
    transform: translateY(-6px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 20px 64px rgba(108, 28, 211, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.about-items__item:nth-child(3)
    .about-items__item-content
    .about-items__item-content__blocks {
    border-radius: 28px;
    background: linear-gradient(160deg, #ffffff 0%, #fafaff 60%, #f5f3ff 100%);
    border: 1px solid var(--border-light);
    padding: 30px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.03),
        0 10px 40px rgba(108, 28, 211, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.about-items__item:nth-child(1) .about-items__item-content::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url("../images/chart.svg") no-repeat;
    background-position: center top;
    background-size: contain;
}

.about-items__item:nth-child(2) {
    justify-content: center;
}

.about-items__item-content__blocks {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    z-index: 1;
    position: relative;
}

.blocks-block {
    max-width: 350px;
    margin: 0 auto;
    padding: 15px 12px;
    display: flex;
    align-items: center;
    column-gap: 5px;
    height: 60px;
}

.blocks-center__item,
.blocks-block {
    width: 100%;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.03),
        0 4px 16px rgba(108, 28, 211, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blocks-center__item:hover,
.blocks-block:hover {
    border-color: var(--border-purple);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 8px 28px rgba(108, 28, 211, 0.1);
    transform: translateY(-2px);
}

.blocks-block:last-child {
    background: linear-gradient(
        180deg,
        #ffffff 50.79%,
        rgba(248, 249, 252, 0) 100%
    );
    box-shadow: none;
}
.blocks-block__logo {
    position: relative;
}

.blocks-block__logo span {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--lg-purple);
    width: 15px;
    height: 15px;
    right: 2px;
    bottom: 2px;
}
.blocks-block__name {
    display: flex;
    flex-direction: column;
    row-gap: 2px;
    flex: 1;
}
.blocks-block__name span:first-child {
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 500;
}
.blocks-block__name span:last-child {
    color: var(--text-muted);
    font-size: 12px;
}
.blocks-block__income {
    border-radius: 24px;
    background: var(--glass-purple-bg-strong);
    border: 1px solid var(--glass-purple-border);
    padding: 5px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blocks-block__income span {
    color: var(--purple);
    font-size: 12px;
    font-weight: 500;
}
.about-items__item-content__title {
    margin-top: 50px;
}
.about-items__item-content__title h3 {
    text-align: center;
    color: var(--text-primary);
}
.about-items__item-content__text {
    margin-top: 20px;
    text-align: center;
}

.about-items__item-content__button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.about-items__item-content__button .button {
    max-width: 190px;
}

.about-items__item:nth-child(2)
    .about-items__item-content
    .about-items__item-content__blocks,
.about-items__item:nth-child(3)
    .about-items__item-content
    .about-items__item-content__blocks {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}
.about-items__item:nth-child(2)
    .about-items__item-content
    .about-items__item-content__blocks {
    max-width: 400px;
    margin: 0 auto;
}

.about-items__item:nth-child(3) .about-items__item-content {
    margin: 0 auto;
}
.about-items__item:nth-child(3)
    .about-items__item-content
    .about-items__item-content__blocks
    .blocks-center {
    max-width: 280px;
    background: linear-gradient(135deg, #fafaff 0%, #f8f7ff 100%);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 20px 12px;
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.03),
        0 6px 24px rgba(108, 28, 211, 0.04);
}
.about-items__item:nth-child(2) .about-items__item-content,
.about-items__item:nth-child(3)
    .about-items__item-content
    .about-items__item-content__blocks {
    padding: 10px 10px 25px;
}
.blocks-items {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.blocks-items__item {
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6ff 100%);
    border: 1px solid rgba(124, 58, 237, 0.08);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 4px 16px rgba(108, 28, 211, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.blocks-items__item:hover {
    transform: scale(1.15);
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 8px 32px rgba(108, 28, 211, 0.18);
}
.blocks-items__item img {
    object-fit: none;
}

.picture {
    width: 269px;
    height: 269px;
    position: absolute;
    left: 0;
}


.about-items__item:nth-child(2)
    .about-items__item-content
    .about-items__item-content__blocks
    .blocks-center {
    display: flex;
    flex-direction: column;
    row-gap: 0px;
}

.about-items__item:nth-child(2)
    .about-items__item-content
    .about-items__item-content__blocks
    .blocks-center
    .blocks-center__item {
    height: 100px;
    padding: 5px;
    align-content: center;
    position: relative;
    overflow: hidden;
}
.about-items__item:nth-child(2)
    .about-items__item-content
    .about-items__item-content__blocks
    .blocks-center
    .blocks-center__item:nth-child(1) {
    border-radius: 0px 0px 18px 18px;
    background: linear-gradient(180deg, #fafaff 0%, #ffffff 100%);
    border: 1px solid var(--border-light);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.03),
        0 6px 24px rgba(108, 28, 211, 0.05);
}

/*.about-items__item:nth-child(2)*/
/*    .about-items__item-content*/
/*    .about-items__item-content__blocks*/
/*    .blocks-center*/
/*    .blocks-center__item:nth-child(2)::after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    top: -30px;*/
/*    right: -3px;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: url("../images/whatsapp.svg") no-repeat;*/
/*    background-position: top right;*/
/*    background-size: contain;*/
/*}*/

.blocks-center {
    flex: 1;
}

.blocks-center__item-content {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.blocks-center__item-content__info {
    display: flex;
    row-gap: 4px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    transition: all 0.3s ease;
    gap: 20px
}
.blocks-center__item-content__info:hover {
    background: linear-gradient(135deg, #f8f7ff 0%, #f5f3ff 100%);
    border-color: var(--border-purple);
    box-shadow: 0 4px 20px rgba(108, 28, 211, 0.08);
    transform: translateY(-2px);
    border-radius: 14px;
}
.blocks-center__item-content__info span {
    color: var(--text-primary);
    font-weight: 500;
}
.blocks-center__item-content__info span:first-child {
    font-size: 18px;
    color: var(--text-muted);
}   
.blocks-center__item-content__info span:last-child {
    font-size: 18px;
}

.block-center__img {
    max-width: 100px;
    width: 100%;
    border-radius: 12px;
    object-fit: contain;
}

.blocks-center__text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    row-gap: 4px;
}

.blocks__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.block__descr {
    font-size: 13px;
    font-weight: 400;
    color: var(--purple);
    line-height: 1.3;
}

.blocks-center__item-content__progress {
    position: relative;
    width: 100%;
    max-width: 55px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 4px;
}

.blocks-center__item-content__progress span {
    height: 6px;
    border-radius: 8px;
    display: block;
}
.blocks-center__item-content__progress span:first-child {
    background: #f0eff5;
}
.blocks-center__item-content__progress span:last-child {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.3);
}

.about-items__item:nth-child(3)
    .about-items__item-description
    .about-items__item-description__title
    img {
    max-width: 35px;
}
.about-items__item:nth-child(3)
    .about-items__item-description
.about-items__item-description__title {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.about-items__item:nth-child(2)
    .about-items__item-description
    .about-items__item-description__title
    h2
    span,
.about-items__item:nth-child(2)
    .about-items__item-description
    .about-items__item-description__title
    h2
    span,
.about-items__item:nth-child(3)
    .about-items__item-description
    .about-items__item-description__title
    h2
    span {
    color: var(--purple);
}

.about-items__item:nth-child(3)
    .about-items__item-description
    .about-items__item-description__button
    .button {
    max-width: 270px;
}

.about-items__item:nth-child(3)
    .about-items__item-description
    .about-items__item-description__button {
    display: none;
}

.blocks-center__title {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 19px;
}
.blocks-center__subtitle {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 2px;
}
.blocks-center__content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f8f7ff 0%, #fafaff 100%);
    padding: 16px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    row-gap: 12px;
}
.blocks-center__content-item {
    display: flex;
    column-gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 14px;
    transition: all 0.25s ease;
    background: transparent;
}

.blocks-center__content-item:hover {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(108, 28, 211, 0.06);
    transform: translateX(4px);
}

.blocks-center__content-item__logo img {
    width: 25px;
    height: 25px;
}
.blocks-center__content-item__about {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    flex: 1;
}
.blocks-center__content-item__about span {
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 500;
}

.item__about-info {
    display: flex;
    justify-content: space-between;
}
.item__about-progress {
    position: relative;
}
.item__about-progress span {
    display: flex;
    height: 5px;
    border-radius: 120px;
}
.item__about-progress span:first-child {
    background: #f0eff5;
}

.item__about-progress span:last-child {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    transition: width 0.3s ease-in-out;
}

.apple-progress {
    width: 0;
    background: #b388ff;
}

.meta-progress {
    width: 0;
    background: var(--blue);
}
.microsoft-progress {
    width: 0;
    background: var(--lime-green);
}
.netflix-progress {
    width: 0;
    background: var(--red);
}

.profit {
    display: inline-block;
    position: relative;
    font-size: 1.2em;
    transition: transform 0.5s ease;
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
div#about-item-description-2 {
    background: linear-gradient(135deg, #ffffff 0%, #faf9ff 40%, #f4f0ff 100%);
    border: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow:
        0 4px 32px rgba(0, 0, 0, 0.04),
        0 12px 56px rgba(108, 28, 211, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    max-width: 955px;
    padding: 0 50px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

div#about-item-description-2:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 20px 60px rgba(108, 28, 211, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

div#about-item-description-2::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

div#about-item-description-2::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.04) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

div#about-item-description-2-text {
    max-width: 580px;
    margin: 0;
}
div#about-item-description-2-text > p {
    color: var(--text-primary);
    margin: 0;
}

button#get-access-btn {
    background: var(--lg-purple);
    border: none;
    border-radius: 24px;
    max-width: 550px;
    width: 100%;
    height: 62px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 600;
    color: var(--white);
    box-shadow:
        0 4px 24px rgba(108, 28, 211, 0.35),
        0 0 0 0 rgba(124, 58, 237, 0.5);
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2.4s ease-in-out infinite;
}

button#get-access-btn:hover {
    box-shadow:
        0 8px 40px rgba(108, 28, 211, 0.55),
        0 0 0 0 rgba(124, 58, 237, 0.5);
    transform: translateY(-3px);
    animation: none;
}

.about-items__item-description__text-title{
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 35px;
    line-height: 1.22;
    color: var(--text-primary);
    text-align: center;
    margin: 0;

}
/* about */

/* main */

/* footer */
.footer {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf9ff 100%);
    border-top: 1px solid rgba(124, 58, 237, 0.08);
    position: relative;
    margin-top: 20px;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(124, 58, 237, 0.3) 20%, rgba(168, 85, 247, 0.5) 50%, rgba(124, 58, 237, 0.3) 80%, transparent 100%);
}
.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-title,
.footer-policy {
    color: var(--text-secondary);
    text-align: center;
}
.footer-title {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
}
.footer-policy {
    margin-top: 20px;
    font-size: 12px;
    font-weight: 500;
}
/* footer */
.none {
    display: none!important;
}

.blocks-center {
    justify-content: center;
}

/* modal */
.modal-lead {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4;
    padding: 40px 20px;
    overflow-y: scroll;
}
.modal-lead.active {
    display: grid;
}
.modal-lead__content {
    background: linear-gradient(160deg, #ffffff 0%, #faf9ff 60%, #f4f0ff 100%);
    border-radius: 32px;
    border: 1px solid rgba(124, 58, 237, 0.08);
    padding: 40px 28px;
    width: 100%;
    max-width: 620px;
    position: relative;
    z-index: 6;
    animation: scale 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 48px rgba(0, 0, 0, 0.12),
        0 20px 96px rgba(108, 28, 211, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.modal-lead__content-subtitle,
.modal-lead__content-title {
    color: var(--text-primary);
}
.modal-lead__content-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: normal;
}
.modal-lead__content-subtitle {
    margin-top: 10px;
    font-size: 16px;
    line-height: 22px;
}
.modal-lead__content-banner {
    margin-top: 25px;
    padding: 25px 20px;
    background: linear-gradient(135deg, #f8f7ff 0%, #fafaff 100%);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.03),
        0 6px 24px rgba(108, 28, 211, 0.04);
}
.banner__top-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
}
.banner__top-id,
.banner__top-subtitle {
    font-size: 16px;
    line-height: 22px;
}

.banner__top-title img {
    max-width: 35px;
}
.modal-lead__content-subtitle,
.modal-lead__content-title,
.banner__top-title,
.banner__top-subtitle,
.banner__top-id,
.banner__description-title,
.modal-lead__content-note,
.banner__description-subtitle {
    text-align: center;
}
.banner__top-title,
.banner__top-subtitle {
    color: var(--text-primary);
}
.banner__top-subtitle {
    margin-top: 15px;
}
.banner__top-id {
    margin-top: 10px;
    color: var(--purple);
}
.modal-lead__content-banner__description {
    margin-top: 40px;
}
.banner__description-title {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.banner__description-subtitle {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 20px;
}

.modal-lead__content-banner__note {
    margin-top: 25px;
    color: var(--white);
    font-size: 10px;
    line-height: normal;
    background: var(--lg-purple);
    border-radius: 120px;
    width: fit-content;
    margin-left: auto;
    padding: 6px 12px;
}
.modal-lead__content-form {
    margin-top: 25px;
    display: block;
}
.modal-lead__content-form.active {
    display: block;
}
.modal-lead__content-button {
    display: none;
    justify-content: center;
    margin-top: 25px;
}
.modal-lead__content-button .button {
    max-width: 270px;
}
.modal-lead__content-note {
    margin-top: 25px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
}
.modal-lead__overlay {
    animation: fadeIn 0.4s ease-in-out;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 5;
}
/* modal */

/* button */
.button {
    display: flex;
    column-gap: 10px;
    width: 100%;
    height: 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    border-radius: 120px;
    font-size: 14px;
    line-height: 20px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.button:hover {
    box-shadow: 0 8px 32px rgba(108, 28, 211, 0.4);
    transform: translateY(-2px);
}
.button span {
    display: flex;
}

button.button.green-btn.check {
    background: var(--lg-purple);
    border-radius: 24px;
    border: none;
    max-width: 340px;
    width: 100%;
    height: 60px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 24px rgba(108, 28, 211, 0.35),
        0 0 0 0 rgba(124, 58, 237, 0.5);
    animation: pulseGlow 2.4s ease-in-out infinite;
}

button.button.green-btn.check:hover {
    box-shadow:
        0 8px 40px rgba(108, 28, 211, 0.55),
        0 0 0 0 rgba(124, 58, 237, 0.5);
    transform: translateY(-3px);
    animation: none;
}


.green-btn {
    background: var(--lg-purple);
    border: none;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 4px 20px rgba(108, 28, 211, 0.2),
        0 0 0 0 rgba(124, 58, 237, 0.3);
    animation: pulseGlowSmall 3s ease-in-out infinite;
}

.green-btn:hover {
    box-shadow: 0 8px 32px rgba(108, 28, 211, 0.4);
    animation: none;
}

@keyframes pulseGlowSmall {
    0%, 100% {
        box-shadow:
            0 4px 20px rgba(108, 28, 211, 0.2),
            0 0 0 0 rgba(124, 58, 237, 0.3);
    }
    50% {
        box-shadow:
            0 4px 20px rgba(108, 28, 211, 0.2),
            0 0 0 8px rgba(124, 58, 237, 0);
    }
}
.black-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--glass-shadow);
}

.black-btn:hover {
    background: var(--bg-page);
    border-color: var(--purple);
    transition: background 0.3s ease-in-out;
}

.black-btn, .black-btn .button, button.black-btn {
    color: var(--text-primary);
}

.green-btn:active {
    transform: translateY(5%);
}

.black-btn:active {
    transform: translateY(5%);
    border-color: var(--purple);
}

.get-access::after,
.check::after {
    color: var(--white);
    /* background: linear-gradient(90deg, rgba(137, 76, 215, 0.59) 0%, #6C1CD3 100%); */
    position: absolute;
    z-index: 2;
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    top: 3px;
    left: 3px;
    align-items: center;
    display: flex;
    justify-content: center;
    column-gap: 10px;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    text-align: center;
    border-radius: 120px;
    font-size: 14px;
    line-height: 20px;
    background-position-y: 8px;
}

.check::after {
    content: "Получить доступ";
    font-size: 22px;
    color: var(--white);
}
.get-access::after {
    content: "Проверить доступ";
    background-image: url("../images/arrow-back.svg");
    background-position-x: 14px;
    padding-left: 30px;
}
.get-access::before,
.check::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    -webkit-animation: rotate 4s linear infinite;
    animation: rotate 4s linear infinite;
}

/* button */

/* animation */

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

.fade-out {
    animation: fadeOut 0.4s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
    }
}

@keyframes scale {
    0% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}
@-webkit-keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
.spin-up {
    animation: spinUp 0.8s ease-in-out;
}

.spin-down {
    animation: spinDown 0.8s ease-in-out;
}

@keyframes spinUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spinDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
/* animation */

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 1100px) {
    .picture {
        position: static;
    }
    div#about-item-description-2 {
        flex-direction: column;
        justify-content: center;
    }
}

/* --- Tablets: 768px --- */
@media (max-width: 768px) {
    /* intro */
    .intro .container {
        padding: 15px;
        padding-top: 20px;
        max-width: 100%;
    }
    .intro-content {
        padding: 20px 15px;
        border-radius: 20px;
        overflow: hidden;
    }
    .intro-content__header {
        padding: 0 5px;
    }
    .intro-content__about {
        margin-top: 25px;
    }
    .intro-content__about-media {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        background: linear-gradient(160deg, #ffffff 0%, #faf9ff 60%, #f8f7ff 100%);
        border-radius: 20px;
        border: 1px solid rgba(124, 58, 237, 0.08);
        padding: 25px 18px;
        margin-top: 25px;
    }
    .intro-content__about-info__title h1 {
        font-size: 26px;
        line-height: 1.3;
    }
    .intro-content__about-info__subtitle {
        margin-top: 20px;
    }
    .intro-content__about-info__subtitle h3 {
        font-size: 16px;
        line-height: 1.45;
    }
    .intro-content__about-info__button {
        margin-top: 25px;
    }
    .intro-content__about-info__text {
        margin-top: 18px;
    }
    .intro-content__about-info__text p {
        font-size: 14px;
    }
    img.logo {
        width: 100px;
    }

    .media-title {
        font-size: 24px;
        line-height: 1.3;
    }
    .secondary-button {
        width: 240px;
        height: 48px;
        border-radius: 16px;
    }
    .secondary-button__text {
        font-size: 22px;
    }

    /* stats */
    .stats-cards {
        flex-wrap: wrap;
        gap: 10px;
    }
    .stats-card {
        padding: 18px 12px;
        border-radius: 18px;
        min-width: calc(33.333% - 7px);
    }
    .stats-card__value {
        font-size: 18px;
    }

    /* about */
    .about {
        padding: 40px 0;
    }
    .about-items {
        row-gap: 40px;
    }
    .about-items__item {
        flex-direction: column;
        gap: 30px;
    }
    .about-items__item-description {
        flex: 1 1 auto;
        width: 100%;
    }
    .about-items__item-description__title h3 {
        font-size: 24px;
        line-height: 1.3;
    }
    .about-items__item-content {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
    }

    /* about item 1 & 2 content cards */
    .about-items__item:nth-child(1) .about-items__item-content,
    .about-items__item:nth-child(2) .about-items__item-content {
        padding: 20px;
        border-radius: 20px;
    }
    .about-items__item:nth-child(1) .about-items__item-content::after {
        display: none;
    }

    /* about items content blocks */
    .about-items__item:nth-child(2) .about-items__item-content .about-items__item-content__blocks,
    .about-items__item:nth-child(3) .about-items__item-content .about-items__item-content__blocks {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 10px;
    }
    .blocks-items {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    .blocks-items__item {
        width: 44px;
        height: 44px;
    }

    .blocks-center__content {
        padding: 12px;
    }
    .blocks-center__content-item {
        padding: 8px 10px;
    }
    .blocks-center__content-item__logo img {
        width: 22px;
        height: 22px;
    }
    .item__about-info span {
        font-size: 11px;
    }

    .about-items__item-content__button .button {
        max-width: 220px;
    }
    .about-items__item-content__button img {
        width: 120px;
        height: 50px;
    }

    /* CTA section */
    .picture {
        width: 160px;
        height: 160px;
    }
    #about-item-description-2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto;
        padding: 25px 20px;
        border-radius: 24px;
        gap: 20px;
    }
    #about-item-description-2-text {
        max-width: 100%;
        width: 100%;
    }
    #get-access-btn {
        width: 100%;
        max-width: 100%;
        height: 52px;
        font-size: 22px;
        border-radius: 18px;
    }
    .about-items__item-description__text-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    /* advantage cards */
    .advantage-card {
        padding: 14px 16px;
        gap: 12px;
    }
    .advantage-card__icon {
        width: 38px;
        height: 38px;
    }
    .advantage-card:hover {
        transform: translateX(3px);
    }

    .features-grid__inner {
        padding: 20px;
    }

    /* buttons */
    button.button.green-btn.check {
        width: 280px;
        height: 52px;
        border-radius: 20px;
    }
    .check::after {
        font-size: 18px;
    }
    .green-btn {
        border-radius: 16px;
    }

    /* footer */
    .footer {
        padding: 30px 0;
    }
    .footer-policy {
        font-size: 11px;
        margin-top: 14px;
        line-height: 1.4;
    }

    /* modal */
    .modal-lead {
        padding: 20px 15px;
    }
    .modal-lead__content {
        padding: 28px 16px;
        border-radius: 24px;
    }
    .modal-lead__content-title {
        font-size: 22px;
    }
    .modal-lead__content-subtitle {
        font-size: 14px;
    }
    .modal-lead__content-banner {
        padding: 20px 14px;
    }

    /* how it works */
    .how-it-works__steps {
        grid-template-columns: 1fr;
    }
    .how-it-works__inner {
        padding: 40px 20px 30px;
        border-radius: 24px;
    }
    .how-it-works__title {
        font-size: 30px;
    }
    .how-it-works__header {
        margin-bottom: 36px;
    }

    /* features grid */
    .features-grid__inner {
        padding: 40px 20px 30px !important;
        border-radius: 24px !important;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Phones: 480px --- */
@media (max-width: 480px) {
    .intro .container {
        padding: 10px;
        padding-top: 15px;
        max-width: 100%;
    }
    .intro-content {
        padding: 15px 10px;
        border-radius: 14px;
    }
    .intro-content__about {
        margin-top: 20px;
    }
    .intro-content__about-info__title h1 {
        font-size: 22px;
        line-height: 1.25;
    }
    .intro-content__about-info__subtitle h3 {
        font-size: 15px;
    }

    /* stats single column */
    .stats-cards {
        flex-direction: column;
        gap: 8px;
    }
    .stats-card {
        min-width: 100%;
        padding: 14px 12px;
        border-radius: 16px;
    }
    .stats-card__value {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .media-title {
        font-size: 22px;
    }
    .secondary-button {
        width: 220px;
        height: 44px;
    }
    .secondary-button__text {
        font-size: 20px;
    }

    .intro-content__about-media__text p {
        font-size: 14px;
    }
    .intro-content__about-media {
        gap: 14px;
    }

    /* about */
    .about {
        padding: 30px 0;
    }
    .about-items {
        row-gap: 30px;
    }
    .about-items__item {
        gap: 22px;
    }
    .about-items__item-description__title h3 {
        font-size: 20px;
    }
    .about-items__item:nth-child(1) .about-items__item-content,
    .about-items__item:nth-child(2) .about-items__item-content {
        padding: 15px;
    }

    .blocks-center__content-item {
        flex-wrap: wrap;
        gap: 6px;
    }

    /* CTA */
    .picture {
        position: static;
        width: 130px;
        height: 130px;
    }
    #about-item-description-2 {
        padding: 18px 14px;
        border-radius: 20px;
    }
    .about-items__item-description__text-title {
        font-size: 19px;
    }
    #get-access-btn {
        height: 46px !important;
        font-size: 19px !important;
    }

    /* buttons */
    button.button.green-btn.check {
        width: 100%;
        max-width: 280px;
        height: 48px;
    }
    .check::after {
        font-size: 16px;
    }

    /* modal */
    .modal-lead__content {
        padding: 22px 12px;
    }
    .modal-lead__content-title {
        font-size: 19px;
    }
    .modal-lead__content-subtitle {
        font-size: 13px;
    }
    .banner__top-title {
        font-size: 18px;
    }

    .how-it-works__title {
        font-size: 24px;
    }
    .how-it-works__subtitle {
        font-size: 14px;
    }
    .how-it-works__step {
        padding: 22px 16px 20px;
        border-radius: 20px;
    }
    .how-it-works__step-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
    }
    .how-it-works__step-title {
        font-size: 18px;
    }
    .how-it-works__step-text {
        font-size: 14px;
    }

    .advantage-card {
        padding: 12px 14px;
        gap: 10px;
        border-radius: 14px;
    }
    .advantage-card__icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }
    .advantage-card__icon svg {
        width: 14px;
        height: 14px;
    }
    .text-description {
        font-size: 14px;
    }

    .feature-card {
        padding: 20px 14px;
        border-radius: 20px;
    }
    .feature-card__icon {
        width: 46px;
        height: 46px;
    }
    .feature-card__title {
        font-size: 15px;
    }
    .feature-card__text {
        font-size: 13px;
    }
}

/* --- Small phones: 375px --- */
@media (max-width: 375px) {
    .intro-content__about-info__title h1 {
        font-size: 20px;
    }
    .intro-content__about-info__subtitle h3 {
        font-size: 14px;
    }
    .media-title {
        font-size: 20px;
    }
    .secondary-button {
        width: 200px;
        height: 42px;
    }
    .secondary-button__text {
        font-size: 18px;
    }
    .about-items__item-description__text-title {
        font-size: 17px;
    }
    #get-access-btn {
        height: 44px !important;
        font-size: 17px !important;
    }
    .how-it-works__title {
        font-size: 22px;
    }
    .how-it-works__step {
        padding: 18px 14px 16px;
    }
    .how-it-works__step-icon {
        width: 46px;
        height: 46px;
    }
    .how-it-works__step-title {
        font-size: 16px;
    }
    .how-it-works__step-number {
        font-size: 11px;
    }
    .modal-lead__content {
        padding: 18px 10px;
    }
}

/* ==============================
   TABLET-UP / DESKTOP
   ============================== */
@media (min-width: 450px) {
    .about-items__item:nth-child(2)
        .about-items__item-content
        .about-items__item-content__blocks
        .blocks-center
        .blocks-center__item {
        padding: 15px;
    }
    .about-items__item:nth-child(2)
        .about-items__item-content
        .about-items__item-content__blocks,
    .about-items__item:nth-child(3)
        .about-items__item-content
        .about-items__item-content__blocks {
        column-gap: 20px;
    }
    button#get-access-btn {
        font-size: 16px !important;
    }
}

/* media */
.features-grid-item {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.features-grid__inner {
    width: 100%;
    background: linear-gradient(160deg, #ffffff 0%, #faf9ff 60%, #f5f2ff 100%);
    border-radius: 32px;
    padding: 60px 50px 50px;
    border: 1px solid var(--border-light);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.03),
        0 12px 48px rgba(108, 28, 211, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.features-grid__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #7c3aed 20%, #a855f7 50%, #7c3aed 80%, transparent 100%);
    z-index: 2;
}

@media (min-width: 650px) {
    .intro-content {
        padding: 40px 50px;
    }
    .footer,
    .about {
        padding: 100px 0;
    }

    .about-items {
        row-gap: 100px;
    }

    .about-items__item-content__button .button {
        max-width: 270px;
    }
    .intro-content__header-logo {
        max-width: 80px;
    }

    h1 {
        font-size: 48px;
        font-weight: 700;
        line-height: 48px;
    }

    h3,
    h4 {
        font-size: 40px;
        line-height: normal;
    }
    .about-items__item:nth-child(2)
        .about-items__item-description
        .about-items__item-description__title
        h2
        span,
    .about-items__item:nth-child(3)
        .about-items__item-description
        .about-items__item-description__title
        h2
        span {
        color: var(--purple);
    }

    p {
        font-size: 16px;
        line-height: 22px;
    }
    .about-items__item-description__text {
        margin-top: 40px;
    }
    .about-items__item-content__text,
    .about-items__item-content__button {
        margin-top: 25px;
    }
    .about-items__item:nth-child(2) .about-items__item-content,
    .about-items__item:nth-child(3)
        .about-items__item-content
        .about-items__item-content__blocks {
        padding: 20px 32px;
    }
}
@media (min-width: 950px) {
    .txt-1 {
        display: none;
    }
    .intro-content__about-info__text {
        /* max-width: 380px; */
        width: 100%;
    }
    .intro-content__about-info__subtitle {
        margin-top: 25px;
    }

    .intro-content__about-info__button {
        margin-top: 60px;
    }

    .intro-content__about-info__video {
        display: none;
    }
    .intro-content__about-media {
        display: flex;
        flex-direction: column;
        background: linear-gradient(160deg, #ffffff 0%, #fafaff 60%, #f8f7ff 100%);
        border-radius: 28px;
        border: 1px solid var(--border-light);
        padding: 40px;
        position: relative;
        align-items: center;
        justify-content: center;
        gap: 20px;
        box-shadow:
            0 4px 24px rgba(0, 0, 0, 0.04),
            0 12px 48px rgba(108, 28, 211, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
    .intro-content__about-media__video {
        max-width: 500px;
        margin: 0 auto;
    }

    .intro-content__about-info__button .button {
        max-width: 316px;
    }

    .intro-content__about {
        display: flex;
        align-items: center;
        column-gap: 50px;
    }
    .intro-content__about-info__title h1 {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
    }
    
    .intro-content__about-info__text,
    .intro-content__about-media__text,
    .intro-content__about-info__title,
    .intro-content__about-info__subtitle {
        text-align: center;
    }
    .intro-content__about-info__button {
        justify-content: center;
    }
    .intro-content__about-info {
        flex: 1 1 500px;
    }
    .intro-content__about-media {
        flex: 1 1 500px;
    }
    .intro-content {
        padding: 40px 100px 80px;
    }
    .intro-content__about-info__subtitle {
        max-width: 100%;
    }

    .check::after {
        background-position-x: 175px;
    }
    .get-access::after {
        background-position-x: 52px;
    }
}

@media (min-width: 1130px) {
    .about-items__item:nth-child(1)
        .about-items__item-content
        .about-items__item-content__title,
    .about-items__item:nth-child(1)
        .about-items__item-content
        .about-items__item-content__text {
        display: none;
    }
    .about-items__item:nth-child(1)
        .about-items__item-description
        .about-items__item-description__text
        p:last-child {
        display: block;
    }
    .about-items__item:nth-child(3)
        .about-items__item-content
        .about-items__item-content__button {
        display: none;
    }
    .about-items__item:nth-child(3)
        .about-items__item-description
        .about-items__item-description__button {
        display: block;
        margin-top: 40px;
    }
    .about-items__item:nth-child(3)
        .about-items__item-description
        .about-items__item-description__title {
        row-gap: 40px;
    }
/* how-it-works */
.how-it-works {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.how-it-works__inner {
    width: 100%;
    background: linear-gradient(160deg, #ffffff 0%, #faf9ff 60%, #f5f2ff 100%);
    border-radius: 32px;
    padding: 60px 50px 50px;
    border: 1px solid var(--border-light);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.03),
        0 12px 48px rgba(108, 28, 211, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.how-it-works__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #7c3aed 20%, #a855f7 50%, #7c3aed 80%, transparent 100%);
    z-index: 2;
}

.how-it-works__inner::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.04) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.how-it-works__header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.how-it-works__title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.how-it-works__subtitle {
    margin-top: 12px;
    font-size: 18px;
    color: var(--text-secondary);
}

.how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.how-it-works__step {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 28px 32px;
    border: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.03),
        0 6px 24px rgba(108, 28, 211, 0.04);
}

.how-it-works__step:hover {
    transform: translateY(-8px);
    border-color: var(--border-purple);
    box-shadow:
        0 8px 32px rgba(108, 28, 211, 0.1),
        0 16px 48px rgba(108, 28, 211, 0.08);
}

.how-it-works__step::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--lg-purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-it-works__step:hover::after {
    transform: scaleX(1);
}

.how-it-works__step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(168, 85, 247, 0.12) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    transition: all 0.35s ease;
}

.how-it-works__step:hover .how-it-works__step-icon {
    background: var(--lg-purple);
    color: #ffffff;
    transform: scale(1.06);
    box-shadow: 0 8px 28px rgba(108, 28, 211, 0.25);
}

.how-it-works__step-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.how-it-works__step-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.how-it-works__step-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* features grid */
.features-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-card {
    background: linear-gradient(160deg, #ffffff 0%, #faf9ff 60%, #f5f2ff 100%);
    border-radius: 24px;
    padding: 28px 22px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.03),
        0 6px 24px rgba(108, 28, 211, 0.04);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-purple);
    box-shadow:
        0 8px 28px rgba(108, 28, 211, 0.1),
        0 16px 48px rgba(108, 28, 211, 0.08);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(168, 85, 247, 0.12) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    transition: all 0.35s ease;
}

.feature-card:hover .feature-card__icon {
    background: var(--lg-purple);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(108, 28, 211, 0.25);
}

.feature-card__title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-card__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* features grid responsive covered in main responsive section above */

/* media */
