.coach-trainer-landing-page {
    --lp-bg: #f8fafc;
    --lp-surface: #ffffff;
    --lp-surface-soft: #fbfcfe;
    --lp-ink: #111827;
    --lp-muted: #617086;
    --lp-green: #1f8f5f;
    --lp-green-dark: #137333;
    --lp-gold: #ffc107;
    --lp-blue: #16324f;
    --lp-red: #b95047;
    --lp-border: #e6ebf2;
    --lp-border-strong: #d7e0ea;
    --lp-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
    --lp-shadow-soft: 0 10px 26px rgba(15, 23, 42, 0.06);
    background: #f8fafc;
    color: var(--lp-ink);
}

.coach-trainer-landing-page .coach-lp-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.coach-lp-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(248, 250, 252, 0.92);
    border-bottom: 1px solid var(--lp-border);
    backdrop-filter: blur(16px);
}

.coach-lp-header__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.coach-lp-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    color: var(--lp-ink);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
    text-decoration: none;
}

.coach-lp-logo:hover {
    color: var(--lp-ink);
}

.coach-lp-logo img {
    width: auto;
    height: 34px;
    max-width: 180px;
    max-height: 42px;
    object-fit: contain;
}

.coach-lp-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 800;
}

.coach-lp-nav a {
    color: #334155;
    text-decoration: none;
}

.coach-lp-nav a:hover,
.coach-lp-nav a:focus-visible {
    color: var(--lp-green);
}

.coach-lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid var(--lp-gold);
    border-radius: 12px;
    background: var(--lp-gold);
    box-shadow: 0 6px 18px rgba(227, 182, 64, 0.18);
    color: #111827;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.coach-lp-btn:hover {
    color: #fff;
    background: #d97706;
    border-color: #d97706;
    transform: translateY(-2px);
}

.coach-lp-btn:active {
    transform: translateY(0);
}

.coach-lp-btn:focus-visible,
.coach-lp-nav a:focus-visible,
.coach-lp-faq summary:focus-visible {
    outline: 3px solid rgba(240, 180, 63, 0.55);
    outline-offset: 3px;
}

.coach-lp-btn--small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
}

.coach-lp-btn--ghost {
    background: #fff;
    color: #334155;
    border-color: #cbd5e1;
    box-shadow: none;
}

.coach-lp-btn--ghost:hover {
    background: #f8fafc;
    color: #111827;
    border-color: #94a3b8;
    box-shadow: none;
}

.coach-lp-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 78px;
    background: linear-gradient(135deg, #fff7dc 0%, #ffffff 48%, #f6f9ff 100%);
}

.coach-lp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 84%);
}

.coach-lp[data-landing-slug="school-crm"] .coach-lp-hero {
    background-image:
        linear-gradient(90deg, rgba(255, 249, 235, 0.98) 0%, rgba(255, 249, 235, 0.96) 42%, rgba(255, 249, 235, 0.72) 60%, rgba(255, 249, 235, 0.18) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.86) 90%),
        url("/images/back_school_landing.webp"),
        linear-gradient(135deg, #fff7dc 0%, #ffffff 48%, #f6f9ff 100%);
    background-position:
        center,
        center,
        right 28px top 46px,
        center;
    background-repeat: no-repeat;
    background-size:
        cover,
        cover,
        min(62vw, 980px) auto,
        cover;
}

.coach-lp[data-landing-slug="school-crm"] .coach-lp-hero__content--wide h1 {
    max-width: 760px;
}

.coach-lp[data-landing-slug="school-crm"] .coach-lp-hero__content--wide .coach-lp-hero__subtitle {
    max-width: 760px;
}

.coach-lp-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
    align-items: center;
    gap: 56px;
}

.coach-lp-hero__stack {
    position: relative;
    display: grid;
    gap: 34px;
}

.coach-lp-hero__content--wide {
    max-width: 1180px;
}

.coach-lp-hero__content--wide h1 {
    max-width: 1040px;
}

.coach-lp-hero__content--wide .coach-lp-hero__subtitle {
    max-width: 880px;
}

.coach-lp-hero__content--wide .coach-lp-stats {
    max-width: none;
}

.coach-lp-eyebrow,
.coach-lp-section-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 10px;
    border: 0;
    border-radius: 18px;
    background: #fff5d6;
    color: #8a5a00;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.coach-lp-hero h1 {
    margin: 18px 0 0;
    max-width: 820px;
    color: #111827;
    font-size: 58px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.coach-lp-hero__subtitle {
    margin: 22px 0 0;
    max-width: 690px;
    color: #475569;
    font-size: 20px;
    line-height: 1.55;
}

.coach-lp-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.coach-lp-hero__microcopy {
    margin-top: 14px;
    color: #617086;
    font-size: 14px;
    line-height: 1.45;
}

.coach-lp-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 34px;
    padding: 12px;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--lp-shadow-soft);
    backdrop-filter: blur(18px);
}

.coach-lp-stat {
    min-height: 112px;
    padding: 16px;
    border: 1px solid #e4edf5;
    border-radius: 14px;
    background: #f8fbff;
}

.coach-lp-stat strong {
    display: block;
    color: #16324f;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.coach-lp-stat span {
    display: block;
    margin-top: 8px;
    color: #6b7c93;
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.coach-lp-hero-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
    margin-top: 28px;
    padding: 14px;
}

.coach-lp-hero-step {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 188px;
    padding: 18px;
    border-color: #f1dfb2;
    background: #fffdfa;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.coach-lp-hero-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -24px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffc107;
    box-shadow: 0 8px 18px rgba(217, 119, 6, 0.18);
    color: #111827;
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
    transform: translateY(-50%);
}

.coach-lp-hero-step__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.coach-lp-hero-step .coach-lp-hero-step__number,
.coach-lp-hero-step .coach-lp-hero-step__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 0;
    overflow-wrap: normal;
}

