@import url('https://fonts.googleapis.com/css2?family=Oranienbaum&family=Cormorant+Garamond:ital,wght@0,600;1,600&display=swap');

@font-face {
    font-family: 'LT Superior';
    src: url('assets/fonts/LTSuperior-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LT Superior';
    src: url('assets/fonts/LTSuperior-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LT Superior';
    src: url('assets/fonts/LTSuperior-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LT Superior';
    src: url('assets/fonts/LTSuperior-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-cream: #F8EDE4;
    --color-title-light: #F5EFE0;
    --color-gold: #C4A055;
    --color-btn-text: #EFEFEF;
    --color-section-bg: #F8EDE4;
    --color-green-dark: #22503A;
    --color-line-gray: #4A5A4E;
    --color-note-gray: #8A8F8A;
    --btn-grad: linear-gradient(180deg, #C4A055 0%, #C59864 36%, #956938 97%);
    --btn-border-grad: linear-gradient(180deg, #9D7343 0%, #FFF6D7 100%);
    --font-display: 'Oranienbaum', Georgia, 'Times New Roman', serif;
    --font-body: 'LT Superior', 'Century Gothic', 'Futura', Avenir, sans-serif;
    --font-quote: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --side-left: 72px;
    --side-right: 73px;
    --hero-top: 220px;
    --content-width: 694px;
    --money-price-card-bg: linear-gradient(180deg, #F8EDE4 0%, #DDCCB6 100%);
    --money-price-card-border: linear-gradient(180deg, #FFF194 0%, #E8D49B 100%);
    --cal-price-card-bg: radial-gradient(100% 100% at 0% 0%, #F8EDE4 0%, #DDCCB6 100%);
    --cal-price-card-border: linear-gradient(180deg, #FFF194 0%, #E8D49B 100%);
    --summary-card-bg: radial-gradient(100% 100% at 0% 0%, #F8EDE4 0%, #DDCCB6 100%);
    --summary-card-border: linear-gradient(180deg, #FFF194 0%, #E8D49B 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: #0A120C;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: inherit;
    color: inherit;
    text-decoration: none;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px var(--side-right) 0 var(--side-left);
    pointer-events: none;
}

.header__logo,
.header__burger {
    pointer-events: auto;
}

.header__logo img {
    width: 200px;
    height: 21.92px;
}

.header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: -10px -8px -10px 0;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.header__burger img {
    width: 35px;
    height: 25px;
}

.cta-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 303px;
    height: 56px;
    padding: 4px 6px 4px 32px;
    border-radius: 50px;
    border: 1px solid transparent;
    overflow: hidden;
    background: var(--btn-grad) padding-box, var(--btn-border-grad) border-box;
    background-size: 100% 100%, 100% 100%;
    box-shadow: inset 0 1px 4px rgba(255, 232, 198, 1), 0 2px 8px rgba(196, 160, 85, 0.6);
    transition: transform 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth);
    will-change: transform;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(20deg) translateX(-40%);
    transition: transform 0.7s var(--ease-smooth);
    pointer-events: none;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: inset 0 1px 4px rgba(255, 232, 198, 1), 0 10px 24px rgba(196, 160, 85, 0.5);
}

.cta-button:hover::before {
    transform: rotate(20deg) translateX(340%);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.985);
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.cta-button:focus-visible {
    outline: 2px solid var(--color-title-light);
    outline-offset: 3px;
}

.cta-button__text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.075px;
    color: var(--color-btn-text);
    white-space: nowrap;
    text-transform: uppercase;
}

.cta-button__icon {
    width: 41px;
    height: 41px;
    flex-shrink: 0;
    transition: transform 0.45s var(--ease-smooth);
}

.cta-button:hover .cta-button__icon {
    transform: rotate(12deg) translateX(2px);
}

.hero {
    position: relative;
    width: 100%;
    min-height: 823px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/bg-geometry.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: var(--hero-top);
    padding-left: var(--side-left);
    padding-right: 0;
}

@media (min-width: 1025px) {
    .hero__inner {
        flex-direction: row;
    }
    .hero__content {
        order: 1;
    }
    .hero__visual {
        order: 2;
    }
}

.hero__content {
    width: var(--content-width);
    max-width: 100%;
}

.hero__eyebrow {
    width: 100%;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--color-cream);
    text-transform: uppercase;
}

.hero__title {
    margin-top: 16px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 60px;
    line-height: 1.15;
    letter-spacing: 0;
}

.hero__title-line {
    display: block;
    text-transform: uppercase;
}

.hero__title-line--light {
    color: var(--color-title-light);
}

.hero__title-line--gold {
    color: var(--color-gold);
}

.hero__description {
    margin-top: 24px;
    width: 100%;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0;
    color: rgba(245, 239, 224, 0.65);
}

.hero__description strong {
    font-weight: 700;
    color: rgba(245, 239, 224, 0.9);
}

.hero__cta {
    margin-top: 48px;
}

.hero__note {
    margin-top: 15.5px;
    width: max-content;
    max-width: 100%;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    line-height: 19.2px;
    letter-spacing: 0;
    color: rgba(245, 239, 224, 0.35);
    white-space: nowrap;
}

.hero__visual {
    position: relative;
    flex-shrink: 0;
    width: 711.79px;
    height: 745.18px;
    margin-right: 40px;
    align-self: flex-end;
}

.hero__glow {
    position: absolute;
    left: 50%;
    top: 38%;
    width: 449px;
    height: 449px;
    transform: translate(-50%, -50%);
    background: #C88C48;
    border-radius: 50%;
    filter: blur(120px);
    mix-blend-mode: plus-lighter;
    z-index: 0;
    pointer-events: none;
}

.hero__woman {
    position: relative;
    z-index: 1;
    width: 711.79px;
    height: 746.80px;
    object-fit: contain;
}

.how {
    position: relative;
    width: 100%;
    min-height: 823px;
    background: var(--color-section-bg);
    overflow: visible;
    padding: 62px 20px 128px;
}

.how__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.how__icon {
    position: absolute;
    top: 32px;
    left: 50%;
    width: 110px;
    height: 110px;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.how__inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    padding-top: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.how__label {
    display: flex;
    align-items: center;
    gap: 16px;
}

.how__label-line {
    width: 11px;
    border-top: 0.5px solid var(--color-line-gray);
}

.how__label-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--color-green-dark);
    text-transform: uppercase;
    white-space: nowrap;
}

.how__title {
    margin-top: 24px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: 0;
}

.how__title-line {
    display: block;
    text-transform: uppercase;
}

.how__title-line--green {
    color: var(--color-green-dark);
}

.how__title-line--gold {
    color: var(--color-gold);
}

.how__text {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.how__text p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--color-line-gray);
}

.how__text strong {
    font-weight: 700;
    color: var(--color-line-gray);
}

.how__quote {
    margin-top: 64px;
    display: inline-flex;
    align-items: center;
    padding: 16px 24px;
    background: rgba(196, 160, 85, 0.07);
    border-left: 2px solid var(--color-gold);
    font-family: var(--font-quote);
    font-weight: 600;
    font-style: italic;
    font-size: 22px;
    line-height: 33px;
    letter-spacing: 0;
}

.how__quote-dark {
    color: var(--color-green-dark);
}

.how__quote-gold {
    color: var(--color-gold);
    margin-left: 0.3em;
}

.how__cta {
    margin-top: 56px;
}

.how__note {
    margin-top: 8px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    line-height: 19.2px;
    letter-spacing: 0.5px;
    color: var(--color-note-gray);
    white-space: nowrap;
}

.section-insight {
    position: relative;
    width: 100%;
    min-height: 893px;
    padding: 100px 20px 100px;
    background: radial-gradient(100% 100% at 0% 0%, #1A3124 0%, #0E1A12 100%);
    display: flex;
    justify-content: center;
}

.section-insight__inner {
    max-width: 1380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-insight__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    color: #F8EDE4;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.section-insight__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #C4A055;
    text-align: center;
    margin-bottom: 8px;
}

.section-insight__subtext {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
    color: #F8EDE4;
    text-align: center;
    width: 740px;
    max-width: 100%;
    margin: 0 auto 48px;
}

.insight-divider {
    display: block;
    margin: 8px auto;
    max-width: 8px;
    width: 100%;
    height: auto;
}

@media (min-width: 1025px) {
    .insight-divider {
        width: 0;
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        display: block;
        opacity: 0;
        pointer-events: none;
        flex-shrink: 0;
        overflow: hidden;
    }
}

.insight-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    margin-bottom: 48px;
}

.insight-card {
    background: rgba(26, 49, 36, 0.6);
    border: 1px solid rgba(196, 160, 85, 0.25);
    border-radius: 8px;
    width: 251.4px;
    min-height: 400px;
    height: auto;
    padding: 24px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.insight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 160, 85, 0.6);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.insight-card__image {
    width: 219.4px;
    height: 196px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.insight-card__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0;
    color: #ffefe3b0;
    width: 219.4px;
    min-height: 132px;
    display: block;
    text-align: center;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: auto;
    word-break: break-word;
    overflow-wrap: break-word;
}

.insight-gold {
    color: #C4A055;
}

.insight-footer {
    width: 100%;
    max-width: 1297px;
    padding: 24px 40px;
    background: rgba(16, 35, 27, 0.6);
    border-radius: 8px;
    text-align: center;
}

.insight-footer__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    color: #F8EDE4;
}

.insight-gold-bold {
    color: #C4A055;
    font-weight: 700;
}

.section-compare {
    position: relative;
    width: 100%;
    min-height: 893px;
    background: #F8EDE4;
    padding: 144px 20px 130px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.section-compare__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.section-compare__inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-compare__top-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #22503A;
    text-align: center;
}

.section-compare__main-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #C4A055;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 56px;
}

.compare-grid {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 64px;
}

.compare-card {
    flex: 1;
    width: 479px;
    min-height: 335px;
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
}

.compare-card--left {
    background: #ffffff73;
    border-radius: 18px 0 0 18px;
}

.compare-card--right {
    background: linear-gradient(180deg, #022B1B 0%, #12271D 100%);
    border-radius: 0 18px 18px 0;
}

.compare-card__header {
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 8px;
}

.compare-card--right .compare-card__header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-card__title {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #838383;
    text-transform: uppercase;
}

.compare-card__title--gold {
    color: #C4A055;
}

.compare-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compare-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
}

.compare-card--left .compare-card__list li {
    color: #4A5A4E;
}

.compare-card--right .compare-card__list li {
    color: #F8EDE4;
}

.compare-card__list li img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 4px;
}

.compare-star {
    color: #C4A055;
    font-size: 20px;
    line-height: 24px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
    margin-top: 2px;
}

.section-compare__cta {
    margin-bottom: 8px;
}

.section-compare__note {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    line-height: 19.2px;
    letter-spacing: 0.5px;
    color: #8A8F8A;
    text-align: center;
}

.section-report {
    position: relative;
    width: 100%;
    min-height: 1177px;
    background: #0E1B12;
    padding: 97.59px 20px 100px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.section-report__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 449px;
    height: 449px;
    background: #C88C48;
    border-radius: 50%;
    filter: blur(200px);
    z-index: 0;
    pointer-events: none;
}

.section-report__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-report__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    color: #F8EDE4;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

.section-report__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #F8EDE4;
    text-align: center;
    margin-bottom: 16px;
}

.section-report__title-gold {
    color: #C4A055;
}

.section-report__subtext {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #F8EDE4;
    text-align: center;
    max-width: 700px;
    margin-bottom: 90px;
}

.report-footer {
    position: relative;
    isolation: isolate;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    min-height: 82px;
    padding: 12px 8px;
    border: 1px solid rgba(248, 237, 228, 0.15);
    border-radius: 16px;
    background: rgba(14, 27, 18, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
}

.report-footer__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    color: #F8EDE4;
}

.report-footer__gold {
    color: #C4A055;
}

.section-accordion {
    position: relative;
    width: 100%;
    min-height: 1109.41px;
    background: #F8EDE4;
    padding: 100px 20px 100px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.section-accordion__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.section-accordion__inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-accordion__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #22503A;
    text-align: center;
    margin-bottom: 8px;
}

.section-accordion__title-gold {
    color: #9A7830;
}

.section-accordion__subtext {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #4A5A4E;
    text-align: center;
    margin-bottom: 48px;
}

.accordion-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #F8EDE4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --acc-num-w: 64px;
}

.accordion-item {
    border-bottom: 1px solid #E2D6C2;
    transition: all 0.3s var(--ease-smooth);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-item:first-child .accordion-header {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.accordion-item:last-child.active .accordion-body {
    border-radius: 0 0 20px 20px;
}

.accordion-header {
    display: flex;
    cursor: pointer;
    align-items: stretch;
    transition: background 0.3s var(--ease-smooth);
}

.accordion-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--acc-num-w);
    flex-shrink: 0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #C4A055;
    background: #EADDCA;
    transition: all 0.3s var(--ease-smooth);
}

.accordion-title-wrap {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s var(--ease-smooth);
}

.accordion-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #00341D;
}

.accordion-pages {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #8A9A8E;
}

.accordion-item.active {
    background: #FFFFFF;
}

.accordion-item.active .accordion-number {
    background: #0F2318;
    color: #C4A055;
}

.accordion-item.active .accordion-title-wrap {
    padding: 20px 24px;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s var(--ease-smooth);
    padding: 0 24px;
    background: #FFFFFF;
}

.accordion-body p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4A5A4E;
}

