* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #070707;
    color: #f1f1f1;
    font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
    line-height: 1.75;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.page {
    width: 100%;
    padding-right: 24px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(10, 10, 10, 0.92);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(145, 255, 0, 0.12);
}

.topbar-inner {
    max-width: 1180px;

    margin: 0 auto;

    padding: 18px 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #91ff00;
    font-size: 22px;
    font-weight: 800;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    color: #e7e7e7;

    font-size: 15px;

    transition: 0.2s;
}

.nav a:hover {
    color: #91ff00;
}

.hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 26px;
    box-shadow: 0 0 90px rgba(145, 255, 0, 0.14);
    display: block;
}

p {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.72;
}

li {
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
}

.lead {
    font-size: 28px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 28px;
    max-width: 900px;
    font-weight: bold;
}

ul {
    margin: 18px 0 26px 28px;
    padding-left: 18px;
}

.final-cta {
    text-align: center;
    margin-bottom: 42px;
}

.scroll-top-button {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 9000;

    width: 46px;
    height: 46px;

    border: 1px solid rgba(145, 255, 0, 0.45);
    border-radius: 50%;

    background: rgba(10, 10, 10, 0.88);
    color: #91ff00;

    font-size: 24px;
    font-weight: 800;
    line-height: 1;

    cursor: pointer;

    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);

    transition: 0.25s ease;
}

.scroll-top-button.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-button:hover {
    background: #91ff00;
    color: #000;
    box-shadow: 0 0 28px rgba(145, 255, 0, 0.28);
}

#formats,
#faq {
    scroll-margin-top: 20px;
}

.price-basic {
    color: #91ff00;
}

.price-expanded {
    background: linear-gradient(180deg, #f0c3ff 0%, #c56dff 45%, #8d3dff 100%);
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
    color: transparent;
}

.price-premium {
    color: #ffd54a;
}

.content-section,
.reviews-section,
.formats-section,
.faq-section,
.final-section {
    max-width: 1060px;
    margin: 0 auto;
    padding: 24px 0px 0 24px;
}

.image-section {
    max-width: 1060px;
    margin: 0 auto 0;
    padding: 0 24px;
    display: flex;
    justify-content: center;
}

h1 {
    font-size: 48px;
    line-height: 1.08;
    margin-bottom: 24px;
    font-weight: 900;
    letter-spacing: -0.045em;
    max-width: 980px;
}

h2 {
    font-size: 36px;
    line-height: 1.18;
    margin-top: 38px;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -0.025em;
    padding-left: 18px;
    border-left: 3px solid #6f7d66;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #91ff00;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 24px;

    overflow: hidden;

    display: flex;
    justify-content: center;

    background: rgba(255,255,255,0.02);

    box-shadow:
        0 0 60px rgba(145, 255, 0, 0.06);
}

.content-image img {
    width: 100%;

    display: block;

    border-radius: 24px;
}

.farm-image {
    max-width: 500px;
    width: 100%;

    display: block;
    margin: 0 auto;
}

.farm-image:hover {
    transform: none;
    filter: none;
}

.video-wrapper {
    max-width: 720px;
    margin: 32px auto;
}

.video-wrapper iframe,
.video-wrapper video {
    width: 100%;
    aspect-ratio: 16 / 9;

    border: none;
    border-radius: 18px;

    display: block;
}

.method-title {
    border-left: 3px solid #91ff00;
    padding-left: 10px;

    font-weight: 800;
    color: #ffffff;

    margin: 26px 0 10px;
}

.no-line {
    border-left: none;
    padding-left: 0;
}

.reviews-grid img {
    max-width: 100%;
    height: auto;
    cursor: zoom-in;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.reviews-grid img:hover {
    transform: scale(1.025);
    filter: brightness(1.06);
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, 0.88);
}

.image-lightbox.is-open {
    display: flex;
}

.image-lightbox img {
    width: auto;
    height: auto;

    max-width: min(1060px, 92vw);
    max-height: 92vh;

    border-radius: 14px;

    box-shadow: 0 0 70px rgba(145, 255, 0, 0.18);
}

.hero-image {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.01);

    filter: brightness(1.04);

    box-shadow:
        0 0 40px rgba(145, 255, 0, 0.12),
        0 0 80px rgba(145, 255, 0, 0.05);
}

.dlyaKogo {
    border-left: 4px solid #91ff00;
    padding-left: 12px;

    font-size: 24px;
    font-weight: 800;

    margin-top: 42px;
    margin-bottom: 18px;
    font-size: 27px;
}