.coach-lp-hero-step .coach-lp-hero-step__number {
    width: 34px;
    height: 34px;
    border: 1px solid #f0d692;
    border-radius: 50%;
    background: #fff5d6;
    color: #8a5a00;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
}

.coach-lp-hero-step .coach-lp-hero-step__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #fff3cf;
    color: #d97706;
}

.coach-lp-hero-step .coach-lp-hero-step__icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.coach-lp-hero-step strong {
    color: #111827;
    font-size: 18px;
    line-height: 1.22;
    font-weight: 900;
}

.coach-lp-hero-step > span {
    margin-top: 10px;
    color: #617086;
    font-size: 13.5px;
    line-height: 1.45;
}

.coach-lp-main-shot {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid #d7e0ea;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--lp-shadow);
}

.coach-lp-main-shot img {
    display: block;
    width: 100%;
    height: auto;
}

.coach-lp-main-shot figcaption {
    padding: 13px 16px;
    border-bottom: 1px solid #e6ebf2;
    background: #f8fbff;
    color: #5a6f87;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
}

.coach-lp-lesson-compose {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(330px, 0.85fr);
    gap: 24px;
    align-items: stretch;
}

.coach-lp-main-shot--compact {
    align-self: stretch;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.coach-lp-main-shot--compact img {
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.coach-lp-lesson-compose__content {
    display: grid;
    align-content: center;
    gap: 0;
    padding: 24px;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--lp-shadow-soft);
}

.coach-lp-lesson-compose__content h2 {
    margin: 16px 0 0;
    color: #111827;
    font-size: 32px;
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: 0;
}

.coach-lp-lesson-compose__content p {
    margin: 14px 0 0;
    color: #617086;
    font-size: 15px;
    line-height: 1.55;
}

.coach-lp-lesson-compose__content .coach-lp-checklist-panel {
    margin-top: 18px;
}

.coach-lp-hero-card {
    align-self: center;
    padding: 24px;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--lp-shadow);
}

.coach-lp-hero-card__head {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(16, 25, 21, 0.1);
}

.coach-lp-hero-card__head strong,
.coach-lp-hero-card__head span {
    display: block;
}

.coach-lp-hero-card__head strong {
    color: var(--lp-ink);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
}

.coach-lp-hero-card__head span {
    margin-top: 8px;
    color: var(--lp-muted);
    font-size: 14px;
    line-height: 1.45;
}

.coach-lp-hero-card__flow {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.coach-lp-hero-card__flow > div {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 12px;
    padding: 14px;
    border: 1px solid #e4edf5;
    border-radius: 14px;
    background: #f8fbff;
}

.coach-lp-hero-card__flow span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-row: span 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f5f7fb;
    color: #111827;
    font-size: 14px;
    font-weight: 900;
}

.coach-lp-hero-card__flow strong {
    color: var(--lp-ink);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
}

.coach-lp-hero-card__flow p {
    margin: 5px 0 0;
    color: #617086;
    font-size: 13px;
    line-height: 1.35;
}

.coach-lp-hero-card__note {
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid #efd89c;
    border-radius: 14px;
    background: #fff8e8;
    color: #70571a;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
}

.coach-lp-section {
    padding: 78px 0;
}

.coach-lp-section--pain,
.coach-lp-section--proof {
    background: #fff;
}

.coach-lp-section--features {
    background: #f8fafc;
}

.coach-lp-section--student {
    background: #fff;
}

.coach-lp-section--pricing {
    background: #fff;
}

.coach-lp-section--offer {
    padding: 58px 0;
    background: linear-gradient(135deg, #16324f 0%, #1d2735 100%);
    color: #fff;
}

.coach-lp-section h2 {
    margin: 16px 0 0;
    color: inherit;
    font-size: 38px;
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: 0;
}

.coach-lp-section p {
    margin: 16px 0 0;
    color: #617086;
    font-size: 17px;
    line-height: 1.6;
}

.coach-lp-two-col,
.coach-lp-proof,
.coach-lp-offer {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: 52px;
    align-items: center;
}

.coach-lp-checklist,
.coach-lp-proof ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.coach-lp-checklist-panel {
    display: grid;
    gap: 14px;
}

.coach-lp-list-title {
    display: block;
    color: #16324f;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.coach-lp-checklist li,
.coach-lp-proof li {
    position: relative;
    min-height: 56px;
    padding: 16px 18px 16px 50px;
    border: 1px solid #e4edf5;
    border-radius: 14px;
    background: var(--lp-surface-soft);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
    color: #1f2937;
    font-size: 16px;
    line-height: 1.4;
}

.coach-lp-checklist li::before,
.coach-lp-proof li::before {
    content: "!";
    position: absolute;
    left: 18px;
    top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff1c7;
    color: #7a5407;
    font-size: 12px;
    font-weight: 900;
}

.coach-lp-proof li::before {
    content: "";
    top: 21px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--lp-green);
    box-shadow: inset 0 0 0 4px #dceadf;
}

.coach-lp-section--positive .coach-lp-checklist li::before {
    content: "";
    top: 19px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #1f8f5f;
    box-shadow: inset 0 0 0 5px #e8f6ee;
}

.coach-lp-section-head {
    max-width: 790px;
    margin-bottom: 36px;
}

.coach-lp-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.coach-lp-steps::before {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    top: 42px;
    height: 2px;
    background: linear-gradient(90deg, #e6ebf2, #efd89c);
}

.coach-lp-step,
.coach-lp-feature {
    position: relative;
    min-height: 100%;
    padding: 26px;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

.coach-lp-step span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f5f7fb;
    color: #111827;
    font-size: 14px;
    font-weight: 900;
}

.coach-lp-step h3,
.coach-lp-feature h3 {
    margin: 18px 0 0;
    color: var(--lp-ink);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
}

.coach-lp-step p,
.coach-lp-feature p {
    margin-top: 10px;
    font-size: 15px;
}

.coach-lp-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.coach-lp-feature {
    border-top: 1px solid var(--lp-border);
}

.coach-lp-student-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.coach-lp-student-card {
    position: relative;
    min-height: 100%;
    padding: 24px;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

.coach-lp-student-card::before {
    content: "";
    display: block;
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: var(--lp-gold);
}

.coach-lp-student-card h3 {
    margin: 18px 0 0;
    color: var(--lp-ink);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
}

.coach-lp-student-card p {
    margin-top: 10px;
    color: var(--lp-muted);
    font-size: 15px;
    line-height: 1.55;
}

.coach-lp-pricing {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.coach-lp-price-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--lp-shadow-soft);
}

.coach-lp-price-card--featured {
    border-color: rgba(255, 193, 7, 0.72);
    box-shadow: 0 18px 44px rgba(217, 119, 6, 0.14);
}

.coach-lp-price-card h3 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0;
}

.coach-lp-price-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 18px;
}