.accordion-item.active .accordion-body {
    max-height: 300px;
    padding: 0 48px 24px calc(var(--acc-num-w) + 24px);
    background: linear-gradient(to right, #0F2318 0, #0F2318 var(--acc-num-w), #FFFFFF var(--acc-num-w), #FFFFFF 100%);
}

.section-offer {
    position: relative;
    width: 100%;
    min-height: 774px;
    background: #0E1A12;
    padding: 100px 20px 80px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.section-offer__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.section-offer__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: rgba(196, 160, 85, 0.08);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.section-offer__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-offer__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    color: #4A5A4E;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

.section-offer__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #F8EDE4;
    text-align: center;
    margin-bottom: 16px;
}

.section-offer__title-gold {
    color: #C4A055;
}

.section-offer__subtext {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #F8EDE4;
    text-align: center;
    max-width: 700px;
    margin-bottom: 48px;
}

.offer-card {
    width: 100%;
    max-width: 958px;
    padding: 24px;
    border-radius: 20px;
    background: radial-gradient(100% 100% at 0% 0%, #F8EDE4 0%, #DDCCB6 100%);
    display: flex;
    gap: 48px;
    overflow: hidden;
    box-sizing: border-box;
}

.offer-col {
    flex: 1;
    position: relative;
    min-width: 0;
}

.offer-col--list {
    flex: 0 0 55%;
    min-width: 0;
}

.offer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.offer-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #22503A;
    padding: 12px 0;
    border-bottom: 1px solid rgba(34, 80, 58, 0.08);
}

.offer-list__item:last-child {
    border-bottom: none;
}

.offer-list__item strong {
    font-weight: 700;
    color: #1A3D2C;
}

.offer-star {
    color: #C4A055;
    font-size: 16px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    margin-top: 2px;
}

.offer-col--price {
    flex: 0 0 38%;
    min-width: 0;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.offer-divider-vertical {
    position: absolute;
    top: -24px;
    bottom: -24px;
    left: 0;
    width: 1px;
    background: rgba(34, 80, 58, 0.1);
}

.offer-prices {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.offer-price-old {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #605B4E;
    text-decoration: line-through;
}

.offer-discount {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    color: #F8EDE4;
    background: linear-gradient(180deg, #C4A055 0%, #C59864 36%, #956938 97%);
    padding: 2px 12px;
    border-radius: 50px;
    line-height: 1.5;
}

.offer-price-current {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    color: #77572D;
    margin-bottom: 16px;
}

.offer-divider-romb-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.offer-divider-romb {
    width: 352px;
    height: 14px;
    object-fit: contain;
}

.offer-subnote {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    color: #4A5A4E;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.offer-cta {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    height: auto;
    min-height: 56px;
    padding: 10px 10px 10px 24px;
    gap: 12px;
}

.offer-cta .cta-button__text {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 14px;
    line-height: 19px;
    white-space: normal;
    text-align: center;
}

.offer-cta .cta-button__icon {
    margin-left: auto;
}

.offer-check-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 0;
    margin: 0;
}

.offer-check-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    color: #4A5A4E;
}

.check-mark {
    color: #C4A055;
    font-weight: 700;
    font-size: 14px;
}

.section-author {
    position: relative;
    width: 100%;
    min-height: 880px;
    background: #0E1A12;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.section-author__inner {
    position: relative;
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-col {
    position: relative;
}

.author-col--left {
    flex: 0 0 660px;
}

.author-col--right {
    flex: 0 0 507px;
    display: flex;
    flex-direction: column;
    margin-right: 40px;
}

.author-visual-wrapper {
    position: relative;
    width: 560px;
    height: 560px;
    margin-left: 40px;
    margin-top: 0;
}

.author-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    position: relative;
    z-index: 1;
}

.author-quote-card {
    position: absolute;
    left: 576px;
    top: 340px;
    width: 257px;
    min-height: 123px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(248, 237, 228, 0.15);
    border-radius: 5px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author-quote-line {
    width: 99px;
    height: 0;
    border-top: 1px solid #C4A055;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.author-quote-text {
    font-family: var(--font-quote);
    font-weight: 600;
    font-style: italic;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0;
    color: #F8EDE4;
    margin: 0;
}

.author-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #F8EDE4;
    margin-bottom: 20px;
}

.author-title__gold {
    color: #C4A055;
}

.author-texts {
    display: flex;
    flex-direction: column;
}

.author-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0;
    color: #F5EFE0;
}

.author-text:nth-of-type(1) {
    margin-bottom: 53.83px;
}

.author-text:nth-of-type(2) {
    margin-bottom: 44.25px;
}

.author-text--last {
    margin-bottom: 0;
}

.author-gold {
    color: #C4A055;
}

.section-testimonials {
    position: relative;
    width: 100%;
    padding: 100px 0 60px;
    background: #F8EDE4;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.section-testimonials__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.section-testimonials__inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-testimonials__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #22503A;
    text-align: center;
    margin-bottom: 8px;
}

.section-testimonials__title-gold {
    color: #9A7830;
}

.section-testimonials__subtext {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #4A5A4E;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1350px;
    padding: 0 60px;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    padding: 10px 0 20px 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 280px;
    height: 480px;
    scroll-snap-align: start;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s var(--ease-smooth);
    background: #0F2318;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-video-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(22, 48, 35, 0.27) 0%, #0F2318 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-play-btn {
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url('assets/svg-overlay.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.3s;
    cursor: pointer;
}

.testimonial-card:hover .testimonial-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-timer {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 4px;
    width: 35px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.testimonials-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #F8EDE4;
    border: 1px solid #C4A055;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    z-index: 10;
    color: #22503A;
}

.testimonials-nav-btn:hover {
    background: #C4A055;
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 20px rgba(196, 160, 85, 0.3);
}

.testimonials-nav-btn svg {
    width: 24px;
    height: 24px;
}

.testimonials-nav-btn--prev {
    left: 0;
}

.testimonials-nav-btn--next {
    right: 0;
}

.section-transformation {
    position: relative;
    width: 100%;
    min-height: 1260.9px;
    background: radial-gradient(100% 100% at 0% 0%, #1A3124 0%, #0E1A12 100%);
    padding: 100px 20px 60px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.section-transformation__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.section-transformation__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-transformation__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    color: #F8EDE4;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

.section-transformation__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #F8EDE4;
    text-align: center;
    margin-bottom: 48px;
}

.section-transformation__title-gold {
    color: #C4A055;
}

.transform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 960px;
    margin-bottom: 48px;
}

.transform-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 8px;
    padding: 0;
}

.transform-col__header {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.transform-col--before .transform-col__header {
    color: rgba(245, 239, 224, 0.3);
}

.transform-col--before .transform-row {
    background: #0F1C15;
    border-radius: 8px;
    padding: 12px 16px;
}

.transform-col--before .transform-row p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: rgba(245, 239, 224, 0.4);
}

.transform-col--after .transform-col__header {
    color: #E8D49B;
}

.transform-col--after .transform-row {
    background: #1C2717;
    border-radius: 8px;
    padding: 12px 16px;
}

.transform-col--after .transform-row p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #F8EDE4;
}

.transform-limits-card {
    width: 100%;
    max-width: 960px;
    min-height: 387px;
    padding: 48px 40px 40px;
    border-radius: 16px;
    background: radial-gradient(100% 100% at 0% 0%, #F8EDE4 0%, #DDCCB6 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.limits-card__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0;
    color: #0F2318;
    margin-bottom: 12px;
    max-width: 800px;
}

.limits-card__title-gold {
    color: #9A7830;
    white-space: nowrap;
}

.limits-card__subtext {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0;
    color: #4A5A4E;
    max-width: 700px;
    margin-bottom: 24px;
}

.limits-card__status-row {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.limits-status-badge {
    background: rgba(180, 60, 60, 0.1);
    color: #C0392B;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.4;
    padding: 6px 16px;
    border-radius: 20px;
}

.limits-progress-wrapper {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}

.limits-progress-track {
    width: 100%;
    height: 8px;
    background: rgba(34, 80, 58, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.limits-progress-fill {
    height: 100%;
    background: #9A7830;
    border-radius: 10px;
}

.limits-progress-sub {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0;
    color: #8A9A8E;
    margin: 0;
}

.limits-cta {
    height: 56px;
    width: auto;
    min-width: 280px;
    padding: 4px 6px 4px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.limits-cta .cta-button__text {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.section-whatsapp {
    position: relative;
    width: 100%;
    min-height: 869.59px;
    background: #0E1B12;
    padding: 7.59px 20px 100px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.section-whatsapp__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: rgba(196, 160, 85, 0.08);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.section-whatsapp__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-whatsapp__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    color: #F8EDE4;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

.section-whatsapp__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #F8EDE4;
    text-align: center;
    margin-bottom: 48px;
}

.section-whatsapp__title-gold {
    color: #C4A055;
}

.whatsapp-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1314px;
    padding: 20px 50px;
}

.whatsapp-track {
    display: flex;
    gap: 30px;
    padding: 10px 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.whatsapp-track::-webkit-scrollbar {
    display: none;
}

.whatsapp-phone-card {
    flex: 0 0 280px;
    height: auto;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    transition: transform 0.3s var(--ease-smooth);
}

.whatsapp-phone-card:hover {
    transform: translateY(-4px);
}

.whatsapp-phone-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.whatsapp-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(196, 160, 85, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    z-index: 10;
    color: #F8EDE4;
}

.whatsapp-nav-btn:hover {
    background: #C4A055;
    border-color: #C4A055;
    color: #0E1B12;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(196, 160, 85, 0.3);
}

.whatsapp-nav-btn svg {
    width: 28px;
    height: 28px;
}

.whatsapp-nav-btn--prev {
    left: 0;
}

.whatsapp-nav-btn--next {
    right: 0;
}

.section-steps {
    position: relative;
    width: 100%;
    min-height: 950px;
    background: #F8EDE4;
    padding: 100px 20px 60px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.section-steps__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.section-steps__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-steps__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #22503A;
    text-align: center;
    margin-bottom: 8px;
}

.section-steps__title-gold {
    color: #9A7830;
}

.section-steps__subtext {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #4A5A4E;
    text-align: center;
    margin-bottom: 44px;
}

.steps-roadmap {
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 1200px;
}

.steps-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1138px;
    height: 245.77px;
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
}

.step-item {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.step-number-bg {
    position: absolute;
    top: -60px;
    left: -40px;
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 400;
    line-height: 1;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
    background: linear-gradient(180deg, #C4A055 0%, #F5F7F8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content {
    position: relative;
    z-index: 2;
    max-width: 280px;
}

.step-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0;
    color: #0F2318;
    margin-bottom: 8px;
}

.step-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0;
    color: #4A5A4E;
}

.step-item--1 {
    left: 78.5px;
    top: 290px;
}

.step-item--1 .step-number-bg {
    top: -80px;
    left: -30px;
}

.step-item--2 {
    left: 466.5px;
    top: 187px;
}

.step-item--2 .step-number-bg {
    top: -70px;
    left: -30px;
}

.step-item--3 {
    left: 854.5px;
    top: 135px;
}

.step-item--3 .step-number-bg {
    top: -70px;
    left: -30px;
}

.steps-nav-arrow {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #F8EDE4;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s var(--ease-smooth);
}

.steps-nav-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.section-upsell {
    position: relative;
    width: 100%;
    min-height: 898px;
    background: radial-gradient(100% 100% at 0% 0%, #1A3124 0%, #0E1A12 100%);
    padding: 100px 20px 60px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.section-upsell__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.section-upsell__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-upsell__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    color: #F8EDE4;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

.section-upsell__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #F8EDE4;
    text-align: center;
    margin-bottom: 16px;
}

.section-upsell__title-gold {
    color: #C4A055;
}

.section-upsell__subtext {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #F8EDE4;
    text-align: center;
    max-width: 700px;
    margin-bottom: 8px;
}

.upsell-grid {
    display: flex;
    gap: 32px;
    width: 100%;
    max-width: 764px;
    margin-bottom: 32px;
}

.upsell-card {
    flex: 1;
    padding: 32px 28px 28px;
    border-radius: 16px;
    background: radial-gradient(100% 100% at 0% 0%, #F8EDE4 0%, #DDCCB6 100%);
    display: flex;
    flex-direction: column;
    position: relative;
}

.upsell-card--highlight {
    padding-top: 52px;
}

.upsell-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #C4A055;
    color: #F8EDE4;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.upsell-card__label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.5px;
    color: #9A7830;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.upsell-card__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #0F2318;
    margin-bottom: 12px;
}

.upsell-card__desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: #4A5A4E;
    margin-bottom: 16px;
}

.upsell-divider-wrap {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 16px;
}

.upsell-divider {
    width: 500px;
    height: 14px;
    object-fit: contain;
}

.upsell-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.upsell-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: #0F2318;
}

.upsell-star {
    color: #C4A055;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.upsell-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(15, 35, 24, 0.08);
    padding-top: 20px;
}

.upsell-price {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    color: #0F2318;
    white-space: nowrap;
}

.upsell-cta {
    width: auto;
    min-width: 180px;
    height: 44px;
    padding: 4px 6px 4px 24px;
    gap: 12px;
    flex-shrink: 0;
}

.upsell-cta .cta-button__text {
    font-size: 13px;
}

.upsell-cta .cta-button__icon {
    width: 32px;
    height: 32px;
}

.upsell-info-bar {
    width: 100%;
    max-width: 764px;
    min-height: 82px;
    padding: 16px 24px;
    border: 1px solid rgba(248, 237, 228, 0.15);
    border-radius: 8.8px;
    background: rgba(16, 35, 27, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.upsell-info-bar__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    color: #F8EDE4;
}

.upsell-info-gold {
    color: #C4A055;
}

.section-faq {
    position: relative;
    width: 100%;
    min-height: 785px;
    background: #F8EDE4;
    padding: 105px 20px 100px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.section-faq__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.section-faq__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-faq__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    color: #22503A;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

.section-faq__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #22503A;
    text-align: center;
    margin-bottom: 48px;
}

.section-faq__title-gold {
    color: #C4A055;
}

.faq-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(34, 80, 58, 0.06);
    overflow: hidden;
    transition: all 0.3s var(--ease-smooth);
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}

.faq-question {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
    color: #000000;
    flex: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-smooth);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s var(--ease-smooth);
    padding: 0 24px;
}

.faq-body p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #191E1C;
    margin: 0;
}

.faq-item.active {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.faq-item.active .faq-body {
    max-height: 300px;
    padding: 0 24px 24px 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(0deg);
}

.section-final {
    position: relative;
    width: 100%;
    min-height: 819px;
    background: radial-gradient(100% 100% at 0% 0%, #1A3124 0%, #0E1A12 100%);
    padding: 100px 20px 60px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.section-final__bg-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.section-final__astro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 1200px;
    object-fit: contain;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}

.section-final__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-final__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    color: #F8EDE4;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

.section-final__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #F8EDE4;
    text-align: center;
    margin-bottom: 16px;
}

.section-final__title-gold {
    color: #C4A055;
}

.section-final__subtext {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: rgba(245, 239, 224, 0.8);
    text-align: center;
    max-width: 850px;
    margin-bottom: 32px;
}

.final-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 48px;
}

.final-item {
    background: linear-gradient(180deg, #13281E 0%, #0D1B16 100%);
    border: 1px solid rgba(196, 160, 85, 0.15);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.final-item.appear {
    opacity: 1;
    transform: translateY(0);
}

.final-number {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: #E8D49B;
    margin-bottom: 4px;
}

.final-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0;
    color: rgba(245, 239, 224, 0.8);
    margin: 0;
}

.section-final__cta {
    margin-bottom: 8px;
}

.section-final__note {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    line-height: 19.2px;
    letter-spacing: 0.5px;
    color: #8A8F8A;
    text-align: center;
}

.footer {
    width: 100%;
    min-height: 369px;
    background: linear-gradient(180deg, #050C08 0%, #0F1C14 100%);
    padding: 60px 20px 32px;
    display: flex;
    justify-content: center;
}

.footer__inner {
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
}

.footer-grid {
    display: grid;
    grid-template-columns: 300px 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col--brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F5EFE0;
}

.footer-logo-star {
    color: #C4A055;
}

.footer-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #959595;

    max-width: none;
    white-space: normal;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(196, 160, 85, 0.3);
    transition: border-color 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}

.footer-social-link:hover {
    border-color: #C4A055;
    transform: translateY(-2px);
}

.footer-social-link img {
    width: 34px;
    height: 34px;
    display: block;
}

.footer-col--links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-col-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
    color: #C4A055;
    text-transform: uppercase;
}

.footer-col-divider {
    width: 211.7px;
    height: 8px;
    object-fit: contain;
}

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

.footer-nav a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    color: rgba(245, 239, 224, 0.5);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}

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

.footer-nav-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-nav-icon--contact {
    color: rgba(245, 239, 224, 0.72);
}

.footer-nav-icon--contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #C4A055;
    transition: color 0.3s var(--ease-smooth);
}

.footer-nav-icon--contact:hover {
    color: #C4A055;
}

.footer-nav-icon--contact:hover svg {
    color: #E8D49B;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.footer-bottom-line {
    width: 100%;
    max-width: 1294px;
    height: 9px;
    object-fit: contain;
}

