@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap');


/* =========================================
   PREMIUM COURSE
   ========================================= */

:root {
    --course-ink: #170f0a;
    --course-charcoal: #231609;
    --course-charcoal-2: #2c1c0f;

    --course-paper: #faf3e5;
    --course-paper-2: #f1e2c4;

    --course-orange: #d5551c;
    --course-orange-light: #f6982f;

    --course-grey: #9c9182;
    --course-text-grey: #5c584e;

    --course-line-light: rgba(250, 243, 229, 0.14);
    --course-line-dark: rgba(23, 15, 10, 0.12);

    --course-container: 1120px;
}


/* =========================================
   BASE
   ========================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

.course-page,
.course-header,
.course-footer {
    font-family: 'Montserrat', Arial, sans-serif;
}

.course-page {
    background: var(--course-paper);
    color: var(--course-ink);

    line-height: 1.55;

    overflow: hidden;
}

.course-page *,
.course-header *,
.course-footer * {
    box-sizing: border-box;
}

.course-page h1,
.course-page h2,
.course-page h3,
.course-page h4 {
    font-family: 'Montserrat', Arial, sans-serif;
}

.course-page img {
    display: block;

    max-width: 100%;
}

.course-wrap {
    width: 100%;
    max-width: var(--course-container);

    margin: 0 auto;

    padding-left: 32px;
    padding-right: 32px;
}


/* =========================================
   BUTTONS
   ========================================= */

.course-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 14px 28px;

    border: 1px solid transparent;
    border-radius: 3px;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    text-decoration: none;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        opacity .25s ease;
}

.course-btn:hover {
    text-decoration: none;

    transform: translateY(-2px);
}

.course-btn--primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--course-orange-light),
            var(--course-orange)
        );
}

.course-btn--primary:hover {
    color: #fff;

    opacity: .92;
}

.course-btn--outline {
    color: var(--course-paper);

    background: transparent;

    border-color: rgba(250, 243, 229, .32);
}

.course-btn--outline:hover {
    color: var(--course-paper);

    border-color: var(--course-orange-light);
}

.course-btn--outline-dark {
    color: var(--course-ink);

    background: transparent;

    border-color: rgba(23, 15, 10, .25);
}

.course-btn--outline-dark:hover {
    color: var(--course-orange);

    border-color: var(--course-orange);
}


/* =========================================
   COMMON SECTION HEADER
   ========================================= */

.course-section-head {
    width: 100%;
    max-width: 680px;

    margin: 0 auto 54px;

    text-align: center;
}

.course-section-head h2 {
    margin: 10px 0 15px;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 34px;
    font-weight: 500;

    line-height: 1.18;

    letter-spacing: -0.02em;
}

.course-section-text {
    color: var(--course-text-grey);

    font-size: 15px;
    font-weight: 400;

    line-height: 1.65;
}

.course-section-text p {
    margin-top: 0;
}

.course-section-text p:last-child {
    margin-bottom: 0;
}

.course-eyebrow {
    color: var(--course-orange);

    font-size: 11px;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.course-eyebrow--light {
    color: var(--course-orange-light);
}


/* =========================================
   HEADER
   ========================================= */

.course-header {
    position: sticky;

    top: 0;

    z-index: 100;

    color: var(--course-paper);

    background: rgba(23, 15, 10, .94);

    border-bottom: 1px solid var(--course-line-light);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.course-header__inner {
    min-height: 76px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.course-brand {
    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--course-paper);

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 17px;
    font-weight: 500;

    line-height: 1.2;

    text-decoration: none;
}

.course-brand:hover {
    color: var(--course-paper);

    text-decoration: none;
}

.course-brand__mark {
    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--course-orange-light);

    border: 1px solid var(--course-orange);
    border-radius: 50%;
}

.course-brand__text small {
    display: block;

    margin-top: 4px;

    color: var(--course-grey);

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 9px;
    font-weight: 600;

    line-height: 1.2;

    letter-spacing: .11em;
    text-transform: uppercase;
}

.course-nav {
    display: flex;

    align-items: center;

    gap: 30px;
}

.course-nav a {
    color: rgba(250, 243, 229, .7);

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    transition: color .2s ease;
}

.course-nav a:hover {
    color: var(--course-orange-light);
}

.course-header__button {
    min-height: 40px;

    padding: 10px 20px;

    font-size: 11px;

    white-space: nowrap;
}


/* =========================================
   HERO
   ========================================= */

.course-hero {
    position: relative;

    overflow: hidden;

    padding: 95px 0 82px;

    color: var(--course-paper);

    background:
        radial-gradient(
            ellipse 900px 600px at 78% 15%,
            #4a2810 0%,
            var(--course-charcoal) 55%,
            var(--course-ink) 100%
        );
}

.course-hero__slice {
    position: absolute;

    width: 440px;
    height: 440px;

    top: -140px;
    right: -140px;

    opacity: .07;

    pointer-events: none;
}

.course-hero__grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, .85fr);

    gap: 65px;

    align-items: center;
}