.coach-lp-price-card__price strong {
    color: #111827;
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
}

.coach-lp-price-card__price span {
    color: #617086;
    font-size: 14px;
    font-weight: 800;
}

.coach-lp-price-card p {
    margin-top: 16px;
    color: #617086;
    font-size: 14px;
    line-height: 1.55;
}

.coach-lp-price-card .coach-lp-checklist {
    margin-top: 18px;
}

.coach-lp-price-card .coach-lp-checklist li {
    min-height: 0;
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 14px;
}

.coach-lp-price-card .coach-lp-btn {
    width: 100%;
    margin-top: auto;
}

.coach-lp-pricing-note {
    margin: 18px 0 0;
    color: #617086;
    font-size: 14px;
    line-height: 1.55;
}

.coach-lp-section--screens {
    background: #fff;
}

.coach-lp-screen-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.coach-lp-screen-card {
    overflow: hidden;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.coach-lp-screen-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top center;
    border-bottom: 1px solid var(--lp-border);
    background: #f8fafc;
}

.coach-lp-screen-card__body {
    padding: 20px;
}

.coach-lp-screen-card__body span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: #fff5d6;
    color: #8a5a00;
    font-size: 12px;
    font-weight: 900;
}

.coach-lp-screen-card__body h3 {
    margin: 14px 0 0;
    color: var(--lp-ink);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
}

.coach-lp-screen-card__body p {
    margin-top: 10px;
    color: var(--lp-muted);
    font-size: 15px;
    line-height: 1.55;
}

.coach-lp-proof {
    align-items: start;
    grid-template-columns: minmax(0, 0.75fr) minmax(440px, 1.25fr);
}

.coach-lp-proof-stack {
    display: grid;
    gap: 14px;
}

.coach-lp-proof-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.coach-lp-proof-compare > div {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid #e4edf5;
    border-radius: 18px;
    background: #fbfdff;
}

.coach-lp-proof-compare > div:nth-child(2) {
    border-color: #b9e2ce;
    background: #f0fbf6;
}

.coach-lp-proof-compare strong {
    color: #16324f;
    font-size: 16px;
    font-weight: 800;
}

.coach-lp-proof-compare span {
    position: relative;
    padding-left: 16px;
    color: #475569;
    font-size: 14px;
    line-height: 1.35;
}

.coach-lp-proof-compare span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.42;
}

.coach-lp-offer {
    align-items: center;
}

.coach-lp-offer .coach-lp-section-label {
    background: #fff5d6;
}

.coach-lp-offer h2 {
    color: #fff;
}

.coach-lp-offer p {
    color: rgba(255, 255, 255, 0.74);
}

.coach-lp-offer .coach-lp-btn {
    justify-self: end;
    min-width: 260px;
    background: var(--lp-gold);
    color: var(--lp-ink);
    border-color: var(--lp-gold);
    box-shadow: 0 10px 24px rgba(227, 181, 71, 0.16);
}

.coach-lp-offer .coach-lp-btn:hover {
    background: #d97706;
    border-color: #d97706;
    color: #fff;
}

.coach-lp-faq {
    display: grid;
    gap: 10px;
}

.coach-lp-faq details {
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

.coach-lp-faq summary {
    position: relative;
    cursor: pointer;
    padding: 18px 56px 18px 20px;
    color: var(--lp-ink);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
    list-style: none;
}

.coach-lp-faq summary::-webkit-details-marker {
    display: none;
}

.coach-lp-faq summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-top: -14px;
    border-radius: 50%;
    background: #edf6f0;
    color: var(--lp-green);
    font-size: 20px;
    line-height: 1;
}

.coach-lp-faq details[open] summary::after {
    content: "-";
}

.coach-lp-faq details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--lp-muted);
    font-size: 15px;
}

.coach-lp-footer {
    padding: 34px 0 96px;
    background: #fff;
    border-top: 1px solid var(--lp-border);
}

.coach-lp-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.coach-lp-footer strong,
.coach-lp-footer span {
    display: block;
}

.coach-lp-footer strong {
    color: var(--lp-ink);
    font-size: 18px;
}

.coach-lp-footer span {
    margin-top: 4px;
    color: var(--lp-muted);
    font-size: 14px;
}

.coach-lp-sticky {
    display: none;
}