.footer-copy {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0;
    color: rgba(245, 239, 224, 0.25);
    text-align: center;
    margin: 0;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #0E1A12;
    z-index: 1200;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.active {
    transform: translateX(0);
    pointer-events: auto;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.mobile-menu__logo {
    width: 160px;
    height: auto;
}

.mobile-menu__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #F8EDE4;
    transition: transform 0.3s ease;
}

.mobile-menu__close:hover {
    transform: rotate(90deg);
}

.mobile-menu__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu__section-title {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    color: #C4A055;
    text-transform: uppercase;
    padding: 20px 0 8px 0;
}

.mobile-menu__section-title:first-child {
    padding-top: 0;
}

.mobile-menu__list a {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    color: #F8EDE4;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(248, 237, 228, 0.08);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu__list a:hover {
    color: #C4A055;
    padding-left: 6px;
}

.burger-icon {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-open .burger-icon {
    transform: rotate(90deg);
    opacity: 0.5;
}

.calendar-page {
    background: #0E1A12;
}

.cal-hero {
    position: relative;
    width: 100%;
    min-height: 1435px;
    background: #0F1C15;
    padding: 180px 20px 80px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.cal-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

.cal-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1296px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cal-hero__top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 60px;
    gap: 48px;
}

.cal-hero__content {
    flex: 1;
    max-width: 808px;
}

.cal-hero__eyebrow {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2px;
    color: #F8EDE4;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cal-hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
}

.cal-hero__title .cal-title-gold {
    color: #C4A055;
}

.cal-hero__title .cal-title-light {
    color: #F5EFE0;
}

.cal-hero__title span:first-child {
    color: #F5EFE0;
}

.cal-hero__title span:last-child {
    color: #D4B06A;
}

.cal-hero__desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 31.5px;
    color: rgba(245, 239, 224, 0.7);
    margin-bottom: 32px;
}

.cal-hero__social-proof {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 0;
}

.cal-avatars {
    display: flex;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    gap: 0;
    margin-right: 12px;
}

.cal-avatar-group {
    display: block;
    width: 150px;
    height: auto;
    margin: 0;
    padding: 0;
}

.cal-hero__title--solo {
    justify-content: center;
    text-align: center;
    width: 100%;
}

.cal-proof-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(245, 239, 224, 0.5);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 8px;
    max-width: 100%;
    height: auto;
    white-space: normal;
}

.cal-proof-stars,
.money-proof-stars {
    display: block;
    flex-shrink: 0;
    width: 110px;
    height: 28px;
}

.cal-price-card {
    width: 416px;
    height: 398px;
    padding: 32px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
    background: radial-gradient(100% 100% at 0% 0%, #F8EDE4 0%, #DDCCB6 100%);
    box-shadow: 0 4px 100px rgba(196, 160, 85, 0.5);
    position: relative;
    background-clip: padding-box;
    border: 2px solid transparent;
}

.cal-price-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(180deg, #FFF194 0%, #E8D49B 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.cal-price-val {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 60px;
    line-height: 1;
    color: #77572D;
    margin-bottom: 8px;
}

.cal-price-meta {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    line-height: 18px;
    letter-spacing: 2px;
    color: #4A5A4E;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

.cal-cta {
    width: 100%;
    height: 55px;
    margin-bottom: 24px;
    justify-content: center;
}

.cal-cta .cta-button__text {
    font-size: 14px;
}

.cal-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    width: 364px;
    min-height: 46px;
    margin: 0 auto;
    margin-bottom: 40.5px;
    padding: 0 24px;
}

.cal-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    color: #8A8F8A;
}

.cal-benefit:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.cal-benefit:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.cal-benefit:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.cal-benefit:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.cal-check {
    color: #C4A055;
    font-weight: 700;
}

.cal-quote-box {
    width: 100%;
    padding: 40px;
    margin-bottom: 60px;
    background: linear-gradient(90deg, rgba(196, 160, 85, 0.20) 0%, rgba(196, 160, 85, 0.00) 100%);
    border-left: 3px solid #C4A055;
    border-top: none;
    border-right: none;
    border-bottom: none;
    padding-left: 40px;
}

.cal-quote-text {
    font-family: var(--font-quote);
    font-weight: 600;
    font-style: italic;
    font-size: 22px;
    line-height: 34.1px;
    color: #F5EFE0;
    text-align: left;
    margin: 0;
}

.cal-chart-box {
    width: 100%;
    background: rgba(16, 35, 27, 0.4);
    border: 1px solid rgba(248, 237, 228, 0.1);
    border-radius: 16px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cal-chart-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 2px;
    color: #C4A055;
    text-transform: uppercase;
    margin-bottom: 48px;
    text-align: left;
    width: 100%;
}

.cal-chart-wrap {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 32px;
}

.cal-chart-svg {
    min-width: 800px;
    width: 100%;
    height: auto;
}

.cal-chart-note {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    line-height: 19.2px;
    color: rgba(245, 239, 224, 0.5);
    text-align: left;
    max-width: 800px;
    width: 100%;
    white-space: nowrap;
}

.cal-features {
    background: #F8EDE4;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.cal-features__inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cal-label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #4A5A4E;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cal-features__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #C4A055;
    text-transform: uppercase;
    margin-bottom: 60px;
    text-align: center;
}

.cal-features__title span:first-child {
    color: #C4A055;
}

.cal-features__title span:last-child {
    color: #22503A;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.cal-card {
    background: #FFFFFF;
    border: 1px solid rgba(196, 160, 85, 0.2);
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
}

.cal-card-num {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    color: #C4A055;
    margin-bottom: 16px;
}

.cal-card-eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    color: #9A7830;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cal-card-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #0F2318;
    margin-bottom: 12px;
}

.cal-card-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #4A5A4E;
}

.cal-audience {
    position: relative;
    background: #0E1A12;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(100% 100% at 0% 0%, #1A3124 0%, #0E1A12 100%);
}

.cal-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/zori.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.cal-audience__inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cal-audience__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.cal-audience__title span:first-child {
    color: #C4A055;
}

.cal-audience__title span:last-child {
    color: #F8EDE4;
}

.cal-audience-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    width: 100%;
    margin-bottom: 100px;
}

.cal-audience-col-header {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cal-audience-deco {
    font-size: 16px;
}

.cal-audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.cal-audience-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    width: 472px;
    height: 104.54px;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(20px);
    opacity: 0;
}

.cal-audience-item.appear {
    transform: translateY(0);
    opacity: 1;
}

.cal-audience-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    object-fit: contain;
    margin-top: 2px;
}

.cal-audience-col--yes .cal-audience-header {
    color: #E8D49B;
}

.cal-audience-col--yes .cal-audience-item {
    background: #1C2717;
    border: 1px solid rgba(224, 212, 184, 0.1);
    color: #F8EDE4;
}

.cal-audience-col--no .cal-audience-header {
    color: rgba(245, 239, 224, 0.3);
}

.cal-audience-col--no .cal-audience-item {
    background: #0F1C15;
    border: none;
    color: rgba(245, 239, 224, 0.6);
}

.reviews {
    position: relative;
    background: #F8EDE4;
    padding: 100px 20px;
    min-height: 680px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.reviews__container {
    position: relative;
    width: 100%;
    max-width: 1296px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews__bg-deco {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 80px;
    z-index: 1;
    pointer-events: none;
}

.reviews__bg-deco--left {
    left: 40px;
}

.reviews__bg-deco--right {
    right: 40px;
}

.reviews__star-small {
    transform: scale(0.7);
    margin-left: 20px;
}

.reviews__bg-arc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    height: 90vw;
    max-width: 1400px;
    max-height: 1400px;
    border: 1px solid rgba(196, 160, 85, 0.15);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.reviews__eyebrow {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #4A5A4E;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.reviews__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 55px;
    line-height: 1.1;
    color: #22503A;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.reviews__title span {
    color: #9A7830;
}

.reviews__slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0 20px 0;
}

.reviews__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 5px;
    width: 100%;
}

.reviews__track::-webkit-scrollbar {
    display: none;
}

.reviews__card {
    flex: 0 0 299px;
    min-height: 298px;
    background: #FFFFFF;
    border-radius: 15px;
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.reviews__card:hover {
    transform: translateY(-4px);
}

.reviews__card-quote {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M10 30c0-5 2-10 10-10v10H10zM30 30c0-5 2-10 10-10v10H30z' fill='%23C4A055' fill-opacity='0.15'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.reviews__card-quote--top {
    top: 16px;
    left: 16px;
    transform: rotate(180deg);
}

.reviews__card-quote--bottom {
    bottom: 16px;
    right: 16px;
}

.reviews__card-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #000000;
    margin-top: 24px;
    margin-bottom: auto;
    padding-bottom: 24px;
    position: relative;
    z-index: 2;
}

.reviews__card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.reviews__author-img {
    width: 59.79px;
    height: 59.79px;
    border-radius: 50%;
    object-fit: cover;
}

.reviews__author-info {
    display: flex;
    flex-direction: column;
}

.reviews__author-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: #222222;
}

.reviews__author-age {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    color: #8A8F8A;
}

.reviews__card--cta {
    background: linear-gradient(180deg, #C4A055 0%, #C59864 36%, #956938 97%);
    color: #F8EDE4;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    cursor: pointer;
}

.reviews__card--cta:hover {
    transform: translateY(-4px) scale(1.02);
}

.reviews__cta-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #F8EDE4;
    margin-bottom: 16px;
}

.reviews__cta-icon {
    width: 41px;
    height: 41px;
    display: block;
    margin: 0 auto;
}