.course-hero__badge {
    display: inline-flex;

    align-items: center;

    margin-bottom: 25px;

    padding: 7px 14px;

    color: var(--course-orange-light);

    border: 1px solid rgba(250, 243, 229, .22);
    border-radius: 100px;

    font-size: 10px;
    font-weight: 600;

    line-height: 1.3;

    letter-spacing: .1em;
    text-transform: uppercase;
}

.course-hero__badge::before {
    content: "";

    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    margin-right: 7px;

    background: var(--course-orange-light);

    border-radius: 50%;
}

.course-hero__title {
    max-width: 680px;

    margin: 0 0 22px;

    color: var(--course-paper);

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 50px;
    font-weight: 500;

    line-height: 1.08;

    letter-spacing: -0.035em;
}

.course-hero__title em {
    color: var(--course-orange-light);

    font-family: 'Montserrat', Arial, sans-serif;

    font-weight: 500;
    font-style: italic;
}

.course-hero__lead {
    max-width: 530px;

    margin-bottom: 32px;

    color: rgba(250, 243, 229, .72);

    font-size: 16px;
    font-weight: 400;

    line-height: 1.65;
}

.course-hero__lead p {
    margin-top: 0;
}

.course-hero__lead p:last-child {
    margin-bottom: 0;
}

.course-hero__buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 37px;
}

.course-hero__stats {
    display: flex;

    flex-wrap: wrap;

    gap: 28px 36px;

    padding-top: 25px;

    border-top: 1px solid var(--course-line-light);
}

.course-hero__stat {
    min-width: 90px;
}

.course-hero__stat b {
    display: block;

    margin-bottom: 4px;

    color: var(--course-paper);

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 25px;
    font-weight: 500;

    line-height: 1.15;

    letter-spacing: -0.025em;
}

.course-hero__stat span {
    display: block;

    max-width: 145px;

    color: var(--course-grey);

    font-size: 10px;
    font-weight: 600;

    line-height: 1.4;

    letter-spacing: .07em;
    text-transform: uppercase;
}

.course-hero__portrait {
    position: relative;

    min-height: 500px;

    aspect-ratio: 3 / 4;

    overflow: hidden;

    background:
        linear-gradient(
            155deg,
            #4d2a12,
            var(--course-ink) 70%
        );

    border: 1px solid var(--course-line-light);
    border-radius: 5px;
}

.course-hero__image {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.course-hero__portrait::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(23, 15, 10, .58),
            transparent 48%
        );
}