@media (max-width: 1120px) {
    .coach-lp-hero {
        padding: 64px 0 60px;
    }

    .coach-lp[data-landing-slug="school-crm"] .coach-lp-hero {
        background-image:
            linear-gradient(90deg, rgba(255, 249, 235, 0.98) 0%, rgba(255, 249, 235, 0.92) 56%, rgba(255, 249, 235, 0.46) 100%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.9) 88%),
            url("/images/back_school_landing.webp"),
            linear-gradient(135deg, #fff7dc 0%, #ffffff 48%, #f6f9ff 100%);
        background-position:
            center,
            center,
            right -90px top 54px,
            center;
        background-size:
            cover,
            cover,
            760px auto,
            cover;
    }

    .coach-lp-hero__grid {
        grid-template-columns: 1fr;
    }

    .coach-lp-lesson-compose {
        grid-template-columns: 1fr;
    }

    .coach-lp-main-shot--compact img {
        height: auto;
        object-fit: contain;
    }

    .coach-lp-hero h1 {
        font-size: 46px;
    }

    .coach-lp-steps,
    .coach-lp-features,
    .coach-lp-student-grid,
    .coach-lp-pricing,
    .coach-lp-screen-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coach-lp-steps::before {
        display: none;
    }

    .coach-lp-hero-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coach-lp-hero-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 860px) {
    .coach-lp-two-col,
    .coach-lp-proof,
    .coach-lp-offer {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .coach-lp-offer .coach-lp-btn {
        justify-self: start;
    }
}

@media (max-width: 760px) {
    .coach-trainer-landing-page .coach-lp-container {
        width: min(100% - 28px, 1180px);
    }

    .coach-lp-header__inner {
        min-height: 62px;
    }

    .coach-lp-logo {
        min-width: 0;
    }

    .coach-lp-logo span {
        display: none;
    }

    .coach-lp-nav,
    .coach-lp-header .coach-lp-btn {
        display: none;
    }

    .coach-lp-hero {
        padding: 38px 0 44px;
    }

    .coach-lp[data-landing-slug="school-crm"] .coach-lp-hero {
        background-image:
            linear-gradient(180deg, rgba(255, 249, 235, 0.94) 0%, rgba(255, 249, 235, 0.98) 58%, rgba(255, 255, 255, 0.94) 100%),
            url("/images/back_school_landing.webp"),
            linear-gradient(135deg, #fff7dc 0%, #ffffff 48%, #f6f9ff 100%);
        background-position:
            center,
            right -260px top 28px,
            center;
        background-size:
            cover,
            680px auto,
            cover;
    }

    .coach-lp-hero::before {
        background-size: 34px 34px;
    }

    .coach-lp-hero h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .coach-lp-hero__subtitle {
        font-size: 17px;
        line-height: 1.5;
    }

    .coach-lp-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .coach-lp-actions .coach-lp-btn {
        width: 100%;
    }

    .coach-lp-stats,
    .coach-lp-steps,
    .coach-lp-features,
    .coach-lp-student-grid,
    .coach-lp-pricing,
    .coach-lp-screen-grid,
    .coach-lp-proof-compare {
        grid-template-columns: 1fr;
    }

    .coach-lp-stat {
        min-height: 82px;
    }

    .coach-lp-hero-steps {
        gap: 30px;
        margin-top: 28px;
        padding: 12px;
    }

    .coach-lp-hero-step {
        min-height: 200px;
        padding: 16px;
    }

    .coach-lp-hero-step:not(:last-child)::after {
        content: "↓";
        top: auto;
        right: auto;
        bottom: -28px;
        left: 50%;
        display: flex;
        width: 26px;
        height: 26px;
        font-size: 16px;
        transform: translateX(-50%);
    }

    .coach-lp-hero-card {
        padding: 18px;
    }

    .coach-lp-main-shot figcaption {
        padding: 11px 12px;
        font-size: 12px;
    }

    .coach-lp-lesson-compose__content {
        padding: 20px;
    }

    .coach-lp-lesson-compose__content h2 {
        font-size: 27px;
        line-height: 1.18;
    }

    .coach-lp-section {
        padding: 50px 0;
    }

    .coach-lp-section h2 {
        font-size: 29px;
        line-height: 1.18;
    }

    .coach-lp-step,
    .coach-lp-feature,
    .coach-lp-student-card {
        padding: 22px;
    }

    .coach-lp-offer .coach-lp-btn {
        justify-self: stretch;
        min-width: 0;
        width: 100%;
    }

    .coach-lp-footer {
        padding-bottom: 108px;
    }

    .coach-lp-footer__inner {
        align-items: stretch;
        flex-direction: column;
    }

    .coach-lp-sticky {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        display: grid;
        gap: 7px;
        padding: 9px 14px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.95);
        border-top: 1px solid rgba(16, 25, 21, 0.12);
        box-shadow: 0 -12px 28px rgba(16, 25, 21, 0.08);
        backdrop-filter: blur(16px);
    }

    .coach-lp-sticky span {
        display: block;
        color: #607166;
        font-size: 12px;
        line-height: 1.1;
        font-weight: 800;
        text-align: center;
    }

    .coach-lp-sticky .coach-lp-btn {
        width: 100%;
        min-height: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .coach-lp-btn {
        transition: none;
    }

    .coach-lp-btn:hover,
    .coach-lp-btn:active {
        transform: none;
    }
}

/* Coach hub BEGIN */
.coach-hub-page {
    background: #f8fafc;
}

.coach-lp[data-landing-slug="coach-hub"] .coach-lp-hero {
    background-image:
        linear-gradient(115deg, rgba(255, 247, 220, 0.98) 0%, rgba(255, 255, 255, 0.98) 48%, rgba(235, 248, 241, 0.92) 100%),
        linear-gradient(rgba(15, 23, 42, 0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.024) 1px, transparent 1px);
    background-size: cover, 42px 42px, 42px 42px;
}

.coach-hub__hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
}

.coach-hub__hero-media {
    align-self: center;
}

.coach-hub__hero-media img {
    object-fit: cover;
    object-position: left center;
}

.coach-hub__stats {
    margin-top: 34px;
}

.coach-hub__process {
    margin-top: 34px;
}

.coach-hub__process-title {
    max-width: 900px;
    margin: 0 auto;
    color: #16324f;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 900;
    text-align: center;
}

.coach-hub__process .coach-hub__stats {
    margin-top: 18px;
}

.coach-hub__nav-wrap {
    position: relative;
    border-bottom: 1px solid var(--lp-border);
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(14px);
}

.coach-hub__nav {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    scrollbar-width: none;
}

.coach-hub__nav::-webkit-scrollbar {
    display: none;
}

.coach-hub__nav a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 9px 14px;
    border: 1px solid #d7e0ea;
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    font-size: 13px;
    line-height: 1.1;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.coach-hub__nav a:hover,
.coach-hub__nav a:focus-visible {
    border-color: #f0d692;
    background: #fff5d6;
    color: #8a5a00;
}

.coach-hub-before-after {
    background: #ffffff;
}

.coach-hub-before-after__head {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.coach-hub-before-after__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.coach-hub-before-after__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    padding: 24px;
    border: 1px solid var(--lp-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--lp-shadow-soft);
}

.coach-hub-before-after__card--before {
    border-color: #f0d0cb;
    background: linear-gradient(180deg, #fff8f6 0%, #ffffff 48%, #ffffff 100%);
}

.coach-hub-before-after__card--after {
    border-color: #cdebd8;
    background: linear-gradient(180deg, #f4fff8 0%, #ffffff 48%, #ffffff 100%);
}

.coach-hub-before-after__card-head h3 {
    margin: 0;
    color: #111827;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0;
}

.coach-hub-before-after__card-head p {
    margin: 8px 0 0;
    color: #617086;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
}

.coach-hub-before-after__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(210px, 21vw, 270px);
    margin: 20px 0 0;
    overflow: hidden;
    border: 1px solid #e6ebf2;
    border-radius: 18px;
    background: #f8fafc;
}

.coach-hub-before-after__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.coach-hub-before-after__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.coach-hub-before-after__list li {
    position: relative;
    min-width: 0;
    padding-left: 34px;
    color: #334155;
    font-size: 14.5px;
    line-height: 1.35;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.coach-hub-before-after__list li::before {
    position: absolute;
    left: 0;
    top: -1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
}

.coach-hub-before-after__list--before li::before {
    content: "!";
    background: #fff1ee;
    color: #9b2f28;
}

.coach-hub-before-after__list--after li::before {
    content: "✓";
    background: #e9f9ef;
    color: #137333;
}

.coach-hub-before-after__finance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
}

.coach-hub-before-after__finance-card {
    min-width: 0;
    padding: 14px;
    border: 1px solid #e6ebf2;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.055);
}

.coach-hub-before-after__finance-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: #eaf8f0;
    color: #137333;
}

.coach-hub-before-after__finance-icon svg {
    width: 15px;
    height: 15px;
}

.coach-hub-before-after__finance-card strong {
    display: block;
    margin-top: 12px;
    color: #334155;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 900;
}

.coach-hub-before-after__finance-value {
    display: block;
    margin-top: 8px;
    color: #137333;
    font-size: 18px;
    line-height: 1.05;
    font-weight: 900;
    white-space: nowrap;
}

.coach-hub-before-after__finance-card small {
    display: block;
    margin-top: 7px;
    color: #617086;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 800;
}

.coach-hub-before-after__finance-card--warning .coach-hub-before-after__finance-icon {
    background: #fff4e6;
    color: #b45309;
}

.coach-hub-before-after__finance-card--warning .coach-hub-before-after__finance-value {
    color: #b45309;
}

.coach-hub-before-after__arrow {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid #f0d692;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
    color: #d97706;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

.coach-hub-before-after__arrow-down {
    display: none;
}

.coach-hub-before-after__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 28px;
    padding: 24px 28px;
    border: 1px solid #f0d692;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff8df 0%, #ffffff 100%);
}

.coach-hub-before-after__cta strong {
    min-width: 0;
    color: #111827;
    font-size: 26px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: 0;
}

.coach-hub-before-after__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-shrink: 0;
}