.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(196, 160, 85, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.reviews__nav:hover {
    background: #C4A055;
    border-color: #C4A055;
}

.reviews__nav--prev {
    left: -24px;
}

.reviews__nav--next {
    right: -24px;
}

.reviews__nav img {
    width: 24px;
    height: 24px;
}

.reviews__nav:hover img {
    filter: brightness(0) invert(1);
}

.cal-faq {
    position: relative;
    background: #0E1A12;
    padding: 100px 20px 120px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(100% 100% at 0% 0%, #1A3124 0%, #0E1A12 100%);
}

.cal-faq__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.cal-faq__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cal-faq__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 955px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cal-faq__eyebrow {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #F8EDE4;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}

.cal-faq__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 55px;
    line-height: 1.1;
    color: #F8EDE4;
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.cal-faq__title span:first-child {
    color: #C4A055;
}

.cal-faq__accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 100px;
}

.cal-faq__item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #E0D4B8;
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.cal-faq__item.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: #E0D4B8;
}

.cal-faq__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

.cal-faq__question {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #F8EDE4;
    flex: 1;
    margin-right: 16px;
}

.cal-faq__toggle {
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cal-faq__item.active .cal-faq__toggle {
    transform: rotate(0deg);
}

.cal-faq__icon {
    width: 32px;
    height: 32px;
    display: block;
}

.cal-faq__body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.cal-faq__item.active .cal-faq__body {
    max-height: 480px;
    opacity: 1;
    padding: 0 24px 24px 24px;
}

.cal-faq__body p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #F8EDE4;
    margin: 0;
}

.cal-faq__order {
    width: 100%;
    max-width: 1000px;
    height: 337px;
    padding: 48px 32px 32px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: radial-gradient(100% 100% at 0% 0%, #F8EDE4 0%, #DDCCB6 100%);
    border: 1px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 100px rgba(196, 160, 85, 0.5);
    position: relative;
    background-clip: padding-box;
    border: 2px solid transparent;
}

.cal-faq__order::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(180deg, #FFF194 0%, #E8D49B 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.cal-faq__price {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 72px;
    line-height: 1;
    color: #77572D;
    margin-bottom: 8px;
}

.cal-faq__divider {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.cal-faq__divider img {
    width: 316px;
    height: 14px;
    object-fit: contain;
}

.cal-faq__meta {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    line-height: 18px;
    letter-spacing: 2px;
    color: #4A5A4E;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.cal-faq__cta {
    width: 100%;
    justify-content: center;
    margin-bottom: 24px;
}

.cal-faq__benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    width: 100%;
}

.cal-faq__benefit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    color: #4A5A4E;
}

.cal-faq__check {
    color: #C4A055;
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 1440px) {
    .reviews__bg-deco--left {
        left: 10px;
    }
    .reviews__bg-deco--right {
        right: 10px;
    }
    .reviews__card {
        flex: 0 0 260px;
    }
    .reviews__nav--prev {
        left: -10px;
    }
    .reviews__nav--next {
        right: -10px;
    }
}

@media (max-width: 1024px) {
    .reviews__nav {
        display: none;
    }
    .reviews__title {
        font-size: 40px;
    }
    .reviews__card {
        flex: 0 0 220px;
        min-height: 260px;
    }
}

@media (max-width: 992px) {
    .cal-hero__top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cal-price-card {
        width: 100%;
        max-width: 400px;
    }
    .cal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cal-audience-wrap {
        gap: 32px;
    }
    .cal-faq__order {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cal-hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }
    .cal-hero__title {
        font-size: 32px;
    }
    .cal-hero__desc {
        font-size: 15px;
        line-height: 24px;
    }
    .cal-hero__social-proof {
        justify-content: flex-start;
        align-items: center;
        text-align: left;
        flex-wrap: wrap;
        gap: 10px 12px;
    }
    .cal-avatars {
        margin-right: 0;
        flex-shrink: 0;
    }
    .cal-avatar-group {
        width: 120px;
        height: auto;
    }
    .cal-proof-text {
        font-size: 12px;
        flex: 1 1 180px;
    }
    .cal-proof-stars,
    .money-proof-stars {
        width: 96px;
        height: auto;
    }
    .cal-price-card {
        max-width: 100%;
    }
    .cal-quote-text {
        font-size: 16px;
        line-height: 24px;
    }
    .cal-chart-box {
        padding: 32px 20px;
    }
    .cal-chart-title {
        font-size: 20px;
        margin-bottom: 32px;
    }
    .cal-chart-svg {
        min-width: 600px;
    }
    .cal-features {
        padding: 60px 20px;
    }
    .cal-features__title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .cal-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .cal-card {
        padding: 24px 16px;
    }
    .cal-card-num {
        font-size: 32px;
    }
    .cal-audience {
        padding: 60px 20px;
    }
    .cal-audience__title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    .cal-audience-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    .cal-audience-item {
        font-size: 14px;
        line-height: 22px;
        padding: 16px 20px;
    }
    .cal-audience-icon {
        width: 28px;
        height: 28px;
    }
    .reviews {
        padding: 60px 20px;
        min-height: auto;
    }
    .reviews__title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    .reviews__bg-arc {
        width: 120vw;
        height: 120vw;
    }
    .reviews__bg-deco {
        display: none;
    }
    .reviews__slider-wrapper {
        gap: 12px;
    }
    .reviews__track {
        gap: 12px;
        padding: 0 10px;
    }
    .reviews__card {
        flex: 0 0 calc(50% - 12px);
        min-height: 240px;
        padding: 24px 16px 16px 16px;
    }
    .reviews__author-img {
        width: 44px;
        height: 44px;
    }
    .reviews__cta-text {
        font-size: 14px;
    }
    .cal-faq {
        padding: 80px 20px;
    }
    .cal-faq__title {
        font-size: 32px;
    }
    .cal-faq__accordion {
        margin-bottom: 60px;
    }
    .cal-faq__question {
        font-size: 16px;
        line-height: 24px;
    }
    .cal-faq__body p {
        font-size: 15px;
        line-height: 22px;
    }
    .cal-faq__order {
        padding: 32px 20px 24px;
    }
    .cal-faq__price {
        font-size: 52px;
    }
    .cal-faq__divider img {
        width: 100%;
        max-width: 316px;
    }
    .cal-faq__benefits {
        gap: 8px 16px;
    }
    .cal-faq__benefit {
        font-size: 12px;
    }
}

@media (max-width: 580px) {
    .cal-grid {
        grid-template-columns: 1fr;
    }
    .reviews__card {
        flex: 0 0 85vw;
        min-height: 220px;
        padding: 20px 14px;
    }
    .reviews__card-text {
        font-size: 14px;
        line-height: 22px;
    }
    .reviews__author-name {
        font-size: 14px;
    }
    .reviews__cta-text {
        font-size: 13px;
    }
    .reviews__cta-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .cal-hero__title {
        font-size: 26px;
        gap: 4px;
    }
    .cal-hero__eyebrow {
        font-size: 12px;
    }
    .cal-hero__desc {
        font-size: 14px;
        line-height: 22px;
    }
    .cal-avatar-group {
        width: 100px;
    }
    .cal-proof-text {
        font-size: 11px;
    }
    .cal-price-val {
        font-size: 48px;
    }
    .cal-price-meta {
        font-size: 10px;
    }
    .cal-cta {
        height: 48px;
    }
    .cal-cta .cta-button__text {
        font-size: 12px;
    }
    .cal-quote-box {
        padding: 20px 16px;
        padding-left: 16px;
    }
    .cal-quote-text {
        font-size: 14px;
        line-height: 20px;
    }
    .cal-chart-box {
        padding: 24px 16px;
    }
    .cal-chart-title {
        font-size: 16px;
    }
    .cal-chart-svg {
        min-width: 400px;
    }
    .cal-chart-note {
        font-size: 12px;
        line-height: 18px;
    }
    .cal-features__title {
        font-size: 26px;
    }
    .cal-audience {
        padding: 40px 16px;
    }
    .cal-audience__title {
        font-size: 26px;
        gap: 4px;
    }
    .cal-audience-list {
        gap: 12px;
    }
    .cal-audience-item {
        padding: 14px 16px;
        font-size: 13px;
        line-height: 20px;
    }
    .cal-audience-icon {
        width: 26px;
        height: 26px;
    }
    .cal-faq {
        padding: 60px 16px;
    }
    .cal-faq__title {
        font-size: 26px;
        gap: 4px;
    }
    .cal-faq__question {
        font-size: 15px;
        line-height: 20px;
    }
    .cal-faq__header {
        padding: 16px 20px;
    }
    .cal-faq__item.active .cal-faq__body {
        padding: 0 20px 16px 20px;
    }
    .cal-faq__body p {
        font-size: 14px;
        line-height: 20px;
    }
    .cal-faq__order {
        padding: 24px 16px 20px;
    }
    .cal-faq__price {
        font-size: 42px;
    }
    .cal-faq__benefits {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .cal-faq__cta {
        height: 48px;
    }
}

.money-page {
    background: #0E1A12;
}

.money-hero {
    position: relative;
    width: 100%;
    min-height: 1435px;
    background: #0F1C15;
    padding: 180px 20px 80px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.money-hero__bg {
    position: absolute;
    top: -350px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.money-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1296px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.money-hero__top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 60px;
    gap: 48px;
}

.money-hero__content {
    flex: 1;
    max-width: 808px;
}

.money-hero__eyebrow {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2px;
    color: #F8EDE4;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.money-hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: 0;
    color: #C4A055;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: inline;
}

.money-hero__title::after {
    content: ' \041A\041E\0414';
    color: #F8EDE4;
}

.money-hero__desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 31.5px;
    color: rgba(245, 239, 224, 0.7);
    margin-bottom: 32px;
}

.money-hero__social-proof {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 0;
    gap: 16px;
}

.money-avatars {
    display: flex;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    margin-right: 12px;
}

.money-avatar-group {
    display: block;
    width: 150px;
    height: auto;
    margin: 0;
    padding: 0;
}

.money-proof-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(245, 239, 224, 0.5);
    width: auto;
    max-width: 100%;
    height: auto;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 8px;
    vertical-align: middle;
    white-space: normal;
}

.money-price-card {
    width: 416px;
    height: 398px;
    box-sizing: border-box;
    background: linear-gradient(180deg, #F8EDE4 0%, #DDCCB6 100%) padding-box,
                linear-gradient(180deg, #FFF194 0%, #E8D49B 100%) border-box;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.money-price-val {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 60px;
    line-height: 1;
    color: #77572D;
    margin-bottom: 8px;
}

.money-price-meta {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    line-height: 18px;
    letter-spacing: 2px;
    color: #4A5A4E;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

.money-price-divider {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.money-price-divider img {
    width: 316px;
    height: 14px;
    object-fit: contain;
}

.money-cta {
    width: 100%;
    height: 55px;
    margin-bottom: 24px;
    justify-content: center;
}

.money-cta .cta-button__text {
    font-size: 14px;
}

.money-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.money-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    color: #8A8F8A;
}

.money-check {
    color: #C4A055;
    font-weight: 700;
}

.money-quote-box {
    width: 100%;
    padding: 40px;
    padding-left: 40px;
    margin-bottom: 60px;
    box-sizing: border-box;
    border-radius: 0;
    background: linear-gradient(90deg, rgba(196, 160, 85, 0.20) 0%, rgba(196, 160, 85, 0.00) 100%);
    border-left: 3px solid #C4A055;
    border-top: none;
    border-right: none;
    border-bottom: none;
}

.money-quote-text {
    font-family: var(--font-quote);
    font-weight: 600;
    font-style: italic;
    font-size: 22px;
    line-height: 33px;
    color: #F8EDE4;
    text-align: left;
    margin: 0;
}

.money-chart-box {
    width: 100%;
    background: rgba(16, 35, 27, 0.4);
    border: 1px solid rgba(248, 237, 228, 0.1);
    border-radius: 16px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.money-chart-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 2px;
    color: #C4A055;
    text-transform: uppercase;
    margin-bottom: 48px;
    text-align: left;
    width: 100%;
}

.money-chart-wrap {
    width: 100%;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.money-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    height: 200px;
    position: relative;
    padding-bottom: 30px;
}

.money-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 102px;
}

.money-bar {
    width: 100%;
    background: #C4A055;
    border-radius: 8px 8px 0 0;
}

.money-bar--dotted {
    background: rgba(196, 160, 85, 0.2);
    border: 1px dashed #C4A055;
    border-bottom: none;
}

.money-bar-label {
    font-family: var(--font-body);
    font-size: 12px;
    color: #8A8F8A;
}

.money-chart-limit {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    border-top: 1px dashed rgba(245, 239, 224, 0.4);
    font-family: var(--font-body);
    font-size: 10px;
    color: rgba(245, 239, 224, 0.4);
    padding-left: 8px;
    padding-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.money-chart-note {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: rgba(245, 239, 224, 0.6);
    text-align: left;
    max-width: 800px;
    width: 100%;
    white-space: nowrap;
}

.money-features {
    background: #F8EDE4;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.money-features__inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.money-label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #4A5A4E;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.money-features__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #C4A055;
    text-transform: uppercase;
    margin-bottom: 60px;
    text-align: center;
}

.money-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.money-card {
    background: #FFFFFF;
    border: 1px solid rgba(196, 160, 85, 0.2);
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
}

.money-card-num {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    color: rgba(196, 160, 85, 0.3);
    margin-bottom: 16px;
}

.money-card-eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    color: #9A7830;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.money-card-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #0F2318;
    margin-bottom: 12px;
}

.money-card-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #4A5A4E;
}

.money-audience {
    background: #0E1A12;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.money-audience__inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.money-audience__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #F8EDE4;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
}

.money-audience-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    width: 100%;
}

.money-audience-col {
    padding: 40px;
    border-radius: 16px;
}

.money-audience-col--yes {
    background: rgba(16, 35, 27, 0.6);
    border: 1px solid rgba(196, 160, 85, 0.2);
}

.money-audience-col--no {
    background: rgba(16, 35, 27, 0.3);
    border: 1px solid rgba(248, 237, 228, 0.1);
}

.money-audience-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
    color: #F8EDE4;
}

.money-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.money-dot--gold {
    background: #C4A055;
}

.money-dot--green {
    background: #22503A;
}

.money-audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.money-audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #F8EDE4;
}

.money-check-icon {
    width: 24px;
    height: 24px;
    background: rgba(248, 237, 228, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.money-reviews {
    background: #F8EDE4;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.money-reviews__inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.money-reviews__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #22503A;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
}

.money-reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.money-review {
    background: #FFFFFF;
    border: 1px solid rgba(196, 160, 85, 0.15);
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.money-review-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #0F2318;
    margin-bottom: 24px;
}

.money-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.money-author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.money-author-info {
    display: flex;
    flex-direction: column;
}

.money-author-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    color: #0F2318;
}

.money-author-age {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    color: #8A8F8A;
}

.money-review-cta {
    background: #C4A055;
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.money-review-cta:hover {
    transform: translateY(-4px);
}

.money-review-cta-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #F8EDE4;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.money-faq {
    background: #0E1A12;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.money-faq__inner {
    max-width: 960px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.money-faq__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #F8EDE4;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
}

.money-faq-container .faq-item {
    background: transparent;
    border: 1px solid rgba(196, 160, 85, 0.3);
    border-radius: 12px;
    margin-bottom: 12px;
}

.money-faq-container .faq-question {
    color: #F8EDE4;
}

.money-faq-container .faq-body p {
    color: rgba(248, 237, 228, 0.8);
}

.money-faq-container .faq-item.active {
    background: rgba(16, 35, 27, 0.4);
}

.money-bottom {
    background: #0E1A12;
    padding: 60px 20px 100px;
    display: flex;
    justify-content: center;
}

.money-bottom__inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.money-price-card--bottom {
    width: 100%;
    max-width: 600px;
}

.checkout-page {
    background: radial-gradient(100% 100% at 50% 0%, #1A3124 0%, #0E1A12 100%);
}

.checkout {
    position: relative;
    padding: 140px 20px 80px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.checkout__inner {
    width: 100%;
    max-width: 1200px;
}

.checkout__header {
    text-align: left;
    margin-bottom: 48px;
}

.checkout__eyebrow {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2px;
    color: #F8EDE4;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.checkout__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #F8EDE4;
    margin-bottom: 12px;
    max-width: 800px;
}

.checkout__desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(248, 237, 228, 0.6);
}

.checkout__grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: flex-start;
}

.checkout__steps {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.checkout__step {
    display: flex;
    color: #F8EDE4;
    align-items: center;
    gap: 12px;
    opacity: 0.3;
}

.checkout__step--active {
    opacity: 1;
}

.checkout__step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #C4A055;
    color: #0E1A12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
}

.checkout__step:not(.checkout__step--active) .checkout__step-num {
    background: rgba(248, 237, 228, 0.1);
    color: #F8EDE4;
}

.checkout__step-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    color: #F8EDE4;
    text-transform: uppercase;
}

.checkout__step-divider {
    width: 48px;
    height: 1px;
    background: rgba(248, 237, 228, 0.1);
}

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

.checkout-form__section {
    background: rgba(15, 35, 24, 0.4);
    border: 1px solid rgba(248, 237, 228, 0.08);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.checkout-form__section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.checkout-form__star {
    color: #C4A055;
    font-size: 14px;
}

.checkout-form__section-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    color: #8A8F8A;
    text-transform: uppercase;
    white-space: nowrap;
}

.checkout-form__header-line {
    flex: 1;
    height: 1px;
    background: rgba(248, 237, 228, 0.08);
}

.checkout-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.checkout-form__group label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: #F8EDE4;
}

.checkout-form__group input {
    height: 52px;
    background: rgba(248, 237, 228, 0.03);
    border: 1px solid rgba(248, 237, 228, 0.1);
    border-radius: 8px;
    padding: 0 16px;
    color: #F8EDE4;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.checkout-form__group input:focus {
    outline: none;
    border-color: #C4A055;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input {
    width: 100%;
}

.input-icon {
    position: absolute;
    right: 16px;
    pointer-events: none;
    opacity: 0.5;
}

.checkout-form__hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.4;
    color: #8A8F8A;
    margin-top: 8px;
}

.checkout-form__hint-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #8A8F8A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.checkout-form__gift {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: rgba(196, 160, 85, 0.05);
    border: 1px solid rgba(196, 160, 85, 0.1);
    border-radius: 12px;
    margin-top: 32px;
}

.checkout-form__gift-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-form__gift-text {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: #F8EDE4;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(248, 237, 228, 0.1);
    transition: .4s;
    border-radius: 34px;
}

.toggle__slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: #F8EDE4;
    transition: .4s;
    border-radius: 50%;
}

.toggle input:checked + .toggle__slider {
    background-color: #C4A055;
}

.toggle input:checked + .toggle__slider:before {
    transform: translateX(22px);
}

.checkout-form__payment-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 12px;
}

.checkout-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkout-form__submit {
    width: 100%;
    margin-top: 12px;
    justify-content: center;
    padding: 0;
}

.checkout-form__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.checkout-form__secure {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    color: #8A8F8A;
}

.checkout-form__note {
    font-family: var(--font-body);
    font-size: 12px;
    color: #8A8F8A;
}

.summary-card {
    position: relative;
    z-index: 0;
    width: 446.51px;
    height: 481px;
    background: var(--summary-card-bg);
    border-radius: 20px;
    padding: 32px;
    position: sticky;
    top: 120px;
    box-shadow: 0 4px 100px rgba(196, 160, 85, 0.5);
    border: 1px solid transparent;
    background-clip: padding-box;
}

.summary-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: var(--summary-card-border);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.summary-card__label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    color: #8A9A8E;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.summary-card__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2;
    color: #0F2318;
    margin-bottom: 4px;
}

.summary-card__subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: #4A5A4E;
    margin-bottom: 24px;
}

.summary-card__divider {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.summary-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.summary-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.4;
    color: #22503A;
}

.summary-card__check {
    color: #C4A055;
    font-weight: 700;
}

.summary-card__prices {
    border-top: 1px solid rgba(15, 35, 24, 0.08);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-card__price-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 15px;
    color: #4A5A4E;
}

.summary-card__price-row .old-price {
    text-decoration: line-through;
}

.summary-card__price-row--discount {
    color: #22503A;
    font-weight: 600;
}

.summary-card__total {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 12px;
}

.summary-card__total-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: #0F2318;
}

.summary-card__total-val {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.summary-card__total-old {
    font-family: var(--font-body);
    font-size: 20px;
    color: #8A9A8E;
    text-decoration: line-through;
}

.summary-card__total-current {
    font-family: var(--font-display);
    font-size: 52px;
    line-height: 1;
    color: #77572D;
}

.summary-card__info-box {
    margin-top: 32px;
    padding: 16px;
    background: rgba(34, 80, 58, 0.05);
    border-radius: 12px;
    display: flex;
    gap: 12px;
}

.summary-card__info-box p {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.5;
    color: #4A5A4E;
}

.ty-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(100% 100% at 50% 0%, #1A3124 0%, #0E1A12 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 140px 20px 80px;
    overflow: hidden;
}

.ty-bg-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1506px;
    height: 1506px;
    pointer-events: none;
    z-index: 0;
}