.course-hero__quote {
    position: absolute;

    z-index: 2;

    left: 25px;
    right: 25px;
    bottom: 25px;

    padding: 18px 20px;

    background: rgba(23, 15, 10, .76);

    border: 1px solid var(--course-line-light);
    border-radius: 4px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.course-hero__quote p {
    margin: 0 0 8px;

    color: var(--course-paper);

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 14px;
    font-weight: 400;

    font-style: italic;

    line-height: 1.55;
}

.course-hero__quote-author {
    color: var(--course-orange-light);

    font-size: 10px;
    font-weight: 600;

    line-height: 1.4;

    letter-spacing: .07em;
    text-transform: uppercase;
}


/* =========================================
   RESULTS
   ========================================= */

.course-results {
    padding: 95px 0;

    background: var(--course-paper);
}

.course-results__grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.course-result-card {
    position: relative;

    padding: 29px 23px;

    background: #fff;

    border: 1px solid var(--course-paper-2);
    border-radius: 4px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.course-result-card:hover {
    transform: translateY(-4px);

    border-color: rgba(213, 85, 28, .22);

    box-shadow:
        0 18px 45px rgba(37, 24, 12, .08);
}

.course-result-card__number {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    color: var(--course-orange);

    border: 1px solid var(--course-orange);
    border-radius: 50%;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 11px;
    font-weight: 600;
}

.course-result-card h3 {
    margin: 0 0 10px;

    color: var(--course-ink);

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.4;
}

.course-result-card p {
    margin: 0;

    color: var(--course-text-grey);

    font-size: 13px;
    font-weight: 400;

    line-height: 1.65;
}


/* =========================================
   EXPERT
   ========================================= */

.course-expert {
    padding: 95px 0;

    color: var(--course-paper);

    background: var(--course-charcoal);
}

.course-expert__grid {
    display: grid;

    grid-template-columns:
        minmax(280px, .7fr)
        minmax(0, 1.3fr);

    gap: 58px;

    align-items: center;
}

.course-expert__photo {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background:
        linear-gradient(
            160deg,
            #472711,
            #1a0f08
        );

    border: 1px solid var(--course-line-light);
    border-radius: 4px;
}

.course-expert__photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.course-expert h2 {
    margin: 12px 0 17px;

    color: var(--course-paper);

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 31px;
    font-weight: 500;

    line-height: 1.22;

    letter-spacing: -0.025em;
}

.course-expert__text {
    max-width: 600px;

    color: rgba(250, 243, 229, .7);

    font-size: 15px;
    font-weight: 400;

    line-height: 1.7;
}

.course-expert__text p {
    margin: 0 0 15px;
}

.course-expert__text p:last-child {
    margin-bottom: 0;
}

.course-expert__stats {
    display: flex;

    flex-wrap: wrap;

    gap: 28px 44px;

    margin-top: 27px;
}

.course-expert-stat b {
    display: block;

    margin-bottom: 4px;

    color: var(--course-orange-light);

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 27px;
    font-weight: 500;

    line-height: 1.2;

    letter-spacing: -0.025em;
}

.course-expert-stat span {
    display: block;

    max-width: 145px;

    color: var(--course-grey);

    font-size: 10px;
    font-weight: 600;

    line-height: 1.45;

    letter-spacing: .07em;
    text-transform: uppercase;
}


/* =========================================
   PROGRAM
   ========================================= */

.course-program {
    padding: 95px 0;

    background: var(--course-paper);
}

.course-program__grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.course-module {
    position: relative;

    overflow: hidden;

    padding: 27px;

    background: #fff;

    border: 1px solid var(--course-paper-2);
    border-radius: 4px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.course-module:hover {
    transform: translateY(-3px);

    border-color: rgba(213, 85, 28, .2);

    box-shadow:
        0 15px 40px rgba(37, 24, 12, .06);
}

.course-module__top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 12px;
}

.course-module__number,
.course-module__duration {
    color: #8c8478;

    font-size: 10px;
    font-weight: 600;

    line-height: 1.4;

    letter-spacing: .07em;
    text-transform: uppercase;
}

.course-module__tag {
    margin-bottom: 9px;

    color: var(--course-orange);

    font-size: 10px;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: .09em;
    text-transform: uppercase;
}

.course-module h3 {
    margin: 0 0 9px;

    color: var(--course-ink);

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 17px;
    font-weight: 600;

    line-height: 1.4;
}

.course-module__text {
    color: var(--course-text-grey);

    font-size: 13px;
    font-weight: 400;

    line-height: 1.65;
}

.course-module__result {
    margin-top: 18px;

    padding: 14px 16px;

    color: var(--course-text-grey);

    background: var(--course-paper);

    border-left: 2px solid var(--course-orange);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.6;
}

.course-module__result strong {
    color: var(--course-ink);

    font-weight: 600;
}

.course-module__image {
    margin: 22px -27px -27px;
}

.course-module__image img {
    width: 100%;
    height: 220px;

    object-fit: cover;
}


/* =========================================
   REVIEWS
   ========================================= */

.course-reviews {
    padding: 95px 0;

    color: var(--course-paper);

    background: var(--course-charcoal-2);
}

.course-reviews .course-section-head h2 {
    color: var(--course-paper);
}

.course-reviews .course-section-text {
    color: rgba(250, 243, 229, .62);
}

.course-reviews__items {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.course-review-card {
    padding: 24px;

    background: rgba(250, 243, 229, .04);

    border: 1px solid var(--course-line-light);
    border-radius: 4px;
}

.course-review-card__video {
    margin-bottom: 18px;
}

.course-review-card__video iframe,
.course-review-card__video video {
    width: 100%;

    aspect-ratio: 16 / 9;

    border: 0;
}

.course-review-card__text {
    color: rgba(250, 243, 229, .75);

    font-size: 13px;
    font-weight: 400;

    font-style: italic;

    line-height: 1.65;
}

.course-review-card__author {
    margin-top: 15px;

    color: var(--course-grey);

    font-size: 10px;
    font-weight: 600;

    line-height: 1.4;

    letter-spacing: .07em;
    text-transform: uppercase;
}


/* =========================================
   COMPANIES
   ========================================= */

.course-companies {
    margin-top: 48px;

    padding-top: 34px;

    border-top: 1px solid var(--course-line-light);
}

.course-companies__title {
    margin-bottom: 20px;

    color: rgba(250, 243, 229, .5);

    font-size: 11px;
    font-weight: 600;

    line-height: 1.4;

    letter-spacing: .08em;
    text-transform: uppercase;
}

.course-companies__grid {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 16px 30px;
}

.course-company {
    min-height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.course-company a {
    display: flex;

    align-items: center;
    justify-content: center;

    color: inherit;

    text-decoration: none;
}

.course-company img {
    width: auto;
    max-width: 140px;
    max-height: 50px;

    object-fit: contain;

    opacity: .7;

    filter: grayscale(1);

    transition:
        opacity .2s ease,
        filter .2s ease;
}

.course-company img:hover {
    opacity: 1;

    filter: grayscale(0);
}

.course-company span {
    padding: 9px 18px;

    color: rgba(250, 243, 229, .45);

    border: 1px solid var(--course-line-light);
    border-radius: 2px;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 12px;
    font-weight: 500;
}


/* =========================================
   FAQ
   ========================================= */

.course-faq {
    padding: 95px 0;

    background: var(--course-paper);
}

.course-faq__inner {
    max-width: 820px;

    margin: 0 auto;
}

.course-faq__items {
    border-top: 1px solid var(--course-paper-2);
}

.course-faq-item {
    border-bottom: 1px solid var(--course-paper-2);
}

.course-faq-item summary {
    position: relative;

    padding: 22px 45px 22px 0;

    color: var(--course-ink);

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.5;

    list-style: none;

    cursor: pointer;
}

.course-faq-item summary::-webkit-details-marker {
    display: none;
}

.course-faq-item summary::marker {
    display: none;
}

.course-faq-item summary::before,
.course-faq-item summary::after {
    content: "";

    position: absolute;

    top: 50%;
    right: 6px;

    width: 14px;
    height: 1px;

    background: var(--course-orange);

    transition: transform .25s ease;
}

.course-faq-item summary::after {
    transform: rotate(90deg);
}

.course-faq-item[open] summary::after {
    transform: rotate(0deg);
}

.course-faq-item__answer {
    max-width: 720px;

    padding: 0 45px 22px 0;

    color: var(--course-text-grey);

    font-size: 13px;
    font-weight: 400;

    line-height: 1.7;
}

.course-faq-item__answer p {
    margin-top: 0;
}

.course-faq-item__answer p:last-child {
    margin-bottom: 0;
}


/* =========================================
   PRICING
   ========================================= */

.course-pricing {
    padding: 100px 0;

    color: var(--course-paper);

    background: var(--course-ink);
}

.course-pricing .course-section-head h2 {
    color: var(--course-paper);
}

.course-pricing .course-section-text {
    color: rgba(250, 243, 229, .6);
}

.course-pricing__grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;

    align-items: stretch;
}

.course-plan {
    position: relative;

    display: flex;

    flex-direction: column;

    padding: 32px 28px;

    border: 1px solid var(--course-line-light);
    border-radius: 5px;
}

.course-plan--recommended {
    z-index: 2;

    color: var(--course-ink);

    background: var(--course-paper);

    border-color: var(--course-orange);

    transform: scale(1.035);

    box-shadow:
        0 28px 60px -22px rgba(0, 0, 0, .55);
}

.course-plan__recommended {
    position: absolute;

    top: -13px;
    left: 27px;

    padding: 5px 11px;

    color: #fff;

    background: var(--course-orange);

    border-radius: 2px;

    font-size: 9px;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: .08em;
    text-transform: uppercase;
}

.course-plan__badge {
    align-self: flex-start;

    margin-bottom: 17px;

    padding: 5px 10px;

    color: rgba(250, 243, 229, .56);

    border: 1px solid rgba(250, 243, 229, .25);
    border-radius: 100px;

    font-size: 9px;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: .08em;
    text-transform: uppercase;
}

.course-plan--recommended .course-plan__badge {
    color: var(--course-orange);

    border-color: rgba(213, 85, 28, .25);
}

.course-plan__title {
    margin: 0 0 11px;

    color: var(--course-orange-light);

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: .09em;
    text-transform: uppercase;
}

.course-plan--recommended .course-plan__title {
    color: var(--course-orange);
}

.course-plan__price {
    margin-bottom: 5px;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 32px;
    font-weight: 500;

    line-height: 1.25;

    letter-spacing: -0.025em;
}

.course-plan__price span {
    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 12px;
    font-weight: 400;

    opacity: .6;
}

.course-plan__note {
    min-height: 20px;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;

    opacity: .6;
}

.course-plan__features {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin: 20px 0 26px;
    padding: 0;

    list-style: none;
}

.course-plan__features li {
    position: relative;

    padding-left: 21px;

    font-size: 13px;
    font-weight: 400;

    line-height: 1.55;

    opacity: .85;
}

.course-plan__features li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--course-orange-light);

    font-weight: 600;
}

.course-plan--recommended .course-plan__features li::before {
    color: var(--course-orange);
}

.course-plan .course-btn {
    width: 100%;

    margin-top: auto;
}

.course-plan--recommended .course-btn--primary {
    color: #fff;
}

.course-pricing__note {
    max-width: 800px;

    margin: 36px auto 0;

    color: var(--course-grey);

    font-size: 11px;
    font-weight: 400;

    font-style: italic;

    line-height: 1.65;

    text-align: center;
}


/* =========================================
   CTA
   ========================================= */

.course-cta {
    padding: 90px 0;

    background: var(--course-paper);
}

.course-cta__box {
    position: relative;

    display: grid;

    grid-template-columns: minmax(0, 1fr) auto;

    gap: 40px;

    align-items: center;

    padding: 48px 52px;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--course-paper-2);
    border-radius: 5px;
}