.coach-hub-before-after__text-link {
    display: inline-flex;
    align-items: center;
    color: #1f8f5f;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
    text-decoration: none;
}

.coach-hub-before-after__text-link::after {
    content: "→";
    margin-left: 8px;
    color: #d97706;
}

.coach-hub-before-after__text-link:hover,
.coach-hub-before-after__text-link:focus-visible {
    color: #137333;
}

.coach-hub__workflow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coach-hub__workflow::before {
    display: none;
}

.coach-hub__feature-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.coach-hub__feature-card {
    display: flex;
    flex-direction: column;
    min-height: 276px;
    padding: 20px;
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--lp-shadow-soft);
}

.coach-hub__feature-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin: -20px -20px 18px;
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid #e6ebf2;
    border-radius: 16px 16px 0 0;
    background: #f8fafc;
}

.coach-hub__feature-preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.coach-hub__feature-card h3 {
    margin: 0;
    color: #111827;
    font-size: 20px;
    line-height: 1.18;
    font-weight: 900;
}

.coach-hub__feature-card p {
    margin: 12px 0 0;
    color: #617086;
    font-size: 14.5px;
    line-height: 1.45;
}

.coach-hub__feature-card a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    padding-top: 18px;
    color: #1f8f5f;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
    text-decoration: none;
}

.coach-hub__feature-card a::after {
    content: "→";
    margin-left: 8px;
    color: #d97706;
}

.coach-hub__feature-card a:hover,
.coach-hub__feature-card a:focus-visible {
    color: #137333;
}

.coach-hub__inside {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 34px;
    align-items: start;
}

.coach-hub__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.coach-hub__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 14px;
    border: 1px solid #d7e0ea;
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}

.coach-hub__start-section {
    background: #ffffff;
}

.coach-hub__start-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.coach-hub__start-grid article {
    min-height: 132px;
    padding: 18px;
    border: 1px solid #f1dfb2;
    border-radius: 16px;
    background: #fffdfa;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.coach-hub__start-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #f0d692;
    border-radius: 50%;
    background: #fff5d6;
    color: #8a5a00;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
}

.coach-hub__start-grid strong {
    display: block;
    margin-top: 16px;
    color: #111827;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;
}

.coach-hub__center-action {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.coach-hub__school-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 26px;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--lp-shadow-soft);
}