.ty-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(196, 160, 85, 0.15);
}

.ty-circle-1 {
    width: 1506px;
    height: 1506px;
}

.ty-circle-2 {
    width: 1402px;
    height: 1402px;
}

.ty-circle-3 {
    width: 1340px;
    height: 1340px;
}

.ty-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 856px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ty-status-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.ty-badge-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.ty-badge-icon {
    display: block;
    width: 121px;
    height: 121px;
    object-fit: contain;
}

.ty-badge-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 50px;
    background: linear-gradient(180deg, #C4A055 0%, #BA8E32 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 2px rgba(255, 212, 147, 0.6), inset 0 2px 6px rgba(0, 0, 0, 0.15);
    filter: drop-shadow(0 4px 12px rgba(196, 160, 85, 0.4));
    margin-bottom: 24px;
}

.ty-badge-top span {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    color: #0A120C;
    text-transform: uppercase;
}

.ty-badge-top svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: block;
}

.ty-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: 0;
    color: #F8EDE4;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.ty-subtitle-gold {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #C4A055;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.ty-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #F8EDE4;
    max-width: 764px;
    margin-bottom: 48px;
}

.ty-steps-box {
    width: 100%;
    background: rgba(15, 35, 24, 0.6);
    border: 1px solid rgba(248, 237, 228, 0.1);
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ty-step {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ty-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(248, 237, 228, 0.05);
    border: 1px solid rgba(248, 237, 228, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: #F8EDE4;
    flex-shrink: 0;
    transition: all 0.3s var(--ease-smooth);
}

.ty-step-icon--active {
    background: #C4A055;
    border-color: #C4A055;
    color: #0E1A12;
    box-shadow: 0 0 12px rgba(196, 160, 85, 0.4);
}

.ty-step-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}

.ty-step-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    color: #F8EDE4;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ty-step-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(248, 237, 228, 0.6);
}

.ty-status {
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(248, 237, 228, 0.5);
    background: rgba(248, 237, 228, 0.05);
    border: 1px solid rgba(248, 237, 228, 0.1);
}