.course-cta__box::before {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    right: -100px;
    top: -120px;

    background:
        radial-gradient(
            circle,
            rgba(246, 152, 47, .18),
            transparent 68%
        );

    pointer-events: none;
}

.course-cta h2 {
    margin: 0 0 10px;

    color: var(--course-ink);

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 30px;
    font-weight: 500;

    line-height: 1.25;

    letter-spacing: -0.025em;
}

.course-cta__text {
    max-width: 600px;

    color: var(--course-text-grey);

    font-size: 14px;
    font-weight: 400;

    line-height: 1.65;
}

.course-cta__actions {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 10px;

    min-width: 220px;
}

.course-cta__note {
    grid-column: 1 / -1;

    margin-top: -10px;

    color: #8c8478;

    font-size: 11px;
    font-weight: 400;

    line-height: 1.5;
}


/* =========================================
   COURSE FOOTER
   ========================================= */

.course-footer {
    padding: 28px 0;

    color: rgba(250, 243, 229, .48);

    background: var(--course-ink);

    border-top: 1px solid var(--course-line-light);

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 12px;
    font-weight: 400;
}

.course-footer__inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* =========================================
   FOCUS / ACCESSIBILITY
   ========================================= */

.course-page a:focus-visible,
.course-header a:focus-visible,
.course-page summary:focus-visible {
    outline: 2px solid var(--course-orange-light);

    outline-offset: 4px;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 980px) {

    .course-hero__grid,
    .course-expert__grid {
        grid-template-columns: 1fr;
    }

    .course-hero__content {
        max-width: 760px;
    }

    .course-hero__portrait {
        width: 100%;
        max-width: 520px;

        min-height: auto;

        margin: 0 auto;
    }

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

    .course-pricing__grid {
        grid-template-columns: 1fr;

        max-width: 650px;

        margin: 0 auto;
    }

    .course-plan--recommended {
        transform: none;
    }

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

    .course-nav {
        display: none;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    html {
        scroll-padding-top: 72px;
    }

    .course-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* HEADER */

    .course-header__inner {
        min-height: 68px;

        gap: 12px;
    }

    .course-brand {
        font-size: 14px;
    }

    .course-brand__mark {
        width: 31px;
        height: 31px;

        flex-basis: 31px;
    }

    .course-brand__text small {
        display: none;
    }

    .course-header__button {
        min-height: 36px;

        padding: 8px 12px;

        font-size: 9px;
    }


    /* GENERAL */

    .course-section-head {
        margin-bottom: 36px;

        text-align: left;
    }

    .course-section-head h2 {
        font-size: 28px;

        line-height: 1.25;
    }

    .course-section-text {
        font-size: 14px;
    }


    /* HERO */

    .course-hero {
        padding: 68px 0 60px;
    }

    .course-hero__grid {
        gap: 42px;
    }

    .course-hero__badge {
        margin-bottom: 20px;
    }

    .course-hero__title {
        font-size: 37px;

        line-height: 1.12;
    }

    .course-hero__lead {
        font-size: 14px;
    }

    .course-hero__buttons {
        flex-direction: column;
    }

    .course-hero__buttons .course-btn {
        width: 100%;
    }

    .course-hero__stats {
        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 24px;
    }

    .course-hero__stat b {
        font-size: 23px;
    }

    .course-hero__portrait {
        max-width: 100%;
    }

    .course-hero__quote {
        left: 15px;
        right: 15px;
        bottom: 15px;

        padding: 15px;
    }


    /* SECTION SPACING */

    .course-results,
    .course-expert,
    .course-program,
    .course-reviews,
    .course-faq,
    .course-pricing,
    .course-cta {
        padding-top: 68px;
        padding-bottom: 68px;
    }


    /* RESULTS */

    .course-results__grid {
        grid-template-columns: 1fr;
    }


    /* EXPERT */

    .course-expert__grid {
        gap: 35px;
    }

    .course-expert h2 {
        font-size: 28px;
    }

    .course-expert__stats {
        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 22px;
    }


    /* PROGRAM */

    .course-program__grid {
        grid-template-columns: 1fr;
    }

    .course-module {
        padding: 23px;
    }

    .course-module__image {
        margin:
            20px
            -23px
            -23px;
    }


    /* REVIEWS */

    .course-reviews__items {
        grid-template-columns: 1fr;
    }


    /* COMPANIES */

    .course-companies__grid {
        gap: 15px 20px;
    }

    .course-company img {
        max-width: 110px;
        max-height: 42px;
    }


    /* FAQ */

    .course-faq-item summary {
        padding-right: 40px;

        font-size: 14px;
    }


    /* PRICING */

    .course-pricing__grid {
        gap: 30px;
    }

    .course-plan {
        padding: 28px 24px;
    }

    .course-plan__price {
        font-size: 29px;
    }


    /* CTA */

    .course-cta__box {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 34px 25px;
    }

    .course-cta h2 {
        font-size: 27px;
    }

    .course-cta__actions {
        width: 100%;

        min-width: 0;
    }

    .course-cta__actions .course-btn {
        width: 100%;
    }

    .course-cta__note {
        grid-column: auto;

        margin-top: 0;
    }


}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 430px) {

    .course-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .course-header__button {
        padding-left: 9px;
        padding-right: 9px;
    }

    .course-hero__title {
        font-size: 32px;
    }

    .course-hero__stats {
        grid-template-columns: 1fr 1fr;
    }

    .course-result-card {
        padding: 25px 20px;
    }

    .course-section-head h2 {
        font-size: 26px;
    }

    .course-expert h2 {
        font-size: 26px;
    }

    .course-cta h2 {
        font-size: 25px;
    }

}