.coach-hub__school-note h2 {
    margin-bottom: 0;
    font-size: 30px;
}

.coach-hub__school-note p {
    max-width: 720px;
    margin-bottom: 0;
}

@media (max-width: 1180px) {
    .coach-hub__feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .coach-hub__start-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .coach-hub__hero-grid,
    .coach-hub__inside,
    .coach-hub__school-note {
        grid-template-columns: 1fr;
    }

    .coach-hub-before-after__grid {
        grid-template-columns: 1fr;
    }

    .coach-hub-before-after__arrow {
        position: relative;
        left: auto;
        top: auto;
        margin: -2px auto;
        transform: none;
    }

    .coach-hub-before-after__arrow-right {
        display: none;
    }

    .coach-hub-before-after__arrow-down {
        display: inline;
    }

    .coach-hub-before-after__cta {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .coach-hub__school-note .coach-lp-btn {
        width: fit-content;
    }
}

@media (max-width: 720px) {
    .coach-hub__workflow,
    .coach-hub__feature-grid,
    .coach-hub__start-grid {
        grid-template-columns: 1fr;
    }

    .coach-hub-before-after {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .coach-hub-before-after__head {
        text-align: left;
    }

    .coach-hub-before-after__card {
        padding: 18px;
        border-radius: 18px;
    }

    .coach-hub-before-after__card-head h3 {
        font-size: 24px;
    }

    .coach-hub-before-after__image {
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .coach-hub-before-after__image img {
        height: auto;
        object-fit: contain;
    }

    .coach-hub-before-after__list {
        grid-template-columns: 1fr;
    }

    .coach-hub-before-after__finance {
        grid-template-columns: 1fr;
        margin-top: 0;
        padding-top: 20px;
    }

    .coach-hub-before-after__cta {
        padding: 20px;
    }

    .coach-hub-before-after__cta strong {
        font-size: 22px;
    }

    .coach-hub-before-after__actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .coach-hub-before-after__actions .coach-lp-btn,
    .coach-hub-before-after__text-link {
        justify-content: center;
        width: 100%;
    }

    .coach-hub__feature-card,
    .coach-hub__start-grid article {
        min-height: 0;
    }

    .coach-hub__feature-preview {
        height: 170px;
    }

    .coach-hub__school-note {
        padding: 20px;
    }

    .coach-hub__school-note .coach-lp-btn {
        width: 100%;
    }
}
/* Coach hub END */

/* Public tariffs BEGIN */
.public-tariffs-page {
    background: #f8fafc;
}

.public-tariffs__section:nth-of-type(odd) {
    background: #ffffff;
}

.public-tariffs__section:first-child {
    position: relative;
    overflow: hidden;
    padding-top: 88px;
    background: linear-gradient(135deg, #fff7dc 0%, #ffffff 48%, #f6f9ff 100%);
}

.public-tariffs__section:first-child::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 84%);
}

.public-tariffs__section:first-child > .coach-lp-container {
    position: relative;
    z-index: 1;
}

.public-tariffs__section-head {
    max-width: 820px;
}

.public-tariffs__periods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 24px;
    padding: 6px;
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.public-tariffs__period-btn {
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: #334155;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.15;
    cursor: pointer;
    transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.public-tariffs__period-btn:hover,
.public-tariffs__period-btn:focus-visible {
    color: #111827;
    background: #fff9e6;
}

.public-tariffs__period-btn.is-active {
    border-color: rgba(255, 193, 7, 0.68);
    background: var(--lp-gold);
    color: #111827;
    box-shadow: 0 8px 18px rgba(217, 119, 6, 0.16);
}

.public-tariffs__period-panel {
    display: none;
}

.public-tariffs__period-panel.is-active {
    display: block;
}

.public-tariffs__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.public-tariffs__grid--school {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-tariffs__card {
    min-width: 0;
}

.public-tariffs__card--current {
    border-color: rgba(31, 143, 95, 0.46);
    box-shadow: 0 18px 44px rgba(31, 143, 95, 0.12);
}

.public-tariffs__card-topline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 28px;
    margin-bottom: 10px;
}

.public-tariffs__badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #fff5d6;
    color: #8a5a00;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.public-tariffs__badge--soft {
    background: #eaf8f0;
    color: #137333;
}

.public-tariffs__price {
    flex-wrap: wrap;
}

.public-tariffs__price del {
    color: #94a3b8;
    font-size: 16px;
    font-weight: 800;
}

.public-tariffs__total {
    display: grid;
    gap: 4px;
    margin-top: 14px;
    padding: 14px;
    border: 1px solid #edf1f6;
    border-radius: 14px;
    background: #fbfcfe;
    color: #617086;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 800;
}

.public-tariffs__total strong {
    color: #111827;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 900;
}

.public-tariffs__total small {
    color: #7a8799;
    font-size: 12px;
    line-height: 1.35;
}

.public-tariffs__list {
    margin-bottom: 22px;
}

.public-tariffs__empty {
    padding: 28px;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--lp-shadow-soft);
    color: #617086;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 800;
    text-align: center;
}

.public-tariffs__note {
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.public-tariffs__custom {
    max-width: 680px;
    margin: 18px auto 0;
    padding: 14px 18px;
    border: 1px solid rgba(31, 143, 95, 0.22);
    border-radius: 16px;
    background: #f0fbf5;
    color: #137333;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 900;
    text-align: center;
}

@media (max-width: 1120px) {
    .public-tariffs__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-tariffs__grid--school {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .public-tariffs__grid--school {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .public-tariffs__section:first-child {
        padding-top: 56px;
    }

    .public-tariffs__periods {
        width: 100%;
    }

    .public-tariffs__period-btn {
        flex: 1 1 120px;
        padding: 0 12px;
    }

    .public-tariffs__grid {
        grid-template-columns: 1fr;
    }
}
/* Public tariffs END */

/* Main product home BEGIN */
.main-product-home-page {
    background: #f8fafc;
}

.main-product-home .main-product-hero {
    padding: 76px 0 42px;
    background-image:
        linear-gradient(115deg, rgba(255, 247, 220, 0.98) 0%, rgba(255, 255, 255, 0.98) 48%, rgba(235, 248, 241, 0.92) 100%),
        linear-gradient(rgba(15, 23, 42, 0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.024) 1px, transparent 1px);
    background-size: cover, 42px 42px, 42px 42px;
}

.main-product-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    gap: 52px;
    align-items: center;
}

.main-product-link {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    color: #1f8f5f;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
    text-decoration: none;
}

.main-product-link::after {
    content: "↓";
    margin-left: 8px;
    color: #d97706;
}

.main-product-link:hover,
.main-product-link:focus-visible {
    color: #137333;
}

.main-product-visual {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 16px;
    border: 1px solid rgba(215, 224, 234, 0.92);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--lp-shadow);
    backdrop-filter: blur(18px);
}

.main-product-visual__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 4px 12px;
    color: #16324f;
}

.main-product-visual__bar strong {
    margin-right: auto;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
}

.main-product-visual__bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e6ebf2;
}

