/* === KOMANDA MECHTY 45+ === */
/* Визуал: ностальгия 90-х. Мятный, персиковый, бежевый, шрифт с засечками. */

:root {
    --mint: #a8d5ba;
    --peach: #ffd4b8;
    --beige: #f5e6d3;
    --cream: #faf6ef;
    --brown: #8b6f47;
    --dark-brown: #5a4530;
    --terracotta: #c9806c;
    --text: #3d2f1f;
    --muted: #8a7b6b;
    --shadow: 0 4px 12px rgba(90, 69, 48, 0.12);
    --shadow-hover: 0 8px 20px rgba(90, 69, 48, 0.18);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    font-size: 17px;
    background-image: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
}

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

a {
    color: var(--terracotta);
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
}

a:hover {
    border-bottom-style: solid;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
.header {
    background: var(--beige);
    padding: 16px 0;
    border-bottom: 2px solid var(--brown);
    text-align: center;
}

.header__title {
    font-size: 22px;
    color: var(--dark-brown);
    font-weight: normal;
    letter-spacing: 0.5px;
}

.header__title em {
    font-style: italic;
    color: var(--terracotta);
}

/* === HERO === */
.hero {
    padding: 64px 20px 48px;
    text-align: center;
    background: linear-gradient(180deg, var(--peach) 0%, var(--cream) 100%);
    border-bottom: 1px dashed var(--brown);
}

.hero__pretitle {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 16px;
    font-style: italic;
}

.hero__title {
    font-size: 44px;
    line-height: 1.2;
    color: var(--dark-brown);
    margin-bottom: 24px;
    font-weight: normal;
}

.hero__title em {
    color: var(--terracotta);
    font-style: italic;
}

.hero__subtitle {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta {
    display: inline-block;
    background: var(--terracotta);
    color: var(--cream);
    padding: 16px 40px;
    border-radius: var(--radius);
    font-size: 18px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-bottom: none;
}

/* === SECTION === */
.section {
    padding: 64px 0;
    border-bottom: 1px dashed var(--brown);
}

.section:last-of-type {
    border-bottom: none;
}

.section__title {
    font-size: 32px;
    text-align: center;
    color: var(--dark-brown);
    margin-bottom: 16px;
    font-weight: normal;
}

.section__subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 48px;
    font-style: italic;
}

/* === BIG NUMBER === */
.big-number {
    text-align: center;
    font-size: 28px;
    color: var(--terracotta);
    margin-bottom: 32px;
    font-style: italic;
}

.big-number em {
    font-style: normal;
    font-size: 36px;
    font-weight: bold;
}

/* === PAIN === */
.pain {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
}

.pain__item {
    background: var(--beige);
    padding: 20px 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--terracotta);
    font-size: 18px;
}

.pain__item strong {
    color: var(--dark-brown);
}

/* === HABITS (5 привычек) === */
.habits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.habit {
    background: var(--cream);
    padding: 24px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--brown);
    text-align: center;
    box-shadow: var(--shadow);
}

.habit__icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.habit__name {
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.habit__desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.5;
}

/* === PROGRAM (7 дней) === */
.program {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.day {
    background: var(--cream);
    padding: 20px 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--mint);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.day__num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--mint);
    color: var(--dark-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
}

.day__content {
    flex: 1;
}

.day__title {
    font-size: 18px;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.day__desc {
    font-size: 15px;
    color: var(--text);
}

/* === FOR WHO === */
.forwho {
    max-width: 720px;
    margin: 0 auto;
    background: var(--peach);
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
}

.forwho p {
    font-size: 18px;
    margin-bottom: 12px;
}

.forwho strong {
    color: var(--dark-brown);
}

/* === PRICE (3 уровня) === */
.prices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.price {
    background: var(--cream);
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 2px solid var(--brown);
    text-align: center;
    box-shadow: var(--shadow);
   position: relative;
}

.price--featured {
    border-color: var(--terracotta);
    border-width: 3px;
    transform: scale(1.05);
}

.price__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--terracotta);
    color: var(--cream);
    padding: 4px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: bold;
}