/* =========================================
   REDUCED MOTION
   ========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .course-btn,
    .course-result-card,
    .course-module,
    .course-company img {
        transition: none;
    }

}


/* Размер логотипа курса */
.course-header .course-brand__logo {
    display: block;

    width: 330px !important;
    max-width: 330px !important;

    height: auto !important;
    max-height: 70px;

    object-fit: contain;
}

/* Чуть компактнее сама панель */
.course-header__inner {
    min-height: 82px;
}


/* Планшет */
@media (max-width: 980px) {

    .course-header .course-brand__logo {
        width: 270px !important;
        max-width: 270px !important;
    }

}


/* Телефон */
@media (max-width: 700px) {

    .course-header .course-brand__logo {
        width: 190px !important;
        max-width: 190px !important;
        max-height: 52px;
    }

    .course-header__inner {
        min-height: 68px;
    }

}
/* =========================================
   FOOTER
========================================= */

.course-footer {
    background: #160d08;
    padding: 34px 0 20px;

    color: #bdb2aa;

    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;

    border-top: 1px solid #4c3428;
}


/* =========================================
   FOOTER CONTAINER
========================================= */

.course-footer .course-wrap {
    width: calc(100% - 80px);
    max-width: 1760px;

    margin: 0 auto;
    padding: 0;
}


