@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@700;800&display=swap');

:root {
    --home-primary: #2a9d8f;
    --home-primary-dark: #21867b;
    --home-primary-soft: #e8f7f5;
    --home-primary-faint: #f4fbfa;
    --home-ink: #253f3b;
    --home-text: #526763;
    --home-muted: #7c908c;
    --home-line: #d9ece8;
    --home-card: #ffffff;
    --home-page: #f8fcfb;
}

.home-page {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(42, 157, 143, .15), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--home-page) 45%, #ffffff 100%);
    color: var(--home-text);
    font-family: 'Inter', sans-serif;
}

.home-hero,
.home-section,
.home-cta {
    padding: 82px 0;
}

.home-hero-grid,
.home-format-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    gap: 54px;
    align-items: center;
}

.home-badge,
.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-badge {
    padding: 10px 14px;
    border: 1px solid rgba(42, 157, 143, .22);
    border-radius: 999px;
    background: var(--home-primary-soft);
    margin-bottom: 20px;
}

.home-hero h1,
.home-section h2,
.home-cta h2 {
    margin: 0;
    color: var(--home-ink);
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

.home-hero h1 {
    max-width: 760px;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.08;
}

.home-hero p,
.home-section p,
.home-cta p {
    color: var(--home-text);
    font-size: 16px;
    line-height: 1.8;
}

.home-hero p {
    max-width: 680px;
    margin: 22px 0 0;
    font-size: 17px;
}

.home-hero-actions,
.home-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.home-primary-btn,
.home-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.home-primary-btn {
    border: 1px solid var(--home-primary);
    background: linear-gradient(135deg, var(--home-primary), var(--home-primary-dark));
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(42, 157, 143, .22);
}

.home-primary-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(42, 157, 143, .28);
}

.home-secondary-btn {
    border: 1px solid var(--home-line);
    background: #ffffff;
    color: var(--home-primary-dark);
}

.home-secondary-btn:hover {
    border-color: rgba(42, 157, 143, .4);
    color: var(--home-primary-dark);
    transform: translateY(-2px);
}

.home-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.home-hero-stats div,
.home-trust-grid div,
.home-step-card,
.home-feature-card,
.home-format-card,
.home-webinar-card,
.home-cta-card,
.home-empty {
    border: 1px solid var(--home-line);
    background: var(--home-card);
    box-shadow: 0 18px 44px rgba(42, 157, 143, .08);
}

.home-hero-stats div {
    padding: 16px;
    border-radius: 16px;
}

.home-hero-stats strong {
    display: block;
    color: var(--home-primary);
    font-family: 'Sora', sans-serif;
    font-size: 21px;
    font-weight: 800;
}

.home-hero-stats span {
    display: block;
    margin-top: 5px;
    color: var(--home-muted);
    font-size: 13px;
}

.home-hero-media {
    position: relative;
    min-height: 540px;
}

.home-hero-image-wrap {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    min-height: 540px;
    border: 1px solid var(--home-line);
    border-radius: 32px;
    background:
        radial-gradient(circle at 50% 20%, rgba(42, 157, 143, .18), transparent 34%),
        linear-gradient(180deg, #ffffff, var(--home-primary-faint));
    box-shadow: 0 28px 60px rgba(42, 157, 143, .14);
    overflow: hidden;
}

.home-hero-image-wrap::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(42, 157, 143, .12);
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.home-hero-image {
    position: relative;
    z-index: 1;
    width: min(92%, 500px);
    max-height: 520px;
    object-fit: contain;
    object-position: bottom center;
}

.home-floating-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 270px;
    padding: 15px;
    border: 1px solid rgba(42, 157, 143, .22);
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 34px rgba(42, 157, 143, .14);
}

.home-floating-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--home-primary-soft);
    color: var(--home-primary);
    flex: 0 0 36px;
}

.home-floating-card strong {
    display: block;
    color: var(--home-ink);
    font-weight: 800;
}

.home-floating-card span {
    display: block;
    margin-top: 4px;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.45;
}

.home-floating-card-top {
    top: 34px;
    right: -10px;
}

.home-floating-card-bottom {
    bottom: 34px;
    left: -10px;
}

.home-trust {
    padding: 0 0 42px;
}

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

.home-trust-grid div {
    display: grid;
    gap: 7px;
    padding: 18px;
    border-radius: 16px;
}

.home-trust-grid i,
.home-feature-icon,
.home-format-card > i,
.home-empty > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: var(--home-primary-soft);
    color: var(--home-primary);
}

.home-trust-grid strong {
    color: var(--home-ink);
    font-weight: 800;
}

.home-trust-grid span {
    color: var(--home-muted);
    font-size: 13px;
}