.price__name {
    font-size: 24px;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.price__price {
    font-size: 36px;
    color: var(--terracotta);
    font-weight: bold;
    margin-bottom: 16px;
}

.price__price-note {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 24px;
}

.price__list {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
    font-size: 15px;
}

.price__list li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.price__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--mint);
    font-weight: bold;
}

.price__cta {
    display: block;
    background: var(--terracotta);
    color: var(--cream);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 16px;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.price__cta:hover {
    transform: translateY(-2px);
    border-bottom: none;
}

.price__cta--secondary {
    background: var(--mint);
    color: var(--dark-brown);
}

/* === FORM === */
.form-section {
    background: var(--beige);
    padding: 64px 0;
    border-bottom: 1px dashed var(--brown);
}

.form {
    max-width: 480px;
    margin: 0 auto;
    background: var(--cream);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--dark-brown);
    font-weight: bold;
}

.form__input,
.form__select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--brown);
    border-radius: var(--radius);
    font-size: 16px;
    background: var(--cream);
    font-family: inherit;
    color: var(--text);
}

.form__input:focus,
.form__select:focus {
    outline: none;
    border-color: var(--terracotta);
}

.form__submit {
    width: 100%;
    background: var(--terracotta);
    color: var(--cream);
    padding: 14px;
    border: none;
    border-radius: var(--radius);
    font-size: 18px;
    cursor: pointer;
    font-family: inherit;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

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

.form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form__success {
    display: none;
    background: var(--mint);
    color: var(--dark-brown);
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 16px;
}

.form__success--show {
    display: block;
}

.form__error {
    display: none;
    background: #f5c6c6;
    color: #7a1f1f;
    padding: 12px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 16px;
    font-size: 14px;
}

.form__error--show {
    display: block;
}

.form__note {
    font-size: 13px;
    color: var(--muted);
    margin-top: 16px;
    text-align: center;
    font-style: italic;
}

/* === PAY INFO === */
.pay-info {
    max-width: 480px;
    margin: 32px auto 0;
    background: var(--cream);
    padding: 24px;
    border-radius: var(--radius);
    border: 2px dashed var(--mint);
    text-align: center;
}

.pay-info__title {
    font-size: 18px;
    color: var(--dark-brown);
    margin-bottom: 12px;
}

.pay-info__qr {
    max-width: 220px;
    margin: 0 auto 16px;
    border: 1px solid var(--brown);
    border-radius: var(--radius);
}

.pay-info__text {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 8px;
}

.pay-info__self-employed {
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
    font-style: italic;
}

/* === FAQ === */
.faq {
    max-width: 720px;
    margin: 0 auto;
}

.faq__item {
    background: var(--cream);
    padding: 20px 24px;
    border-radius: var(--radius);
    margin-bottom: 12px;
    border-left: 3px solid var(--mint);
}

.faq__q {
    font-size: 17px;
    color: var(--dark-brown);
    margin-bottom: 8px;
    font-weight: bold;
}

.faq__a {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

/* === DISCLAIMER === */
.disclaimer {
    background: var(--beige);
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    border-top: 1px dashed var(--brown);
}

.disclaimer p {
    max-width: 720px;
    margin: 0 auto 8px;
}

/* === MOBILE === */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .hero {
        padding: 48px 20px 32px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__subtitle {
        font-size: 17px;
    }

    .section {
        padding: 48px 0;
    }

    .section__title {
        font-size: 26px;
    }

    .section__subtitle {
        font-size: 16px;
    }

    .price--featured {
        transform: scale(1.02);
    }

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

    .form {
        padding: 24px 20px;
    }

    .forwho {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 26px;
    }

    .hero__cta {
        padding: 14px 28px;
        font-size: 16px;
    }

    .day__num {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