.main-product-visual__bar span:last-child {
    background: #ffc107;
}

.main-product-visual__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(190px, 0.75fr);
    grid-auto-rows: minmax(136px, 1fr);
    gap: 12px;
}

.main-product-visual__shot {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e6ebf2;
    border-radius: 18px;
    background: #f8fafc;
}

.main-product-visual__shot--large {
    grid-row: span 2;
}

.main-product-visual__shot img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

.main-product-visual__shot span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 24px);
    min-height: 30px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    color: #16324f;
    font-size: 12px;
    line-height: 1.1;
    font-weight: 900;
}

.main-product-visual__finance {
    position: absolute;
    right: 28px;
    bottom: -24px;
    width: min(240px, 54%);
    padding: 16px 18px;
    border: 1px solid #bfe6cf;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
}

.main-product-visual__finance strong,
.main-product-visual__finance span {
    display: block;
}

.main-product-visual__finance strong {
    color: #137333;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
}

.main-product-visual__finance span {
    margin-top: 5px;
    color: #617086;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}

.main-product-trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 54px;
    padding: 16px 18px;
    border: 1px solid rgba(215, 224, 234, 0.86);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--lp-shadow-soft);
    backdrop-filter: blur(16px);
}

.main-product-trust p {
    margin: 0;
    color: #334155;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
}

.main-product-trust div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.main-product-trust span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 10px;
    border: 1px solid #d7e0ea;
    border-radius: 999px;
    background: #ffffff;
    color: #475569;
    font-size: 12px;
    line-height: 1.1;
    font-weight: 900;
}

.main-product-section--white {
    background: #ffffff;
}

.main-product-center-head {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.main-product-scenario-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.main-product-scenario-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--lp-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--lp-shadow-soft);
}

.main-product-scenario-card:nth-child(2) {
    border-color: #f1dfb2;
}

.main-product-scenario-card figure {
    margin: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--lp-border);
    background: #f8fafc;
}

.main-product-scenario-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8.7;
    object-fit: cover;
    object-position: center;
}

.main-product-scenario-card__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 24px;
}

.main-product-scenario-card h3,
.main-product-feature-card h3 {
    margin: 0;
    color: #111827;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
}

.main-product-scenario-card p,
.main-product-feature-card p {
    margin-top: 12px;
    color: #617086;
    font-size: 15px;
    line-height: 1.55;
}

.main-product-scenario-card ul,
.main-product-checklist {
    display: grid;
    gap: 10px;
    margin: 18px 0 22px;
    padding: 0;
    list-style: none;
}

.main-product-scenario-card li,
.main-product-checklist li,
.main-product-compare-card li {
    position: relative;
    padding-left: 28px;
    color: #334155;
    font-size: 14.5px;
    line-height: 1.35;
    font-weight: 800;
}

.main-product-scenario-card li::before,
.main-product-checklist li::before,
.main-product-compare-card--after li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e9f9ef;
    color: #137333;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
}

.main-product-scenario-card .coach-lp-btn {
    width: fit-content;
    margin-top: auto;
}

.main-product-platform-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.main-product-platform-card {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 88px;
    padding: 18px;
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--lp-shadow-soft);
}

.main-product-platform-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: #fff3cf;
    color: #d97706;
    font-size: 15px;
    font-weight: 900;
}

.main-product-platform-card span svg {
    display: block;
    width: 19px;
    height: 19px;
}

.main-product-platform-card strong {
    min-width: 0;
    color: #111827;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
}