/* =========================================
   TOP
========================================= */

.course-footer__top {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));

    column-gap: 40px;

    align-items: start;
}


/* ЛОГО */

.course-footer__brand {
    grid-column: 1 / 4;

    min-width: 0;
}


/* КОНТАКТЫ */

.course-footer__contacts {
    grid-column: 4 / 6;

    min-width: 0;
}


/* АДРЕС */

.course-footer__address-block {
    grid-column: 6 / 9;

    min-width: 0;
}


/* СОЦСЕТИ */

.course-footer__social-block {
    grid-column: 9 / 13;

    min-width: 0;
}


/* =========================================
   BRAND
========================================= */

.course-footer__logo {
    margin-bottom: 10px;
}

.course-footer__logo img {
    display: block;

    width: 72px;
    height: 72px;

    object-fit: contain;
}

.course-footer__brand-title {
    max-width: 330px;

    margin-bottom: 6px;

    color: #e3dad4;

    font-size: 14px;
    line-height: 1.4;
}

.course-footer__brand-text {
    margin-bottom: 5px;

    color: #b8aca4;

    font-size: 12px;
}

.course-footer__company-info {
    max-width: 330px;

    color: #a89c94;

    font-size: 12px;
    line-height: 1.45;
}


/* =========================================
   TITLES
========================================= */

.course-footer__title {
    margin-bottom: 11px;

    color: #e3dad4;

    font-size: 13px;
    font-weight: 500;
}


/* =========================================
   CONTACTS
========================================= */