.price-name {
    font-size: 28px;
    font-weight: bold;
}

.price-accent {
    color: #ff5a5a;
}

.lightbox-close {
    position: fixed;
    top: 22px;
    right: 28px;

    width: 46px;
    height: 46px;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;

    font-size: 34px;
    line-height: 1;

    cursor: pointer;
}

.reviews-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.reviews-grid img {
    width: 100%;
    max-width: 100%;
    height: auto !important;
    object-fit: contain;
    border-radius: 18px;
}

.telegram-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 18px 34px;

    border-radius: 16px;

    background: #91ff00;

    color: #000;

    font-weight: 700;

    margin-top: 18px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.telegram-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 18px rgba(145, 255, 0, 0.35),
        0 0 42px rgba(145, 255, 0, 0.18);

    background: #a6ff2f;
}

.telegram-button:active {
    transform: translateY(0);
}

.content-image {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.content-image:hover {
    transform: scale(1.012);
    filter: brightness(1.04);

    box-shadow:
        0 0 40px rgba(145, 255, 0, 0.12),
        0 0 80px rgba(145, 255, 0, 0.06);
}

/* Единый стиль всех сносок с зелёной линией */
blockquote,
blockquote.strong-quote,
.strong-quote {
    margin: 28px 0;
    padding: 24px 30px;

    border-left: 5px solid #91ff00;
    border-radius: 16px;

    background: linear-gradient(
        90deg,
        rgba(145, 255, 0, 0.075),
        rgba(255, 255, 255, 0.035)
    );

    color: #ffffff;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 700;
}
.text-accent {
    font-weight: 800;
    color: #ffc14d;
}
.image-caption {
    display: block;

    margin-top: 14px;

    text-align: center;

    font-size: 14px;

    font-style: italic;

    color: rgba(255, 255, 255, 0.58);

    letter-spacing: 0.01em;
}

.spoiler-button {
    width: 100%;

    margin: 18px 0 0;
    padding: 20px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid rgba(145, 255, 0, 0.28);
    border-radius: 16px;

    background: rgba(145, 255, 0, 0.055);

    color: #ffffff;

    font-family: inherit;
    font-size: 18px;
    font-weight: 800;

    cursor: pointer;

    transition: 0.2s ease;
}

.spoiler-button:hover {
    background: rgba(145, 255, 0, 0.09);
    border-color: rgba(145, 255, 0, 0.55);
}

.spoiler-icon {
    color: #91ff00;
    font-size: 26px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.spoiler-button.is-open .spoiler-icon {
    transform: rotate(45deg);
}

.spoiler-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.course-box {
    margin-top: 18px;
    padding: 28px 30px;

    border: 1px solid rgba(145, 255, 0, 0.16);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.03);
}

.course-box h3 {
    margin-top: 34px;
    margin-bottom: 14px;

    color: #ffffff;

    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
}

.course-box h3:first-child {
    margin-top: 0;
}

.course-box h4 {
    margin-top: 22px;
    margin-bottom: 10px;

    color: #91ff00;

    font-size: 18px;
    font-weight: 800;
}

.course-note,
.note {
    color: #ffffff;
    font-weight: 700;
}

@media (max-width: 900px) {

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.large-text {
    font-size: 24px;
    line-height: 1.6;
    color: #ffffff;
}

.accent-title {
    margin-top: 70px;
}

@media (max-width: 700px) {
    .hero {
        padding: 22px 14px 30px;
    }

    h1 {
        font-size: 32px;
    }

    .section-label {
        font-size: 12px;
        margin-bottom: 14px;
    }
 
    .content-section,
    .reviews-section,
    .formats-section,
    .faq-section,
    .final-section {
        padding: 32px 18px;
    }

    .image-section {
        padding-top: 8px;
        padding-bottom: 14px;
    }

    p,
    li {
        font-size: 16px;
    }

    li {
        margin-bottom: 7px;
    }

    ul {
        margin-left: 20px;
        padding-left: 14px;
    }

    .large-text {
        font-size: 20px;
    }

    .big-accent {
        font-size: 28px;
        line-height: 1.2;
    }

    .strong-quote {
        font-size: 22px;
        padding: 26px;
    }

    .topbar-inner {
        flex-direction: column;

        gap: 16px;
    }

    .nav {
        flex-wrap: wrap;

        justify-content: center;

        gap: 18px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    .lead {
        font-size: 19px;
    }

    blockquote {
        font-size: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .page {
        padding-right: 0;
    }

}