.home-soft-section {
    background: linear-gradient(180deg, var(--home-primary-faint), #ffffff);
}

.home-recorded-section {
    background: linear-gradient(180deg, #ffffff, var(--home-primary-faint));
}

.home-section-head {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

.home-section-head-row {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}

.home-section h2,
.home-cta h2 {
    margin-top: 10px;
    font-size: clamp(30px, 3.3vw, 44px);
    line-height: 1.18;
}

.home-section-head p,
.home-format-grid p,
.home-cta p {
    margin: 12px 0 0;
}

.home-steps-grid,
.home-features-grid,
.home-format-cards,
.home-webinars-grid {
    display: grid;
    gap: 18px;
}

.home-steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.home-format-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.home-step-card,
.home-feature-card,
.home-format-card,
.home-webinar-card {
    border-radius: 18px;
    padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home-step-card:hover,
.home-feature-card:hover,
.home-format-card:hover,
.home-webinar-card:hover {
    border-color: rgba(42, 157, 143, .36);
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(42, 157, 143, .12);
}

.home-step-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: rgba(42, 157, 143, .32);
    font-family: 'Sora', sans-serif;
    font-size: 30px;
    font-weight: 800;
}

.home-step-card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: var(--home-primary-soft);
    color: var(--home-primary);
}

.home-step-card h3,
.home-feature-card h3,
.home-format-card h3,
.home-webinar-card h3,
.home-empty h3 {
    margin: 16px 0 0;
    color: var(--home-ink);
    font-size: 18px;
    font-weight: 800;
}

.home-step-card p,
.home-feature-card p,
.home-format-card li,
.home-webinar-card p,
.home-empty p {
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.7;
}

.home-step-card p,
.home-feature-card p,
.home-webinar-card p,
.home-empty p {
    margin: 10px 0 0;
}

.home-format-grid {
    grid-template-columns: .78fr 1.22fr;
}

.home-format-card ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.home-format-card li {
    display: flex;
    gap: 9px;
}

.home-format-card li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--home-primary);
    flex: 0 0 7px;
    margin-top: 8px;
}

.home-format-card a {
    display: inline-flex;
    margin-top: 20px;
    color: var(--home-primary-dark);
    font-weight: 800;
    text-decoration: none;
}

.home-webinar-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--home-primary-soft);
    color: var(--home-primary-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.home-webinar-badge-recorded {
    background: #eef8ff;
    color: #24708f;
}

.home-webinar-instructor {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 12px;
    border: 1px solid var(--home-line);
    border-radius: 14px;
    background: var(--home-primary-faint);
}

.home-webinar-instructor img,
.home-webinar-instructor-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 2px solid #ffffff;
    box-shadow: 0 10px 20px rgba(42, 157, 143, .12);
    flex: 0 0 46px;
}

.home-webinar-instructor img {
    object-fit: cover;
}

.home-webinar-instructor-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--home-primary-soft);
    color: var(--home-primary);
}

.home-webinar-instructor strong {
    display: block;
    color: var(--home-ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.home-webinar-instructor span {
    display: block;
    margin-top: 4px;
    color: var(--home-muted);
    font-size: 12px;
    line-height: 1.35;
}

.home-webinar-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
    color: var(--home-text);
    font-size: 13px;
    font-weight: 700;
}

.home-webinar-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.home-webinar-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--home-line);
}

.home-webinar-footer span {
    color: var(--home-muted);
    font-size: 13px;
}

.home-webinar-footer a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--home-primary-dark);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.home-empty {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 44px 24px;
    border-style: dashed;
    border-radius: 18px;
    text-align: center;
}

.home-cta {
    padding-top: 42px;
}

.home-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 10% 0%, rgba(42, 157, 143, .16), transparent 34%),
        #ffffff;
}

.home-cta-actions {
    margin-top: 0;
    flex: 0 0 auto;
}

@media (max-width: 991px) {
    .home-hero,
    .home-section,
    .home-cta {
        padding: 58px 0;
    }

    .home-hero-grid,
    .home-format-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .home-hero-media,
    .home-hero-image-wrap {
        min-height: 460px;
    }

    .home-trust-grid,
    .home-steps-grid,
    .home-features-grid,
    .home-format-cards,
    .home-webinars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-section-head-row,
    .home-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .home-hero,
    .home-section,
    .home-cta {
        padding: 44px 0;
    }

    .home-hero-stats,
    .home-trust-grid,
    .home-steps-grid,
    .home-features-grid,
    .home-format-cards,
    .home-webinars-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-actions,
    .home-cta-actions,
    .home-primary-btn,
    .home-secondary-btn {
        width: 100%;
    }

    .home-hero-media,
    .home-hero-image-wrap {
        min-height: 390px;
    }

    .home-hero-image {
        width: 100%;
        max-height: 380px;
    }

    .home-floating-card {
        position: static;
        max-width: none;
        margin-top: 14px;
    }

    .home-webinar-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-cta-card {
        padding: 24px;
        border-radius: 18px;
    }
}