.course-footer__contacts-list {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.course-footer__contact {
    color: #ff6a00;

    font-size: 13px;
    text-decoration: none;

    transition: color .2s ease;
}

.course-footer__contact:hover {
    color: #ff8a3d;
}

.course-footer__worktime {
    margin-top: 12px;

    color: #aa9e96;

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================
   ADDRESS
========================================= */

.course-footer__address {
    color: #bdb2aa;

    font-size: 13px;
    line-height: 1.5;
}

.course-footer__map-link {
    display: inline-block;

    margin-top: 8px;

    color: #ff6a00;

    font-size: 13px;
    text-decoration: none;

    transition: color .2s ease;
}

.course-footer__map-link:hover {
    color: #ff8a3d;
}


/* =========================================
   SOCIALS
   ВСЕ ИКОНКИ В ОДИН РЯД
========================================= */

.course-footer__socials {
    display: flex;
    flex-wrap: nowrap;

    align-items: center;

    gap: 8px;
}

.course-footer__social {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2a1b14;
    color: #ff6a00;

    border-radius: 10px;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.course-footer__social svg {
    display: block;

    width: 19px;
    height: 19px;
}

.course-footer__social:hover {
    background: #3a251a;
    color: #ff8a3d;

    transform: translateY(-2px);
}


/* =========================================
   LOWER
   СЛЕВА: ССЫЛКИ + ОПЛАТА
   СПРАВА: КАРТА
========================================= */

.course-footer__lower {
    display: grid;

    grid-template-columns:
        minmax(0, 5fr)
        minmax(0, 7fr);

    column-gap: 40px;

    align-items: stretch;

    margin-top: 30px;
    padding-top: 18px;

    border-top: 1px solid #4c3428;
}


/* =========================================
   LOWER LEFT
========================================= */

.course-footer__lower-left {
    min-width: 0;
}


/* =========================================
   LEGAL
========================================= */

.course-footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 8px 24px;

    margin: 0;
    padding: 0;

    border: 0;
}

.course-footer__legal a {
    color: #ff6a00;

    font-size: 12px;
    line-height: 1.4;

    text-decoration: none;

    transition: color .2s ease;
}

.course-footer__legal a:hover {
    color: #ff8a3d;
}


/* =========================================
   PAYMENT
========================================= */

.course-footer__payment {
    margin-top: 18px;
}

.course-footer__payment-title {
    margin-bottom: 9px;

    color: #b8aca4;

    font-size: 12px;
}


/* Светлая плашка нужна для темных
   логотипов bePaid / Samsung Pay / Я Пэй */

.course-footer__payment-image {
    display: inline-flex;
    align-items: center;

    max-width: 100%;

    padding: 10px 14px;

    box-sizing: border-box;

    background: #f3eee9;

    border-radius: 10px;

    overflow: hidden;
}

.course-footer__payment-image img {
    display: block;

    width: auto;
    max-width: 100%;

    height: 43px;

    object-fit: contain;
    object-position: left center;
}


/* =========================================
   MAP
========================================= */

.course-footer__map-block {
    min-width: 0;

    margin: 0;
    padding: 0;

    border: 0;
}


/* Адрес уже есть сверху */
.course-footer__map-block > .course-footer__title {
    display: none;
}


.course-footer__map {
    position: relative;

    width: 100%;

    /* было 190px — делаем карту крупнее */
    height: 260px;

    overflow: hidden;

    background: #2a1b14;

    border-radius: 12px;
}


/* Yandex iframe */

.course-footer__map iframe {
    display: block;

    width: 100% !important;
    height: 100% !important;

    border: 0 !important;
}


/* Yandex иногда создает дополнительный div */

.course-footer__map > div {
    width: 100% !important;
    height: 100% !important;
}


/* =========================================
   BOTTOM
========================================= */

.course-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 24px;
    padding-top: 14px;

    border-top: 1px solid #4c3428;

    color: #a99d95;

    font-size: 11px;
}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1350px) {

    .course-footer .course-wrap {
        width: calc(100% - 50px);
    }


    /* Верх оставляем таким же по логике,
       просто немного перераспределяем */

    .course-footer__top {
        column-gap: 28px;
    }

    .course-footer__brand {
        grid-column: 1 / 4;
    }

    .course-footer__contacts {
        grid-column: 4 / 7;
    }

    .course-footer__address-block {
        grid-column: 7 / 10;
    }

    .course-footer__social-block {
        grid-column: 10 / 13;
    }


    /* Соцсети все еще одной строкой */

    .course-footer__social {
        flex-basis: 36px;

        width: 36px;
        height: 36px;
    }

    .course-footer__social svg {
        width: 17px;
        height: 17px;
    }

    .course-footer__socials {
        gap: 6px;
    }


    /* Нижний блок */

    .course-footer__lower {
        grid-template-columns:
            minmax(0, 5fr)
            minmax(0, 7fr);

        column-gap: 28px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .course-footer .course-wrap {
        width: calc(100% - 50px);
    }


    /* -----------------------------
       TOP
    ----------------------------- */

    .course-footer__top {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 26px 35px;
    }

    .course-footer__brand {
        grid-column: 1;
    }

    .course-footer__contacts {
        grid-column: 2;
    }

    .course-footer__address-block {
        grid-column: 1;
    }

    .course-footer__social-block {
        grid-column: 2;
    }


    /* -----------------------------
       LOWER

       На планшете все еще:
       слева оплата,
       справа карта
    ----------------------------- */

    .course-footer__lower {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 35px;

        margin-top: 28px;
    }

    .course-footer__legal {
        gap: 8px 18px;
    }

    .course-footer__payment {
        margin-top: 18px;
    }

    .course-footer__map {
        height: 230px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .course-footer {
        padding: 24px 0 16px;
    }

    .course-footer .course-wrap {
        width: calc(100% - 30px);

        padding: 0;
    }


    /* =====================================
       TOP
    ===================================== */

    .course-footer__top {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 22px 18px;
    }


    /* =====================================
       BRAND
    ===================================== */

    .course-footer__brand {
        grid-column: 1 / -1;

        display: grid;

        grid-template-columns: 52px 1fr;

        column-gap: 12px;

        align-items: center;
    }

    .course-footer__logo {
        grid-row: 1 / span 2;

        margin: 0;
    }

    .course-footer__logo img {
        width: 52px;
        height: 52px;
    }

    .course-footer__brand-title {
        max-width: none;

        margin: 0;

        font-size: 13px;
    }


    /* На мобильном длинная информация
       о компании не нужна */

    .course-footer__brand-text,
    .course-footer__company-info {
        display: none;
    }


    /* =====================================
       CONTACTS
    ===================================== */

    .course-footer__contacts {
        grid-column: 1;
    }

    .course-footer__title {
        margin-bottom: 7px;

        font-size: 12px;
    }

    .course-footer__contact {
        font-size: 12px;
    }


    /* второй телефон скрываем */

    .course-footer__contacts-list
    .course-footer__contact:nth-child(2) {
        display: none;
    }


    /* график работы скрываем */

    .course-footer__worktime {
        display: none;
    }


    /* =====================================
       ADDRESS
    ===================================== */

    .course-footer__address-block {
        grid-column: 2;
    }

    .course-footer__address,
    .course-footer__map-link {
        font-size: 12px;
    }


    /* =====================================
       SOCIALS
    ===================================== */

    .course-footer__social-block {
        grid-column: 1 / -1;
    }

    .course-footer__socials {
        flex-wrap: nowrap;

        gap: 7px;
    }

    .course-footer__social {
        flex: 0 0 35px;

        width: 35px;
        height: 35px;

        border-radius: 8px;
    }

    .course-footer__social svg {
        width: 17px;
        height: 17px;
    }


    /* =====================================
       LOWER
    ===================================== */

    .course-footer__lower {
        display: block;

        margin-top: 20px;
        padding-top: 15px;
    }


    /* Карту на мобильном убираем:
       адрес + "Посмотреть на карте"
       остаются сверху */

    .course-footer__map-block {
        display: none;
    }


    /* =====================================
       LEGAL
    ===================================== */

    .course-footer__legal {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px 14px;
    }

    .course-footer__legal a {
        font-size: 11px;
    }


    /* =====================================
       PAYMENT
    ===================================== */

    .course-footer__payment {
        margin-top: 18px;
    }

    .course-footer__payment-title {
        font-size: 11px;
    }

    .course-footer__payment-image {
        width: 100%;

        padding: 9px 10px;

        box-sizing: border-box;
    }

    .course-footer__payment-image img {
        width: 100%;
        height: auto;

        max-height: 35px;

        object-fit: contain;
        object-position: left center;
    }


    /* =====================================
       BOTTOM
    ===================================== */

    .course-footer__bottom {
        display: block;

        margin-top: 18px;
        padding-top: 12px;

        font-size: 10px;
    }


    /* отдельный © справа не нужен */

    .course-footer__bottom > div:last-child {
        display: none;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .course-footer__top {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .course-footer__brand,
    .course-footer__contacts,
    .course-footer__address-block,
    .course-footer__social-block {
        grid-column: 1;
    }


    /* Соцсети все равно одной строкой */

    .course-footer__socials {
        gap: 5px;
    }

    .course-footer__social {
        flex-basis: 33px;

        width: 33px;
        height: 33px;
    }


    /* Ссылки в один столбец */

    .course-footer__legal {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    
        gap: 8px 24px;
    
        margin: 0;
        padding: 0;
    
        border: 0;
    }
    
    .course-footer__legal-link {
        color: #ff6a00;
    
        font-size: 12px;
        line-height: 1.4;
    
        text-decoration: none;
    
        transition: color .2s ease;
    }
    
    .course-footer__legal-link:hover {
        color: #ff8a3d;
    }

}