.ty-status--done {
    background: linear-gradient(180deg, #C4A055 0%, #C59864 36%, #956938 97%);
    color: #0F2318;
    border: none;
    box-shadow: inset 0 1px 2px rgba(255, 232, 198, 0.6), 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ty-status--in-progress {
    background: #4A5A4E;
    color: #C4A055;
    border: 1px solid transparent;
    position: relative;
    z-index: 0;
}

.ty-status--in-progress::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(180deg, #9D7343 0%, #FFF6D7 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.ty-footer-note {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    line-height: 17.6px;
    letter-spacing: 2px;
    color: #8D908E;
    text-transform: uppercase;
}

@media (min-width: 1441px) {
    .header,
    .hero__inner {
        max-width: 1920px;
        margin: 0 auto;
    }
}

@media (max-width: 1440px) {
    .section-insight__inner {
        max-width: 1200px;
    }
    .insight-card {
        width: 220px;
        min-height: 360px;
        height: auto;
    }
    .insight-card__image {
        width: 180px;
        height: 160px;
    }
    .insight-card__text {
        width: 180px;
        min-height: 110px;
        font-size: 14px;
        line-height: 20px;
    }
    .compare-grid {
        max-width: 900px;
        gap: 16px;
    }
    .compare-card {
        width: 100%;
    }
    .section-accordion {
        min-height: auto;
    }
    .section-offer__inner {
        max-width: 1000px;
    }
    .offer-card {
        max-width: 100%;
    }
    .section-author__inner {
        max-width: 1200px;
    }
    .author-col--left {
        flex: 0 0 540px;
    }
    .author-col--right {
        flex: 0 0 450px;
    }
    .author-visual-wrapper {
        width: 500px;
        height: 500px;
        margin-left: 0;
    }
    .author-quote-card {
        left: 472px;
        top: 279px;
        width: 210px;
    }
    .testimonials-slider-wrapper {
        max-width: 1180px;
    }
    .testimonial-card {
        flex: 0 0 260px;
        height: 440px;
    }
    .section-transformation__inner {
        max-width: 1000px;
    }
    .transform-grid {
        max-width: 100%;
    }
    .transform-limits-card {
        max-width: 100%;
    }
    .whatsapp-slider-wrapper {
        max-width: 1100px;
        padding: 0 40px;
    }
    .whatsapp-phone-card {
        flex: 0 0 240px;
    }
    .whatsapp-track {
        gap: 24px;
    }
    .section-upsell__inner {
        max-width: 1000px;
    }
    .section-faq__inner {
        max-width: 800px;
    }
    .section-final__inner {
        max-width: 850px;
    }
    .footer__inner {
        max-width: 1100px;
    }
    .footer-grid {

        grid-template-columns: minmax(300px, 320px) 1fr 1fr 1fr;
    }
}

@media (max-width: 1250px) {
    .section-author__inner {
        max-width: 100%;
        padding: 0 20px;
    }
    .author-visual-wrapper {
        position: relative;
        width: 480px;
        height: 480px;
    }
    .author-quote-card {
        position: absolute;
        left: auto;
        right: 2%;
        top: 62%;
        transform: none;
        width: 210px;
        z-index: 3;
    }
}

@media (max-width: 1200px) {
    .steps-nav-arrow {
        display: none;
    }
    .step-item {
        max-width: 220px;
    }
}

@media (max-width: 1100px) {
    .steps-wave,
    .steps-nav-arrow {
        display: none;
    }
    .steps-roadmap {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: auto;
        padding: 20px 0;
        gap: 48px;
    }
    .step-item {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 320px;
        align-items: center;
        text-align: center;
    }
    .step-number-bg {
        position: relative;
        top: auto;
        left: auto;
        font-size: 72px;
        margin-bottom: -28px;
        opacity: 0.15;
        text-align: center;
        background: linear-gradient(180deg, #C4A055 0%, #F5F7F8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .step-content {
        max-width: 100%;
        text-align: center;
        padding-left: 0;
    }
    .money-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-col--brand {
        grid-column: span 2;
    }
    .testimonials-slider-wrapper {
        max-width: 100%;
        padding: 0 20px;
    }
    .testimonial-card {
        flex: 0 0 240px;
        height: 400px;
    }
    .testimonials-nav-btn {
        display: none;
    }
    .section-author {
        min-height: auto;
        padding: 60px 20px 80px;
    }
    .section-author__inner {
        flex-direction: column;
        align-items: center;
        padding-top: 0;
        gap: 40px;
    }
    .author-col--left {
        flex: 0 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .author-col--right {
        flex: 0 0 auto;
        width: 100%;
        max-width: 600px;
        padding-top: 0;
        margin-right: 0;
        text-align: left;
    }
    .author-visual-wrapper {
        width: 400px;
        height: 400px;
        margin: 0 auto;
        position: relative;
    }
    .author-quote-card {
        position: absolute;
        left: 60%;
        top: 55%;
        transform: translate(-50%, -50%);
        width: 200px;
        z-index: 3;
    }
}

@media (max-width: 992px) {
    .step-item {
        max-width: 180px;
    }
    .step-title {
        font-size: 18px;
        line-height: 24px;
    }
    .step-desc {
        font-size: 13px;
        line-height: 18px;
    }
    .section-final__inner {
        max-width: 100%;
    }
    .whatsapp-slider-wrapper {
        max-width: 100%;
    }
    .whatsapp-track {
        gap: 20px;
    }
    .whatsapp-phone-card {
        flex: 0 0 220px;
    }
    .offer-col--list {
        flex: 0 0 auto;
        width: 100%;
    }
    .offer-col--price {
        flex: 0 0 auto;
        width: 100%;
        padding-left: 0;
        padding-top: 32px;
        align-items: center;
        text-align: center;
    }
    .offer-divider-vertical {
        display: none;
    }
    .offer-divider-romb-wrap {
        justify-content: center;
    }
    .offer-price-current {
        font-size: 48px;
    }
    .offer-card {
        flex-direction: column;
        gap: 0;
    }
    .offer-cta {
        max-width: 420px;
    }
    .upsell-grid {
        max-width: 600px;
        gap: 24px;
        flex-direction: column;
    }
    .upsell-card {
        width: 100%;
    }
    .upsell-info-bar {
        max-width: 100%;
    }
    .cal-hero__top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cal-price-card {
        width: 100%;
        max-width: 400px;
    }
    .cal-avatars {
        justify-content: center;
    }
    .cal-social-proof {
        justify-content: center;
    }
    .cal-grid,
    .cal-audience-wrap {
        grid-template-columns: 1fr;
    }
    .cal-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .money-hero__top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .money-price-card {
        width: 100%;
        max-width: 400px;
    }
    .money-grid,
    .money-audience-wrap {
        grid-template-columns: 1fr;
    }
    .money-chart-wrap {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 20px;
    }
    .checkout__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .checkout__summary-side {
        order: -1;
    }
    .summary-card {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
    .checkout__header {
        text-align: center;
    }
    .checkout__title {
        margin: 0 auto 12px;
    }
    .ty-title {
        font-size: 48px;
    }
    .ty-subtitle-gold {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    :root {
        --side-left: 64px;
        --side-right: 64px;
        --hero-top: 140px;
        --content-width: 100%;
    }
    .insight-card__image {
        width: 150px;
        height: 150px;
        flex-shrink: 0;
    }
    .insight-card__image img {
        width: 100%;
        height: 100%;
        max-width: 200px;
        object-fit: contain;
    }
    .hero {
        min-height: auto;
        padding-bottom: 60px;
    }
    .hero__inner {
        flex-direction: column;
        align-items: center;
        padding-top: 120px;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
    .hero__content {
        order: 2;
        width: 100%;
    }
    .hero__visual {
        order: 1;
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto 24px auto;
        position: relative;
        align-self: center;
        margin-top: 100px;
    }
    .hero__woman {
        width: 100%;
        height: auto;
        max-height: 440px;
        object-fit: contain;
    }
    .hero__glow {
        width: 250px;
        height: 250px;
        filter: blur(80px);
        opacity: 0.6;
        top: 45%;
    }
    .hero__title {
        font-size: 32px;
        margin-top: 8px;
    }
    .hero__eyebrow {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .hero__description {
        font-size: 15px;
        line-height: 1.5;
        margin-top: 16px;
    }
    .hero__cta {
        width: 100%;
        max-width: 320px;
        margin: 32px auto 0 auto;
        justify-content: center;
    }
    .hero__note {
        width: 100%;
        white-space: normal;
        font-size: 12px;
        margin-top: 12px;
        text-align: center;
    }
    .hero__eyebrow,
    .hero__description {
        text-align: center;
    }
    .hero__note {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .how {
        min-height: auto;
        padding: 62px 24px 80px;
    }
    .how__title {
        font-size: 36px;
    }
    .how__text,
    .how__inner {
        max-width: 100%;
    }
    .how__quote {
        margin-top: 48px;
        flex-wrap: wrap;
        text-align: left;
    }
    .how__cta {
        margin-top: 40px;
    }
    .section-insight {
        min-height: auto;
        padding: 40px 16px 60px;
    }
    .section-insight__label {
        font-size: 12px;
        margin-bottom: 16px;
    }
    .section-insight__title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .section-insight__subtext {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 32px;
        padding: 0;
        max-width: 100%;
    }
    .insight-grid {
        gap: 12px;
        justify-content: center;
        margin-bottom: 32px;
        flex-direction: column;
    }
    .insight-card {
        width: 100%;
        min-height: auto;
        padding: 16px 18px;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 14px;
        justify-content: flex-start;
    }
    .insight-card:hover {
        transform: translateY(-2px);
        border-color: rgba(196, 160, 85, 0.5);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }
    .insight-card__image {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
    }
    .insight-card__text {
        width: auto;
        min-height: auto;
        font-size: 14px;
        line-height: 20px;
        text-align: left;
        flex: 1;
        margin: 0;
        padding: 0;
    }
    .insight-footer {
        padding: 20px 24px;
        border-radius: 16px;
    }
    .insight-footer__text {
        font-size: 16px;
        line-height: 24px;
    }
    .section-compare {
        padding: 80px 20px 80px;
    }
    .section-compare__top-title {
        font-size: 32px;
    }
    .section-compare__main-title {
        font-size: 32px;
        margin-top: 4px;
        margin-bottom: 32px;
    }
    .compare-grid {
        flex-direction: column;
        max-width: 100%;
        gap: 16px;
    }
    .compare-card {
        width: 100%;
        min-height: auto;
        border-radius: 18px;
        padding: 24px;
    }
    .compare-card__list li {
        font-size: 14px;
        line-height: 22px;
    }
    .section-compare__cta {
        width: 100%;
        max-width: 303px;
    }
    .section-report {
        min-height: auto;
        padding: 60px 20px 80px;
    }
    .section-report__title {
        font-size: 32px;
    }
    .section-report__subtext {
        font-size: 14px;
        margin-bottom: 60px;
    }
    .section-report__glow {
        width: 300px;
        height: 300px;
        filter: blur(150px);
    }
    .report-footer {
        padding: 16px;
        min-height: auto;
        margin-top: 32px;
    }
    .report-footer__text {
        font-size: 16px;
        line-height: 24px;
    }
    .section-accordion {
        padding: 80px 20px 80px;
    }
    .section-accordion__title {
        font-size: 32px;
    }
    .section-accordion__subtext {
        font-size: 14px;
        margin-bottom: 32px;
    }
    .accordion-container {
        --acc-num-w: 48px;
    }
    .accordion-number {
        font-size: 20px;
    }
    .accordion-title-wrap {
        padding: 16px 16px;
    }
    .accordion-title {
        font-size: 17px;
        line-height: 24px;
    }
    .accordion-item.active .accordion-body {
        padding: 0 32px 16px calc(var(--acc-num-w) + 16px);
    }
    .accordion-body p {
        font-size: 15px;
        line-height: 22px;
    }
    .section-offer {
        min-height: auto;
        padding: 80px 20px 80px;
    }
    .section-offer__title {
        font-size: 32px;
    }
    .section-offer__subtext {
        font-size: 14px;
        margin-bottom: 40px;
    }
    .section-offer__glow {
        width: 400px;
        height: 400px;
    }
    .offer-card {
        padding: 20px;
        border-radius: 16px;
    }
    .offer-list__item {
        font-size: 14px;
        line-height: 20px;
        padding: 10px 0;
    }
    .offer-price-current {
        font-size: 42px;
    }
    .offer-cta {
        width: 100%;
        max-width: 100%;
        padding: 10px 8px 10px 20px;
    }
    .offer-cta .cta-button__text {
        font-size: 13px;
        line-height: 18px;
    }
    .offer-cta .cta-button__icon {
        width: 36px;
        height: 36px;
    }
    .offer-check-list {
        justify-content: center;
    }
    .author-col--right {
        max-width: 100%;
        padding: 0 20px;
    }
    .author-title {
        font-size: 36px;
        margin-bottom: 16px;
    }
    .author-text {
        font-size: 14px;
    }
    .author-text:nth-of-type(1) {
        margin-bottom: 30px;
    }
    .author-text:nth-of-type(2) {
        margin-bottom: 30px;
    }
    .author-visual-wrapper {
        width: 320px;
        height: 320px;
        position: relative;
    }
    .author-quote-card {
        position: absolute;
        left: auto;
        right: 2%;
        top: 62%;
        transform: none;
        width: 180px;
        padding: 8px 12px;
        z-index: 3;
    }
    .author-quote-text {
        font-size: 13px;
        line-height: 18px;
    }
    .author-quote-line {
        width: 80px;
        margin-bottom: 8px;
    }
    .section-testimonials {
        padding: 60px 0 40px;
    }
    .section-testimonials__title {
        font-size: 34px;
    }
    .section-testimonials__subtext {
        font-size: 15px;
        margin-bottom: 32px;
    }
    .testimonials-track {
        gap: 16px;
    }
    .testimonial-card {
        flex: 0 0 calc(50% - 16px);
        height: 360px;
    }
    .section-transformation {
        min-height: auto;
        padding: 60px 20px 60px;
    }
    .section-transformation__title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    .transform-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }
    .transform-col__header {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .transform-row {
        padding: 10px 14px;
    }
    .transform-row p {
        font-size: 14px;
        line-height: 20px;
    }
    .transform-limits-card {
        padding: 32px 24px 32px;
        min-height: auto;
    }
    .limits-card__title {
        font-size: 28px;
    }
    .limits-card__subtext {
        font-size: 14px;
    }
    .limits-cta {
        width: 100%;
        max-width: 100%;
    }
    .section-whatsapp {
        min-height: auto;
        padding: 20px 20px 60px;
    }
    .section-whatsapp__title {
        font-size: 34px;
        margin-bottom: 40px;
    }
    .whatsapp-slider-wrapper {
        padding: 0 30px;
    }
    .whatsapp-phone-card {
        flex: 0 0 200px;
    }
    .whatsapp-nav-btn {
        width: 40px;
        height: 40px;
    }
    .whatsapp-nav-btn svg {
        width: 22px;
        height: 22px;
    }
    .whatsapp-nav-btn--prev {
        left: -5px;
    }
    .whatsapp-nav-btn--next {
        right: -5px;
    }
    .section-steps {
        min-height: auto;
        padding: 60px 20px 80px;
    }
    .section-steps__title {
        font-size: 32px;
    }
    .section-steps__subtext {
        font-size: 14px;
        margin-bottom: 32px;
    }
    .steps-roadmap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        padding: 20px 0;
        gap: 40px;
    }
    .steps-wave,
    .steps-nav-arrow {
        display: none;
    }
    .step-item {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        align-items: flex-start;
    }
    .step-number-bg {
        position: absolute;
        left: 0;
        top: -40px;
        font-size: 48px;
        opacity: 0.15;
        transform: none;
        text-align: left;
        background: #C4A055;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .step-content {
        max-width: 100%;
        text-align: left;
        padding-left: 10px;
    }
    .step-title {
        font-size: 20px;
    }
    .step-desc {
        font-size: 15px;
    }
    .section-upsell {
        min-height: auto;
        padding: 80px 20px 60px;
    }
    .section-upsell__title {
        font-size: 32px;
    }
    .section-upsell__subtext {
        font-size: 14px;
    }
    .upsell-card {
        padding: 24px 20px 20px;
    }
    .upsell-card--highlight {
        padding-top: 44px;
    }
    .upsell-badge {
        top: -9px;
        font-size: 11px;
        padding: 4px 14px;
    }
    .upsell-card__title {
        font-size: 22px;
    }
    .upsell-card__desc {
        font-size: 13px;
        line-height: 18px;
    }
    .upsell-list li {
        font-size: 13px;
        line-height: 18px;
    }
    .upsell-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 16px;
    }
    .upsell-cta {
        width: 100%;
        justify-content: center;
    }
    .upsell-info-bar {
        padding: 12px 16px;
        min-height: auto;
    }
    .upsell-info-bar__text {
        font-size: 13px;
        line-height: 20px;
    }
    .section-faq {
        min-height: auto;
        padding: 80px 20px 80px;
    }
    .section-faq__title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    .faq-header {
        padding: 16px 18px;
    }
    .faq-question {
        font-size: 16px;
        line-height: 24px;
    }
    .faq-body p {
        font-size: 15px;
        line-height: 22px;
    }
    .faq-item.active .faq-body {
        padding: 0 18px 18px 18px;
    }
    .faq-icon {
        width: 28px;
        height: 28px;
    }
    .section-final {
        min-height: auto;
        padding: 80px 20px 60px;
    }
    .section-final__title {
        font-size: 32px;
    }
    .section-final__subtext {
        font-size: 14px;
        margin-bottom: 28px;
    }
    .final-grid {
        gap: 12px;
    }
    .final-item {
        padding: 16px 20px;
    }
    .final-number {
        font-size: 20px;
    }
    .final-text {
        font-size: 14px;
        line-height: 20px;
    }
    .section-final__cta {
        width: 100%;
        max-width: 303px;
    }
    .footer {
        padding: 40px 20px 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-col--brand {
        grid-column: span 1;
    }
    .footer-desc {
        max-width: 100%;
    }
    .footer-socials {
        gap: 16px;
    }
    .footer-col-divider {
        width: 100%;
        max-width: 211.7px;
    }
    .footer-nav a {
        font-size: 14px;
    }
    .footer-bottom-line {
        height: 6px;
    }
    .cal-hero {
        padding: 120px 20px 60px;
    }
    .cal-hero__title,
    .cal-features__title,
    .cal-audience__title,
    .cal-reviews__title,
    .cal-faq__title {
        font-size: 32px;
    }
    .cal-hero__desc {
        font-size: 15px;
        line-height: 24px;
    }
    .cal-quote-box {
        padding: 24px;
    }
    .cal-quote-text {
        font-size: 16px;
        line-height: 24px;
    }
    .cal-chart-box {
        padding: 24px;
    }
    .cal-card-num {
        font-size: 36px;
    }
    .cal-reviews-grid {
        grid-template-columns: 1fr;
    }
    .cal-price-val {
        font-size: 48px;
    }
    .money-hero {
        padding: 120px 20px 60px;
    }
    .money-hero__title,
    .money-features__title,
    .money-audience__title,
    .money-reviews__title,
    .money-faq__title {
        font-size: 32px;
    }
    .money-hero__desc {
        font-size: 15px;
        line-height: 24px;
    }
    .money-quote-text {
        font-size: 16px;
        line-height: 24px;
    }
    .cal-hero__social-proof,
    .money-hero__social-proof {
        justify-content: flex-start;
        align-items: center;
        text-align: left;
        flex-wrap: wrap;
        gap: 10px 12px;
        width: 100%;
    }
    .money-proof-text {
        width: auto;
        flex: 1 1 180px;
    }
    .money-avatar-group,
    .cal-avatar-group {
        width: 130px;
        max-width: 40vw;
        height: auto;
    }
    .checkout {
        padding: 100px 16px 60px;
        overflow-x: hidden;
    }
    .checkout__inner,
    .checkout__content,
    .checkout__grid,
    .checkout__form-side,
    .checkout__summary-side,
    .checkout-form {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    .checkout__title {
        font-size: 32px;
    }
    .checkout__steps {
        overflow-x: auto;
        padding-bottom: 12px;
        gap: 16px;
        max-width: 100%;
    }
    .checkout-form__section {
        padding: 24px 20px;
        max-width: 100%;
        box-sizing: border-box;
    }
    .checkout-form__row {
        grid-template-columns: 1fr;
    }
    .checkout-form__footer {
        flex-direction: column;
        gap: 8px;
    }
    .ty-section {
        padding: 120px 20px 60px;
    }
    .ty-badge-top {
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    .ty-badge-top span {
        font-size: 11px;
    }
    .ty-title {
        font-size: 36px;
    }
    .ty-subtitle-gold {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .ty-desc {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 32px;
    }
    .ty-steps-box {
        padding: 24px 20px;
        gap: 12px;
        margin-bottom: 32px;
    }
    .ty-step {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        position: relative;
        padding-left: 48px;
    }
    .ty-step-icon {
        position: absolute;
        left: 0;
        top: 0;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .ty-step-connector {
        display: none;
    }
    .ty-step-title {
        font-size: 13px;
        line-height: 18px;
    }
    .ty-step-desc {
        font-size: 13px;
        line-height: 18px;
    }
    .ty-status {
        align-self: flex-start;
        padding: 4px 12px;
        font-size: 11px;
    }
    .ty-footer-note {
        font-size: 10px;
        line-height: 16px;
    }
    .ty-bg-circles {
        display: none;
    }
}

@media (max-width: 580px) {
    .money-reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-insight {
        padding: 30px 12px 40px;
    }
    .section-insight__title {
        font-size: 24px;
    }
    .section-insight__subtext {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 24px;
    }
    .insight-grid {
        gap: 10px;
        margin-bottom: 24px;
    }
    .insight-card {
        padding: 14px 16px;
        gap: 12px;
        border-radius: 14px;
    }
    .insight-card__image {
        width: 32px;
        height: 32px;
    }
    .insight-card__text {
        font-size: 13px;
        line-height: 18px;
    }
    .insight-footer {
        padding: 16px 18px;
        border-radius: 14px;
    }
    .insight-footer__text {
        font-size: 15px;
        line-height: 22px;
    }
    .section-testimonials {
        padding: 50px 0 30px;
    }
    .section-testimonials__title {
        font-size: 26px;
    }
    .section-testimonials__subtext {
        font-size: 13px;
        margin-bottom: 24px;
    }
    .testimonials-track {
        gap: 12px;
        overflow-x: hidden;
        flex-wrap: wrap;
        scroll-snap-type: none;
        justify-content: center;
    }
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        height: 300px;
        min-width: 140px;
    }
    .testimonial-play-btn {
        width: 40px;
        height: 40px;
    }
    .section-whatsapp {
        padding: 10px 0 40px;
    }
    .section-whatsapp__title {
        font-size: 26px;
        margin-bottom: 32px;
    }
    .whatsapp-slider-wrapper {
        padding: 0 20px;
    }
    .whatsapp-track {
        gap: 16px;
        flex-wrap: nowrap;
    }
    .whatsapp-phone-card {
        flex: 0 0 70vw;
        max-width: 280px;
    }
    .whatsapp-nav-btn {
        width: 36px;
        height: 36px;
        display: flex;
    }
    .whatsapp-nav-btn svg {
        width: 18px;
        height: 18px;
    }
    .whatsapp-nav-btn--prev {
        left: 4px;
    }
    .whatsapp-nav-btn--next {
        right: 4px;
    }
    .section-steps {
        padding: 40px 16px 60px;
    }
    .section-steps__title {
        font-size: 26px;
    }
    .section-steps__subtext {
        font-size: 13px;
    }
    .steps-roadmap {
        gap: 32px;
    }
    .step-number-bg {
        font-size: 36px;
        top: -30px;
    }
    .step-title {
        font-size: 18px;
    }
    .step-desc {
        font-size: 13px;
        line-height: 18px;
    }
    .section-upsell {
        padding: 60px 16px 40px;
    }
    .section-upsell__title {
        font-size: 26px;
    }
    .section-upsell__subtext {
        font-size: 13px;
    }
    .upsell-card {
        padding: 20px 16px 16px;
    }
    .upsell-card--highlight {
        padding-top: 40px;
    }
    .upsell-badge {
        top: -8px;
        font-size: 10px;
        padding: 3px 12px;
    }
    .upsell-card__title {
        font-size: 20px;
    }
    .upsell-divider-wrap {
        justify-content: center;
    }
    .upsell-footer {
        align-items: center;
        text-align: center;
    }
    .upsell-info-bar__text {
        font-size: 12px;
        line-height: 18px;
    }
    .section-faq {
        padding: 60px 16px 60px;
    }
    .section-faq__title {
        font-size: 26px;
    }
    .faq-header {
        padding: 14px 16px;
        gap: 12px;
    }
    .faq-question {
        font-size: 14px;
        line-height: 20px;
    }
    .faq-body p {
        font-size: 14px;
        line-height: 20px;
    }
    .faq-item.active .faq-body {
        padding: 0 16px 16px 16px;
    }
    .faq-icon {
        width: 24px;
        height: 24px;
    }
    .section-final {
        padding: 60px 16px 40px;
    }
    .section-final__title {
        font-size: 26px;
    }
    .section-final__subtext {
        font-size: 13px;
    }
    .final-item {
        padding: 14px 16px;
    }
    .final-number {
        font-size: 18px;
    }
    .final-text {
        font-size: 13px;
        line-height: 18px;
    }
    .footer {
        padding: 32px 16px 20px;
    }
    .footer-logo {
        font-size: 16px;
        letter-spacing: 1px;
    }
    .footer-desc {
        font-size: 12px;
        line-height: 18px;
    }
    .footer-col-title {
        font-size: 16px;
    }
    .footer-copy {
        font-size: 11px;
    }
    .cal-hero__title,
    .cal-features__title,
    .cal-audience__title,
    .cal-reviews__title,
    .cal-faq__title {
        font-size: 26px;
    }
    .cal-audience-col {
        padding: 24px;
    }
}

@media (max-width: 375px) {
    :root {
        --side-left: 20px;
        --side-right: 20px;
        --hero-top: 110px;
    }
    .header__logo img {
        width: 220px;
        height: auto;
    }
    .hero__title {
        font-size: 30px;
    }
    .hero__eyebrow {
        font-size: 14px;
    }
    .hero__description {
        font-size: 14px;
    }
    .hero__cta,
    .how__cta {
        width: 100%;
        max-width: 303px;
    }
    .hero__note {
        font-size: 11px;
    }
    .hero__visual {
        width: 280px;
        height: 293px;
    }
    .hero__glow {
        width: 200px;
        height: 200px;
        filter: blur(70px);
    }
    .how {
        padding: 50px 16px 64px;
    }
    .how__icon {
        width: 96px;
        height: 96px;
    }
    .how__title {
        font-size: 28px;
    }
    .how__text p {
        font-size: 15px;
    }
    .how__quote {
        font-size: 18px;
        line-height: 27px;
        padding: 14px 18px;
    }
    .section-insight {
        padding: 60px 16px 80px;
    }
    .section-insight__label {
        font-size: 12px;
    }
    .section-insight__title {
        font-size: 26px;
        margin-bottom: 8px;
    }
    .section-insight__subtext {
        font-size: 13px;
        margin-bottom: 32px;
    }
    .insight-grid {
        gap: 12px;
    }
    .insight-card {
        width: 100%;
        height: auto;
        min-height: 280px;
        padding: 20px;
    }
    .insight-card__image {
        width: 120px;
        height: 120px;
        margin-bottom: 8px;
    }
    .insight-card__text {
        width: 100%;
        height: auto;
        min-height: 80px;
        font-size: 14px;
    }
    .section-compare {
        padding: 60px 16px 60px;
    }
    .section-compare__top-title {
        font-size: 26px;
    }
    .section-compare__main-title {
        font-size: 26px;
        margin-bottom: 24px;
    }
    .compare-card {
        padding: 16px;
    }
    .compare-card__title {
        font-size: 14px;
    }
    .compare-card__list li {
        font-size: 13px;
        line-height: 20px;
        gap: 8px;
    }
    .compare-card__list {
        gap: 8px;
    }
    .section-report {
        padding: 40px 16px 60px;
    }
    .section-report__title {
        font-size: 26px;
    }
    .section-report__subtext {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 40px;
    }
    .report-footer__text {
        font-size: 14px;
        line-height: 20px;
    }
    .section-accordion {
        padding: 60px 16px 60px;
    }
    .section-accordion__title {
        font-size: 26px;
    }
    .section-accordion__subtext {
        font-size: 13px;
    }
    .accordion-container {
        --acc-num-w: 40px;
    }
    .accordion-number {
        font-size: 18px;
    }
    .accordion-title-wrap {
        padding: 12px 12px;
        gap: 2px;
    }
    .accordion-title {
        font-size: 15px;
        line-height: 20px;
    }
    .accordion-pages {
        font-size: 12px;
        line-height: 16px;
    }
    .accordion-item.active .accordion-body {
        padding: 0 24px 12px calc(var(--acc-num-w) + 12px);
    }
    .accordion-body p {
        font-size: 14px;
        line-height: 20px;
    }
    .section-offer {
        padding: 60px 16px 60px;
    }
    .section-offer__title {
        font-size: 26px;
    }
    .section-offer__subtext {
        font-size: 13px;
    }
    .offer-card {
        padding: 16px;
    }
    .offer-list__item {
        font-size: 13px;
        line-height: 18px;
        padding: 8px 0;
        gap: 8px;
    }
    .offer-star {
        width: 16px;
        font-size: 14px;
    }
    .offer-price-current {
        font-size: 36px;
    }
    .offer-prices {
        gap: 12px;
    }
    .offer-cta {
        padding: 10px 6px 10px 16px;
        gap: 8px;
    }
    .offer-cta .cta-button__text {
        font-size: 12px;
        line-height: 16px;
    }
    .offer-cta .cta-button__icon {
        width: 32px;
        height: 32px;
    }
    .offer-check-list li {
        font-size: 12px;
    }
    .offer-check-list {
        flex-direction: column;
        align-items: center;
    }
    .section-author {
        padding: 40px 0;
    }
    .author-col--right {
        padding: 0 16px;
    }
    .author-title {
        font-size: 30px;
    }
    .author-text {
        font-size: 13px;
        line-height: 20px;
    }
    .author-text:nth-of-type(1) {
        margin-bottom: 24px;
    }
    .author-text:nth-of-type(2) {
        margin-bottom: 24px;
    }
    .author-visual-wrapper {
        width: 280px;
        height: 280px;
        position: relative;
    }
    .author-quote-card {
        position: absolute;
        left: auto;
        right: 2%;
        top: 64%;
        transform: none;
        width: 150px;
        padding: 6px 10px;
        z-index: 3;
    }
    .author-quote-text {
        font-size: 11px;
        line-height: 15px;
    }
    .author-quote-line {
        width: 60px;
        margin-bottom: 6px;
    }
    .section-transformation {
        padding: 40px 16px 40px;
    }
    .section-transformation__title {
        font-size: 26px;
    }
    .section-transformation__label {
        font-size: 12px;
    }
    .transform-row p {
        font-size: 13px;
        line-height: 18px;
    }
    .transform-row {
        padding: 8px 12px;
    }
    .transform-limits-card {
        padding: 24px 16px 24px;
    }
    .limits-card__title {
        font-size: 24px;
    }
    .limits-card__subtext {
        font-size: 13px;
        line-height: 20px;
    }
    .limits-status-badge {
        font-size: 12px;
        padding: 4px 12px;
    }
    .limits-progress-wrapper {
        max-width: 100%;
    }
    .limits-progress-sub {
        font-size: 12px;
    }
    .limits-cta {
        width: 100%;
    }
    .ty-section {
        padding: 100px 16px 40px;
    }
    .ty-title {
        font-size: 30px;
    }
    .ty-subtitle-gold {
        font-size: 24px;
    }
    .ty-desc {
        font-size: 13px;
        line-height: 20px;
    }
    .ty-steps-box {
        padding: 20px 16px;
    }
}

@media (max-width: 1450px) {
    .section-steps__bg {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .cta-button,
    .cta-button::before,
    .cta-button__icon {
        transition: none;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding-bottom: 0 !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        min-height: auto !important;
    }
    .hero__inner {
        padding-top: 100px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 28px !important;
        display: block !important;
        width: 100% !important;
        position: relative !important;
    }
    .hero__content {
        width: 100% !important;
        display: block !important;
        position: relative !important;
        z-index: 5 !important;
    }
    .hero__eyebrow {
        display: none !important;
    }
    .hero__title {
        font-size: clamp(34px, 5vw, 54px) !important;
        line-height: 1.05 !important;
        margin-top: 0 !important;
        margin-bottom: 24px !important;
        text-align: left !important;
        max-width: 420px !important;
    }
    .hero__title-line {
        display: block !important;
    }
    .hero__description {
        font-size: clamp(13px, 1.6vw, 15px) !important;
        line-height: 1.45 !important;
        max-width: 55% !important;
        margin-top: 0 !important;
        margin-bottom: 28px !important;
        margin-left: 2px !important;
        position: relative !important;
        z-index: 5 !important;
    }
    .hero__visual {
        position: absolute !important;
        top: auto !important;
        bottom: 0 !important;
        right: -18vw !important;
        width: min(78vw, 380px) !important;
        height: auto !important;
        margin: 0 !important;
        z-index: 2 !important;
        pointer-events: none !important;
    }
    .hero__woman {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: center bottom !important;
    }
    .hero__glow {
        width: 260px !important;
        height: 260px !important;
        left: 50% !important;
        top: 38% !important;
        filter: blur(70px) !important;
        opacity: 0.55 !important;
    }
    .hero__cta {
        margin: 0 !important;
        width: 100% !important;
        max-width: 240px !important;
        height: 52px !important;
        justify-content: space-between !important;
        position: relative !important;
        z-index: 6 !important;
    }
    .hero__cta .cta-button__text {
        font-size: 13px !important;
        text-align: left !important;
    }
    .hero__cta .cta-button__icon {
        width: 36px !important;
        height: 36px !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero__title {
        font-size: 52px !important;
        max-width: 500px !important;
    }
    .hero__description {
        max-width: 48% !important;
        font-size: 15px !important;
        text-align: left !important;
    }
    .hero__visual {
        right: -4vw !important;
        width: 48vw !important;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .hero__title {
        font-size: 42px !important;
        max-width: 300px !important;
    }
    .hero__description {
        max-width: 52% !important;
        text-align: left !important;
    }
    .hero__visual {
        top: auto !important;
        right: -14vw !important;
        width: 72vw !important;
        bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero__inner {
        padding-left: 18px !important;
        padding-bottom: 40px !important;
    }
    .hero__title {
        font-size: 34px !important;
        max-width: 240px !important;
    }
    .hero__description {
        max-width: 54% !important;
        font-size: 13px !important;
        margin-bottom: 24px !important;
        text-align: left !important;
    }
    .hero__visual {
        top: auto !important;
        right: -20vw !important;
        width: min(82vw, 360px) !important;
        bottom: 0 !important;
    }
    .hero__cta {
        max-width: 230px !important;
        height: 48px !important;
        margin: 0 !important;
    }
    .hero__cta .cta-button__text {
        font-size: 11px !important;
    }
    .hero__cta .cta-button__icon {
        width: 32px !important;
        height: 32px !important;
    }
}

@media (max-width: 375px) {
    .hero__title {
        font-size: 28px !important;
        max-width: 220px !important;
    }
    .hero__description {
        max-width: 52% !important;
        font-size: 12px !important;
    }
    .hero__visual {
        top: auto !important;
        right: -18vw !important;
        width: min(84vw, 340px) !important;
        bottom: 0 !important;
    }
    .hero__cta {
        max-width: 210px !important;
    }
}

@media (max-width: 768px) {
    .header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 15px !important;
        width: 100% !important;
    }
    .header__logo {
        flex-shrink: 0 !important;
        margin-right: auto !important;
        margin-left: 0 !important;
        order: 0 !important;
    }
    .header__logo img {
        max-width: 200px !important;
        height: auto !important;
    }
    .header__burger {
        flex-shrink: 0 !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        order: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .header__container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .header__logo img {
        max-width: 250px !important;
    }
    .header__burger img {
        width: 30px !important;
        height: auto !important;
    }
}

@media (max-width: 768px) {
    .decorative-lines,
    [class*="decor"],
    [class*="stars"] {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    .how__icon img,
    .section-accordion__bg img,
    .section-steps__bg img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    img[src*="stars"],
    img[src*="lines"],
    img[src*="arc"],
    svg[class*="lines"] {
        width: auto !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .how {
        background-size: contain !important;
        background-position: top center !important;
        background-repeat: no-repeat !important;
    }
}

@media (max-width: 768px) {
    .how__bg {
        display: none !important;
    }
    .how {
        position: relative;
        background-image: url('assets/bg-stars.svg') !important;
        background-repeat: repeat-y !important;
        background-size: 100% auto !important;
        background-position: center top !important;
        z-index: 0 !important;
    }
    .how__inner {
        position: relative;
        z-index: 2 !important;
    }

    .how__icon {
        position: absolute !important;
        top: 22px !important;
        left: 50% !important;
        width: 72px !important;
        height: 72px !important;
        transform: translate(-50%, -50%) !important;
        z-index: 5 !important;
        margin: 0 !important;
    }

    .how__icon img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }
}

@media (max-width: 768px) {
    .section-insight {
        padding: 50px 16px 80px !important;
    }
    .section-insight__label {
        font-size: 13px !important;
        letter-spacing: 1px !important;
        margin-bottom: 16px !important;
    }
    .section-insight__title {
        font-size: 34px !important;
        line-height: 1.15 !important;
        margin-bottom: 16px !important;
    }
    .section-insight__subtext {
        font-size: 16px !important;
        line-height: 26px !important;
        width: 100% !important;
        margin: 0 auto 40px auto !important;
    }
    .insight-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
        margin-bottom: 40px !important;
        align-items: center !important;
    }
    .insight-card {
        width: 100% !important;
        max-width: 600px !important;
        min-height: auto !important;
        height: auto !important;
        padding: 28px 24px !important;
        border-radius: 16px !important;
        border: 1px solid rgba(196, 160, 85, 0.25) !important;
        background: rgba(26, 49, 36, 0.6) !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 24px !important;
        text-align: left !important;
    }
    .insight-card__image {
        width: 96px !important;
        height: 96px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-top: 0 !important;
    }
    .insight-card__image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }
    .insight-card__text {
        width: auto !important;
        flex: 1 !important;
        min-height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 15px !important;
        line-height: 24px !important;
        text-align: left !important;
        color: #ffefe3b0 !important;
        position: relative !important;
    }
    .insight-card__text::before {
        content: '\2726' !important;
        color: #C4A055 !important;
        font-size: 16px !important;
        position: absolute !important;
        left: -25px !important;
        top: 35px !important;
    }
    .insight-footer {
        padding: 28px 32px !important;
        border-radius: 16px !important;
        width: 100% !important;
        max-width: 600px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    .insight-footer__text {
        font-size: 17px !important;
        line-height: 28px !important;
    }
}

.section-compare {
    background-image: none !important;
}
.section-compare__bg {
    display: none !important;
}
.section-compare__inner {
    position: relative !important;
    z-index: 5 !important;
}
.compare-grid {
    position: relative !important;
}
.compare-card--left,
.compare-card--right,
.cta-button.section-compare__cta {
    position: relative !important;
}
.section-compare__inner::before {
    content: '\2726';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    color: #C4A055;
    font-size: 34px;
    z-index: 5;
    pointer-events: none;
}
.section-compare__inner::after {
    content: '\2726';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #C4A055;
    font-size: 18px;
    z-index: 5;
    pointer-events: none;
}
.compare-grid::before {
    content: '\2726';
    position: absolute;
    top: -12px;
    left: -10px;
    color: #C4A055;
    font-size: 12px;
    z-index: 5;
    pointer-events: none;
}
.compare-grid::after {
    content: '\2726';
    position: absolute;
    top: -12px;
    right: -10px;
    color: #C4A055;
    font-size: 12px;
    z-index: 5;
    pointer-events: none;
}
.compare-card--left::before {
    content: '\2726';
    position: absolute;
    top: 50%;
    left: -14px;
    transform: translateY(-50%);
    color: #C4A055;
    font-size: 16px;
    z-index: 5;
    pointer-events: none;
}
.compare-card--left::after {
    content: '\2726';
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    color: #C4A055;
    font-size: 16px;
    z-index: 5;
    pointer-events: none;
}
.compare-card--right::before {
    content: '\2726';
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    color: #C4A055;
    font-size: 22px;
    z-index: 5;
    pointer-events: none;
}
.compare-card--right::after {
    content: '\2726';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    color: #C4A055;
    font-size: 22px;
    z-index: 5;
    pointer-events: none;
}
.cta-button.section-compare__cta::before {
    content: '\2726';
    position: absolute;
    top: -16px;
    left: -10px;
    color: #C4A055;
    font-size: 12px;
    z-index: 5;
    pointer-events: none;
}
.cta-button.section-compare__cta::after {
    content: '\2726';
    position: absolute;
    top: -16px;
    right: -10px;
    color: #C4A055;
    font-size: 12px;
    z-index: 5;
    pointer-events: none;
}



.section-accordion {
    position: relative !important;
}
.accordion-stars .star {
    position: absolute !important;
    color: #C4A055 !important;
    pointer-events: none !important;
}
.s1 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 34px;
}
.s20 {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
}
.s2 {
    top: 20px;
    left: -10px;
    font-size: 22px;
}
.s4 {
    top: 120px;
    left: -10px;
    font-size: 22px;
}
.s6 {
    top: 230px;
    left: -10px;
    font-size: 22px;
}
.s8 {
    top: 340px;
    left: -10px;
    font-size: 22px;
}
.s10 {
    top: 450px;
    left: -10px;
    font-size: 22px;
}
.s12 {
    top: 560px;
    left: -10px;
    font-size: 22px;
}
.s14 {
    top: 670px;
    left: -10px;
    font-size: 22px;
}
.s3 {
    top: 20px;
    right: -10px;
    font-size: 22px;
}
.s5 {
    top: 120px;
    right: -10px;
    font-size: 22px;
}
.s7 {
    top: 230px;
    right: -10px;
    font-size: 22px;
}
.s9 {
    top: 340px;
    right: -10px;
    font-size: 22px;
}
.s11 {
    top: 450px;
    right: -10px;
    font-size: 22px;
}
.s13 {
    top: 560px;
    right: -10px;
    font-size: 22px;
}
.s15 {
    top: 670px;
    right: -10px;
    font-size: 22px;
}
.s16 {
    top: 70px;
    left: -8px;
    font-size: 16px;
}
.s18 {
    top: 180px;
    left: -8px;
    font-size: 16px;
}
.s17 {
    top: 70px;
    right: -8px;
    font-size: 16px;
}
.s19 {
    top: 180px;
    right: -8px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .section-author {
        padding: 40px 16px 50px !important;
        min-height: auto !important;
        overflow: hidden !important;
    }
    .section-author__inner {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    .author-col {
        width: 100% !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .author-col--right {
        margin-right: 0 !important;
    }
    .author-visual-wrapper {
        width: 100% !important;
        max-width: 420px !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        margin: 0 auto 8px auto !important;
        position: relative !important;
        display: block !important;
        overflow: visible !important;
    }
    .author-photo {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
        transform: none !important;
        position: relative !important;
        top: 0 !important;
    }
    .author-quote-card {
        position: absolute !important;
        top: 64% !important;
        left: auto !important;
        right: 3% !important;
        transform: none !important;
        width: 160px !important;
        padding: 8px 12px !important;
        background: rgba(0, 0, 0, 0.7) !important;
        border: 1px solid rgba(248, 237, 228, 0.15) !important;
        border-radius: 8px !important;
        z-index: 2 !important;
    }
    .author-quote-text {
        font-size: 12px !important;
        line-height: 16px !important;
        margin: 0 !important;
    }
    .author-quote-line {
        display: none !important;
    }
    .author-col--right {
        padding: 0 !important;
        text-align: left !important;
    }
    .author-title {
        font-size: 34px !important;
        line-height: 1.1 !important;
        margin-top: 16px !important;
        margin-bottom: 24px !important;
        text-align: center !important;
        color: #F8EDE4 !important;
    }
    .author-title__gold {
        color: #C4A055 !important;
    }
    .author-texts {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        max-width: 100% !important;
    }
    .author-text {
        font-size: 15px !important;
        line-height: 24px !important;
        color: #F5EFE0 !important;
        margin: 0 !important;
    }
    .author-gold {
        color: #C4A055 !important;
    }
}

.testimonials-track {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
}
.testimonial-card {
    flex: 0 0 280px !important;
    min-width: 280px !important;
    width: 280px !important;
    height: 480px !important;
    scroll-snap-align: start !important;
    flex-shrink: 0 !important;
}
.testimonials-track::-webkit-scrollbar {
    display: none !important;
}
.testimonials-track {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}
@media (max-width: 768px) {
    .testimonials-slider-wrapper {
        padding: 0 20px !important;
        overflow: visible !important;
    }
    .testimonial-card {
        flex: 0 0 260px !important;
        min-width: 260px !important;
        width: 260px !important;
    }
}

.step-icon-circle,
.steps-security-note {
    display: none;
}

@media (max-width: 480px) {
    .section-steps {
        padding: 60px 20px 60px !important;
    }
    .section-steps__title {
        font-size: 26px !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }
    .section-steps__subtext {
        font-size: 14px !important;
        line-height: 21px !important;
        margin-bottom: 40px !important;
        max-width: 300px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .steps-wave,
    .steps-nav-arrow {
        display: none !important;
    }
    .steps-roadmap {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        min-height: auto !important;
        max-width: 340px !important;
        margin: 0 auto !important;
        padding: 10px 0 0 0 !important;
        gap: 0 !important;
    }
    .steps-roadmap::before {
        content: '' !important;
        position: absolute !important;
        top: 30px !important;
        bottom: 92px !important;
        left: 27px !important;
        width: 2px !important;
        background-image: linear-gradient(to bottom, #C4A055 55%, transparent 0%) !important;
        background-size: 2px 10px !important;
        background-repeat: repeat-y !important;
        opacity: 0.6 !important;
        z-index: 0 !important;
    }
    .step-item {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 20px !important;
        padding-bottom: 44px !important;
        z-index: 1 !important;
    }
    .step-item:last-of-type {
        padding-bottom: 32px !important;
    }
    .step-icon-circle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 56px !important;
        height: 56px !important;
        border-radius: 50% !important;
        background: #F8EDE4 !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08) !important;
        flex-shrink: 0 !important;
        position: relative !important;
        z-index: 2 !important;
    }
    .step-icon {
        width: 24px !important;
        height: 24px !important;
        display: block !important;
    }
    .step-number-bg {
        position: static !important;
        display: block !important;
        font-family: var(--font-display) !important;
        font-size: 42px !important;
        line-height: 1 !important;
        color: #C4A055 !important;
        opacity: 0.35 !important;
        margin-bottom: -6px !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
        -webkit-text-fill-color: #C4A055 !important;
    }
    .step-content {
        max-width: 100% !important;
        padding-left: 0 !important;
        text-align: left !important;
    }
    .step-title {
        font-size: 17px !important;
        line-height: 24px !important;
        margin-bottom: 6px !important;
    }
    .step-desc {
        font-size: 14px !important;
        line-height: 20px !important;
    }
    .steps-security-note {
        display: flex !important;
        align-items: flex-start !important;
        gap: 14px !important;
        width: 100% !important;
        max-width: 340px !important;
        margin: 8px auto 0 auto !important;
        padding: 16px 18px !important;
        background: #FFFFFF !important;
        border-radius: 14px !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05) !important;
    }
    .steps-security-icon {
        width: 22px !important;
        height: 22px !important;
        flex-shrink: 0 !important;
        margin-top: 2px !important;
    }
    .steps-security-title {
        font-family: var(--font-body) !important;
        font-weight: 700 !important;
        font-size: 14px !important;
        line-height: 20px !important;
        color: #0F2318 !important;
        margin: 0 0 2px 0 !important;
    }
    .steps-security-desc {
        font-family: var(--font-body) !important;
        font-weight: 400 !important;
        font-size: 13px !important;
        line-height: 19px !important;
        color: #4A5A4E !important;
        margin: 0 !important;
    }
}

.author-signature {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}
.author-signature__img {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
@media (max-width: 1024px) {
    .author-signature__img {
        width: 200px;
    }
}
@media (max-width: 768px) {
    .author-signature__img {
        width: 200px;
    }
}
@media (max-width: 480px) {
    .author-signature__img {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .hero {
        overflow: hidden !important;
        margin-bottom: 0 !important;
    }

    .hero__glow {
        z-index: 1 !important;
    }

    .how {
        margin-top: 0 !important;
    }
}

.money-page .reviews__card {
    flex: 0 0 340px;
    min-height: 320px;
}

@media (max-width: 580px) {
    .money-page .reviews__card {
        flex: 0 0 92vw;
        min-height: 260px;
    }
}

.whatsapp-phone-card {
    overflow: hidden !important;
}

.phone-frame {
    position: relative !important;
    width: 300px !important;
    aspect-ratio: 328 / 612 !important;
    margin: 0 auto !important;
}

.phone-frame-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

.phone-screen-img {
    position: absolute !important;
    top: 4.9% !important;
    left: 11% !important;
    width: 76.5% !important;
    height: 88.1% !important;
    object-fit: cover !important;
    object-position: top !important;
    border-radius: 24px !important;
    z-index: 1 !important;
}

.testimonial-video-preview {
    position: relative;
    overflow: hidden;
    background-color: #0F2318;
}
.testimonial-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #0F2318;
}
.testimonial-video-preview.playing .testimonial-play-btn {
    opacity: 0;
    pointer-events: none;
}

.report-benefits {
    width: 100%;
    max-width: 940px;
    margin: 12px auto 0;
    border: 1px solid rgba(196, 160, 85, 0.25);
    border-radius: 16px;
    padding: 20px 16px 32px;
    background: rgba(14, 27, 18, 0.4);
    backdrop-filter: blur(4px);
    position: relative;
    box-sizing: border-box;
}
.report-benefits__row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.report-benefits__row--first {
    padding-top: 0;
    padding-bottom: 16px;
}
.report-benefits__row--last {
    border-bottom: 0;
    padding-bottom: 0;
    padding-top: 16px;
}
.report-benefits__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(196, 160, 85, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 27, 18, 0.6);
}
.report-benefits__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.report-benefits__title {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #C4A055;
    line-height: 1.2;
}
.report-benefits__desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    color: rgba(248, 237, 228, 0.8);
    margin: 0;
}
.report-benefits__mark {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: #C4A055;
    font-size: 22px;
    pointer-events: none;
}
.accordion-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.inline-ico {
    vertical-align: middle;
    display: inline-block;
    margin-right: 4px;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

main,
section,
footer {
    max-width: 100%;
}

.footer-logo {
    display: block;
}

.footer-logo__img {
    display: block;
    width: 240px;
    max-width: 100%;
    height: auto;
}

.whatsapp-phone-card.is-zoomable {
    cursor: zoom-in;
}

.whatsapp-phone-card.is-zoomable:focus-visible {
    outline: 2px solid #C4A055;
    outline-offset: 4px;
    border-radius: 12px;
}

.shot-viewer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 16px;
    background: rgba(6, 14, 10, 0.92);
    backdrop-filter: blur(6px);
    box-sizing: border-box;
}

.shot-viewer.active {
    display: flex;
}

.shot-viewer__stage {
    max-height: 100%;
    overflow-y: auto;
    border-radius: 18px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.shot-viewer__stage::-webkit-scrollbar {
    display: none;
}

.shot-viewer__img {
    display: block;
    width: auto;
    max-width: min(420px, 86vw);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.shot-viewer__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(248, 237, 228, 0.2);
    border-radius: 50%;
    background: rgba(248, 237, 228, 0.08);
    color: #F8EDE4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.shot-viewer__nav {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: 1px solid rgba(248, 237, 228, 0.2);
    border-radius: 50%;
    background: rgba(248, 237, 228, 0.08);
    color: #F8EDE4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.shot-viewer__close:hover,
.shot-viewer__nav:hover {
    background: rgba(196, 160, 85, 0.25);
}

@media (max-width: 600px) {
    .shot-viewer {
        padding: 64px 8px 16px;
    }
    .shot-viewer__nav {
        position: absolute;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
    .shot-viewer__nav--prev {
        left: 24px;
    }
    .shot-viewer__nav--next {
        right: 24px;
    }
}

.cal-audience-item {
    width: 100%;
    max-width: 472px;
    height: auto;
    min-height: 104px;
}

@media (max-width: 992px) {
    .cal-audience-item {
        max-width: 100%;
        min-height: 0;
    }

    .cal-audience-col {
        padding: 0 !important;
    }
    .cal-audience-wrap {
        gap: 36px;
    }
}

.price-highlight {
    animation: price-pulse 1.5s ease;
}

@keyframes price-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(196, 160, 85, 0);
    }
    35% {
        box-shadow: 0 0 0 6px rgba(196, 160, 85, 0.35);
    }
}

@media (max-width: 480px) {

    .steps-roadmap::before {
        display: none !important;
    }
    .step-item::after {
        content: '' !important;
        position: absolute !important;
        left: 27px !important;
        top: 56px !important;
        bottom: 0 !important;
        width: 2px !important;
        background-image: linear-gradient(to bottom, #C4A055 55%, transparent 0%) !important;
        background-size: 2px 10px !important;
        background-repeat: repeat-y !important;
        opacity: 0.6 !important;
        z-index: 0 !important;
    }
    .step-item:last-of-type::after {
        display: none !important;
    }

    .step-icon-circle .step-icon {
        object-fit: contain !important;
    }
    .step-item--3 .step-icon {
        width: 20px !important;
        height: 20px !important;
    }

    .author-visual-wrapper {
        width: min(100%, 420px) !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        margin: 0 auto 8px auto !important;
    }
    .author-quote-card {
        top: 64% !important;
        bottom: auto !important;
        left: auto !important;
        right: 3% !important;
        transform: none !important;
        width: 160px !important;
    }
}



.report-phones {
position: relative;
width: 100%;
max-width: 1100px;
height: 750px;
margin: 0 auto;
}

.report-phone {
position: absolute;
top: 50%;
transition: none;
}

.report-phone img {
display: block;
width: 100%;
height: auto;
object-fit: contain;
}

.report-phone--left {
left: 50%;
transform: translate(calc(-50% - 335px), -50%) rotateY(25deg) scale(0.95);
width: 255px;
z-index: 1;
transform-style: preserve-3d;
perspective: 1200px;
}

.report-phone--center {
left: 50%;
transform: translate(-50%, -50%) scale(1.05);
width: 310px;
z-index: 3;
}

.report-phone__glow {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 380px;
height: 380px;
background: rgba(196, 160, 85, 0.15);
border-radius: 50%;
filter: blur(60px);
z-index: -1;
pointer-events: none;
}

.report-phone--right {
left: 50%;
transform: translate(calc(-50% + 335px), -50%) rotateY(-25deg) scale(0.95);
width: 255px;
z-index: 1;
transform-style: preserve-3d;
perspective: 1200px;
}

@media (max-width: 1440px) {
    .report-phones {
        max-width: 800px;
        height: 600px;
    }

    .report-phone--left {
        width: 200px;
        transform: translate(calc(-50% - 180px), -50%) rotateY(25deg) scale(0.95);
    }

    .report-phone--center {
        width: 260px;
    }

    .report-phone--right {
        width: 200px;
        transform: translate(calc(-50% + 180px), -50%) rotateY(-25deg) scale(0.95);
    }

}
@media (max-width: 768px) {
    .report-phones {
        max-width: 100%;
        height: 500px;
    }

    .report-phone--left {
        width: 180px;
        left: 10%;
        transform: translateY(-50%) rotateY(15deg) scale(0.9);
        translate: 0;
    }

    .report-phone--center {
        width: 220px;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
    }

    .report-phone--right {
        width: 180px;
        left: auto;
        right: 10%;
        transform: translateY(-50%) rotateY(-15deg) scale(0.9);
    }

    .report-phone__glow {
        width: 280px;
        height: 280px;
    }

}
@media (max-width: 375px) {
    .report-phones {
        height: 380px;
    }

    .report-phone--left {
        width: 140px;
        left: 0;
        transform: translateY(-50%) rotateY(10deg) scale(0.8);
    }

    .report-phone--center {
        width: 180px;
    }

    .report-phone--right {
        width: 140px;
        right: 0;
        left: auto;
        transform: translateY(-50%) rotateY(-10deg) scale(0.8);
    }

    .report-phone__glow {
        width: 200px;
        height: 200px;
    }

}
@media (max-width: 768px) {
    .report-phones {
        position: relative !important;
        width: 100% !important;
        height: 520px !important;
        margin: 0 auto 40px auto !important;
        max-width: 400px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .report-phone {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        transition: none !important;
    }

    .report-phone--center {
        width: 65% !important;
        max-width: 220px !important;
        z-index: 3 !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        transform-style: flat !important;
        perspective: none !important;
    }

    .report-phone--center img {
        width: 100% !important;
        height: auto !important;
    }

    .report-phone__glow {
        width: 90% !important;
        height: 90% !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        filter: blur(50px) !important;
        opacity: 0.6 !important;
    }

    .report-phone--left {
        width: 45% !important;
        max-width: 170px !important;
        z-index: 1 !important;
        left: -2% !important;
        transform: translateY(-50%) rotate(0deg) !important;
        transform-style: flat !important;
    }

    .report-phone--left img {
        width: 100% !important;
        height: auto !important;
        filter: brightness(0.9) saturate(0.9) !important;
    }

    .report-phone--right {
        width: 45% !important;
        max-width: 170px !important;
        z-index: 1 !important;
        right: -2% !important;
        transform: translateY(-50%) rotate(0deg) !important;
        transform-style: flat !important;
    }

    .report-phone--right img {
        width: 100% !important;
        height: auto !important;
        filter: brightness(0.9) saturate(0.9) !important;
    }

}

@media (max-width: 768px) {
    .hero__visual {
        position: absolute !important;
        top: auto !important;
        bottom: 0 !important;
        right: -12vw !important;
        width: min(86vw, 400px) !important;
        z-index: 2 !important;
    }

    .hero__woman {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: center bottom !important;
        display: block !important;
    }

    .hero__description {
        max-width: 52% !important;
    }

    .hero__cta {
        position: relative !important;
        z-index: 6 !important;
        max-width: 230px !important;
    }
}