.main-product-before-after {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.main-product-compare-card {
    min-width: 0;
    padding: 26px;
    border: 1px solid var(--lp-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--lp-shadow-soft);
}

.main-product-compare-card--before {
    border-color: #f0d0cb;
    background: linear-gradient(180deg, #fff8f6 0%, #ffffff 58%);
}

.main-product-compare-card--after {
    border-color: #cdebd8;
    background: linear-gradient(180deg, #f4fff8 0%, #ffffff 58%);
}

.main-product-compare-card h3 {
    margin: 0;
    color: #111827;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 900;
}

.main-product-compare-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.main-product-compare-card--before li::before {
    content: "!";
    position: absolute;
    left: 0;
    top: -1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff1ee;
    color: #9b2f28;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
}

.main-product-compare-arrow {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid #f0d692;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
    color: #d97706;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

.main-product-compare-arrow__down {
    display: none;
}

.main-product-before-after__result {
    margin: 26px auto 0;
    padding: 20px 24px;
    border: 1px solid #f0d692;
    border-radius: 18px;
    background: #fff8df;
    color: #70571a;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 900;
    text-align: center;
}

.main-product-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.main-product-flow article {
    min-width: 0;
    min-height: 188px;
    padding: 18px;
    border: 1px solid #f1dfb2;
    border-radius: 16px;
    background: #fffdfa;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.main-product-flow span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #f0d692;
    border-radius: 50%;
    background: #fff5d6;
    color: #8a5a00;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
}

.main-product-flow strong {
    display: block;
    margin-top: 16px;
    color: #111827;
    font-size: 18px;
    line-height: 1.28;
    font-weight: 900;
}

.main-product-flow p {
    margin: 10px 0 0;
    color: #617086;
    font-size: 14.5px;
    line-height: 1.45;
}

.main-product-feature-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.main-product-feature-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    padding: 18px;
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--lp-shadow-soft);
    color: inherit;
    text-decoration: none;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.main-product-feature-card:hover,
.main-product-feature-card:focus-visible {
    color: inherit;
    transform: translateY(-2px);
}

.main-product-feature-card figure {
    margin: -18px -18px 18px;
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid #e6ebf2;
    border-radius: 16px 16px 0 0;
    background: #f8fafc;
}

.main-product-feature-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

.main-product-feature-card h3 {
    font-size: 19px;
}

.main-product-feature-card p {
    font-size: 14.5px;
}

.main-product-feature-card__link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    padding-top: 16px;
    color: #1f8f5f;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
}

.main-product-center-action {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.main-product-school,
.main-product-video,
.main-product-pricing {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: 44px;
    align-items: center;
}

.main-product-school h2,
.main-product-video h2,
.main-product-pricing h2 {
    margin: 16px 0 0;
    color: #111827;
    font-size: 38px;
    line-height: 1.16;
    font-weight: 900;
}

.main-product-school p,
.main-product-video p,
.main-product-pricing p {
    margin-top: 16px;
    color: #617086;
    font-size: 17px;
    line-height: 1.6;
}

.main-product-school .coach-lp-btn {
    margin-top: 6px;
}

.main-product-school__media,
.main-product-video__frame {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid #d7e0ea;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--lp-shadow);
}

.main-product-school__media img,
.main-product-video__frame video {
    display: block;
    width: 100%;
    height: auto;
}

.main-product-video__placeholder {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #f8fafc;
}

.main-product-video__placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.55;
}

.main-product-video__placeholder span,
.main-product-video__placeholder strong {
    position: relative;
    z-index: 1;
}

.main-product-video__placeholder span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffc107;
    color: #111827;
    font-size: 28px;
    line-height: 1;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
}

.main-product-video__placeholder strong {
    align-self: start;
    max-width: 420px;
    margin: -88px 24px 24px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: #334155;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 900;
    text-align: center;
}

.main-product-pricing {
    padding: 30px;
    border: 1px solid #f0d692;
    border-radius: 22px;
    background: linear-gradient(135deg, #fff8df 0%, #ffffff 100%);
    box-shadow: var(--lp-shadow-soft);
}

.main-product-pricing-section {
    padding-top: 54px;
    padding-bottom: 54px;
}

.main-product-pricing__actions,
.main-product-final__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

/* .main-product-faq {
    max-width: 880px;
} */

.main-product-final {
    grid-template-columns: minmax(0, 1fr) auto;
}

.main-product-final .coach-lp-btn--ghost {
    border-color: rgba(255, 255, 255, 0.54);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.main-product-final .coach-lp-btn--ghost:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #111827;
}

@media (max-width: 1180px) {
    .main-product-hero__grid,
    .main-product-school,
    .main-product-video,
    .main-product-pricing {
        grid-template-columns: 1fr;
    }

    .main-product-visual {
        max-width: 820px;
    }

    .main-product-platform-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .main-product-flow,
    .main-product-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .main-product-pricing__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 920px) {
    .main-product-trust,
    .main-product-final {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-product-trust {
        display: grid;
    }

    .main-product-trust div {
        justify-content: flex-start;
    }

    .main-product-scenario-grid,
    .main-product-before-after {
        grid-template-columns: 1fr;
    }

    .main-product-compare-arrow {
        position: relative;
        left: auto;
        top: auto;
        margin: -2px auto;
        transform: none;
    }

    .main-product-compare-arrow__right {
        display: none;
    }

    .main-product-compare-arrow__down {
        display: inline;
    }

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

    .main-product-final__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .main-product-home .main-product-hero {
        padding: 42px 0 34px;
    }

    .main-product-hero__grid {
        gap: 30px;
    }

    .main-product-link {
        justify-content: center;
        width: 100%;
        min-height: 42px;
    }

    .main-product-visual {
        padding: 12px;
        border-radius: 18px;
    }

    .main-product-visual__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .main-product-visual__shot--large {
        grid-row: auto;
    }

    .main-product-visual__shot img {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .main-product-visual__finance {
        position: static;
        width: auto;
        margin-top: 12px;
    }

    .main-product-platform-grid,
    .main-product-flow,
    .main-product-feature-grid {
        grid-template-columns: 1fr;
    }

    .main-product-scenario-card__body,
    .main-product-compare-card,
    .main-product-pricing {
        padding: 20px;
    }

    .main-product-scenario-card h3,
    .main-product-feature-card h3,
    .main-product-compare-card h3 {
        font-size: 22px;
    }

    .main-product-compare-card ul {
        grid-template-columns: 1fr;
    }

    .main-product-before-after__result {
        padding: 18px;
        font-size: 16px;
        text-align: left;
    }

    .main-product-flow article {
        min-height: 0;
    }

    .main-product-school h2,
    .main-product-video h2,
    .main-product-pricing h2 {
        font-size: 29px;
        line-height: 1.18;
    }

    .main-product-video__placeholder {
        min-height: 230px;
    }

    .main-product-video__placeholder span {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }

    .main-product-video__placeholder strong {
        margin: -68px 16px 16px;
    }

    .main-product-pricing__actions,
    .main-product-final__actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .main-product-pricing__actions .coach-lp-btn,
    .main-product-final__actions .coach-lp-btn {
        width: 100%;
    }
}
/* Main product home END */
