
:root {

    --color-dark:       #1a1a2e;
    --color-dark-mid:   #2d1b4e;
    --color-primary:    #e91e8c;
    --color-secondary:  #7b2d8e;
    --color-bg:         #f8f5f2;
    --color-white:      #ffffff;

    --color-text:       #525252;  
    --color-text-muted: #5e5e5e;  
    --color-text-subtle:#767676;  

    --color-border:     #eeeeee;

    --shadow-card:      0 2px 16px rgba(0,0,0,0.08);
    --shadow-card-hover:0 8px 30px rgba(0,0,0,0.12);

    --space-xs:  4px;
    --space-sm:  8px;
    --space-md:  16px;
    --space-lg:  24px;
    --space-xl:  32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    --radius-sm:   6px;
    --radius-md:   8px;
    --radius-lg:   12px;
    --radius-xl:   20px;
    --radius-full: 9999px;
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #525252;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a2e;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.3px;
}

.btn--primary {
    background: linear-gradient(135deg, #e91e8c, #7b2d8e);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.4);
}

.btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(233, 30, 140, 0.3);
}

.btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn--outline:hover {
    background: #ffffff;
    color: #1a1a2e;
}

.btn--lg {
    padding: 18px 40px;
    font-size: 16px;
}

.header {
    background: #1a1a2e;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.logo__accent {
    color: #e91e8c;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav__link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e91e8c;
}

.nav__link--active {
    color: #e91e8c;
}

.nav__link--dropdown svg {
    transition: transform 0.3s ease;
}

.nav__item--dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav__item--dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__item--dropdown:hover .nav__link--dropdown svg {
    transform: rotate(180deg);
}

.dropdown__link {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #525252;
    transition: all 0.2s ease;
}

.dropdown__link:hover {
    background: #f8f5f2;
    color: #e91e8c;
    padding-left: 24px;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #1a1a2e 100%);
    padding: 100px 0 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(233, 30, 140, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(123, 45, 142, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero__accent {
    color: #e91e8c;
}

.hero__tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 28px;
}

.hero__desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.section-title--left {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

.featured {
    padding: 90px 0;
}

.articles-grid {
    display: grid;
    gap: 28px;
}

.articles-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card__badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.card__badge--privlechenie {
    background: rgba(233, 30, 140, 0.1);
    color: #e91e8c;
}

.card__badge--content {
    background: rgba(123, 45, 142, 0.1);
    color: #7b2d8e;
}

.card__badge--smm {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.card__badge--manikyur {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.card__badge--resnicy {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.card__badge--volosy {
    background: rgba(234, 179, 8, 0.1);
    color: #ca8a04;
}

.card__badge--kosmetologiya {
    background: rgba(20, 184, 166, 0.1);
    color: #0d9488;
}

.card__badge--massazh {
    background: rgba(249, 115, 22, 0.1);
    color: #ea580c;
}

.card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.card__title a {
    color: inherit;
}

.card__title a:hover {
    color: #e91e8c;
}

.card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.card__link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #e91e8c;
    transition: all 0.3s ease;
}

.card__link:hover {
    color: #7b2d8e;
    letter-spacing: 0.5px;
}

.card__time {
    font-size: 12px;
    color: var(--color-text-subtle);
    display: flex;
    align-items: center;
    gap: 4px;
}

.card__time::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.articles-editorial {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    margin-bottom: 20px;
}

.card--hero {
    padding: 40px;
    background: var(--color-bg);
    border: none;
    box-shadow: none;
}

.card__title--hero {
    font-size: 26px;
    line-height: 1.35;
    margin-bottom: 16px;
}

.articles-secondary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card--secondary {
    flex: 1;
    padding: 24px;
}

.card--secondary .card__desc {
    display: none;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
}

.card--list {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    background: none;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
}

.card--list:last-child {
    border-bottom: none;
}

.card--list .card__title {
    font-size: 16px;
    margin-bottom: 0;
}

.card--list__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    min-width: 130px;
}

.card--list .card__badge {
    margin-bottom: 0;
}

.card--list .card__time {
    font-size: 12px;
}

.card--list .card__link {
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .articles-editorial {
        grid-template-columns: 1fr;
    }
    .articles-secondary {
        flex-direction: row;
    }
    .card--secondary {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .articles-secondary {
        flex-direction: column;
    }
    .card--list {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
    }
    .card--list__meta {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        min-width: unset;
    }
    .card--list .card__title {
        grid-column: 1;
    }
    .card--list .card__link {
        grid-column: 2;
        grid-row: 2;
        align-self: end;
    }
}

.categories {
    background: #f8f5f2;
    padding: 90px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: block;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #e91e8c;
}

.category-card__icon {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1;
}

.category-card__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.category-card__count {
    font-size: 13px;
    color: var(--color-text-subtle);
}

.about {
    padding: 90px 0;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #525252;
}

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

.about__text .section-title {
    margin-bottom: 24px;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 32px 16px;
    background: #f8f5f2;
    border-radius: 12px;
}

.stat__number {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.stat__label {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.cta-courses {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    padding: 90px 0;
}

.cta-courses__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-courses__title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-courses__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-courses__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
    max-width: 480px;
    margin: 0 auto 40px;
}

.cta-courses__feature {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-courses__check {
    color: #e91e8c;
    font-weight: 700;
    font-size: 18px;
}

.blog-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    padding: 70px 0 60px;
    text-align: center;
}

.blog-hero__title {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-hero__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.filters {
    padding: 40px 0 10px;
    background: #ffffff;
}

.filters__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    min-height: 44px;
    border-radius: 30px;
    border: 1px solid #eee;
    background: #ffffff;
    color: #525252;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: #e91e8c;
    color: #e91e8c;
}

.filter-btn--active {
    background: linear-gradient(135deg, #e91e8c, #7b2d8e);
    color: #ffffff;
    border-color: transparent;
}

.filter-btn--active:hover {
    color: #ffffff;
}

.blog-articles {
    padding: 40px 0 80px;
}

.load-more {
    text-align: center;
    margin-top: 48px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: var(--color-text-subtle);
}

.cta-banner {
    background: #f8f5f2;
    padding: 70px 0;
}

.cta-banner__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-banner__title {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.cta-banner__desc {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.footer {
    background: #1a1a2e;
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer__logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 8px;
}

.footer__tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer__copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer__heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.3s ease;
}

.footer__links a:hover {
    color: #e91e8c;
    padding-left: 4px;
}

.footer__legal-mini {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__legal-mini p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 4px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
}

.footer__legal-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer__legal-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.footer__legal-links a:hover {
    color: #e91e8c;
}

.card {
    animation: fadeInUp 0.5s ease both;
}

.card:nth-child(1) { animation-delay: 0.05s; }
.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.15s; }
.card:nth-child(4) { animation-delay: 0.2s; }
.card:nth-child(5) { animation-delay: 0.25s; }
.card:nth-child(6) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card.hidden {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .card {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .dropdown {
        transition: none;
    }

    .lead-magnet-modal {
        animation: none;
    }

    .lead-magnet-bar {
        transition: none;
    }
}

@media (max-width: 1024px) {
    .articles-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .hero__title {
        font-size: 42px;
    }

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

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #1a1a2e;
        padding: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        gap: 4px;
    }

    .nav__link {
        font-size: 16px;
        padding: 14px 16px;
        width: 100%;
        border-radius: 8px;
    }

    .nav__link:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        margin-top: 4px;
        display: none;
    }

    .nav__item--dropdown.open .dropdown {
        display: block;
    }

    .dropdown__link {
        color: rgba(255, 255, 255, 0.75);
        padding: 12px 20px;
    }

    .dropdown__link:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #e91e8c;
    }

    .hero {
        padding: 60px 0 70px;
    }

    .hero__title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .hero__tagline {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .hero__desc {
        font-size: 15px;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero__buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 26px;
    }

    .articles-grid--3 {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .category-card {
        padding: 24px 16px;
    }

    .category-card__icon {
        font-size: 28px;
    }

    .cta-courses__features {
        grid-template-columns: 1fr;
    }

    .cta-courses__title {
        font-size: 28px;
    }

    .blog-hero {
        padding: 50px 0 40px;
    }

    .blog-hero__title {
        font-size: 26px;
    }

    .filters__wrap {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filters__wrap::-webkit-scrollbar {
        display: none;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__legal-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__title {
        font-size: 26px;
    }

    .hero__tagline {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .card {
        padding: 22px;
    }

    .card__title {
        font-size: 16px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .about__stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat {
        padding: 24px 16px;
    }

    .stat__number {
        font-size: 30px;
    }

    .blog-hero__title {
        font-size: 22px;
    }

    .cta-courses__title {
        font-size: 24px;
    }

    .cta-banner__title {
        font-size: 24px;
    }
}

.lead-magnet-inline {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.lead-magnet-inline::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233,30,140,0.3) 0%, transparent 70%);
    border-radius: 50%;
}
.lead-magnet-inline::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(123,45,142,0.3) 0%, transparent 70%);
    border-radius: 50%;
}
.lead-magnet-inline-content {
    position: relative;
    z-index: 1;
}
.lead-magnet-inline .lm-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e91e8c, #7b2d8e);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.lead-magnet-inline h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}
.lead-magnet-inline p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 500px;
}
.lead-magnet-inline .lm-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}
.lead-magnet-inline .lm-features li {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}
.lead-magnet-inline .lm-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e91e8c;
    font-weight: 700;
}
.lead-magnet-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
}
.lead-magnet-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
    min-height: 44px;
}
.lead-magnet-form input[type="email"]:focus-visible {
    border-color: #e91e8c;
    outline: none;
}
.lead-magnet-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.5);
}
.lead-magnet-form input[type="email"]:focus {
    border-color: #e91e8c;
}
.lead-magnet-form button {
    padding: 14px 28px;
    background: linear-gradient(135deg, #e91e8c, #7b2d8e);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.3s, box-shadow 0.3s;
}
.lead-magnet-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233,30,140,0.4);
}
.lm-privacy {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
}

.lead-magnet-bar {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #1a1a2e;
    padding: 16px 20px;
    z-index: 999;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    transition: bottom 0.5s ease;
    border-top: 3px solid #e91e8c;
}
.lead-magnet-bar.visible {
    bottom: 0;
}
.lead-magnet-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.lead-magnet-bar-text {
    flex: 1;
}
.lead-magnet-bar-text strong {
    color: #ffffff;
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}
.lead-magnet-bar-text span {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}
.lead-magnet-bar .lm-bar-form {
    display: flex;
    gap: 10px;
}
.lead-magnet-bar .lm-bar-form input[type="email"] {
    padding: 10px 16px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    width: 240px;
    min-height: 44px;
    transition: border-color 0.3s;
}
.lead-magnet-bar .lm-bar-form input[type="email"]:focus {
    border-color: #e91e8c;
}
.lead-magnet-bar .lm-bar-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.4);
}
.lead-magnet-bar .lm-bar-form button {
    padding: 10px 24px;
    background: linear-gradient(135deg, #e91e8c, #7b2d8e);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.lead-magnet-bar .lm-bar-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(233,30,140,0.4);
}
.lead-magnet-bar-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 24px;
    cursor: pointer;
    padding: 0 0 0 10px;
    line-height: 1;
    transition: color 0.3s;
}
.lead-magnet-bar-close:hover {
    color: #ffffff;
}

.lead-magnet-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.lead-magnet-modal-overlay.active {
    display: flex;
}
.lead-magnet-modal {
    background: #ffffff;
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    overflow: hidden;
    position: relative;
    animation: modalSlideUp 0.4s ease;
}
@keyframes modalSlideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.lead-magnet-modal-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    padding: 40px 40px 30px;
    text-align: center;
    position: relative;
}
.lead-magnet-modal-header::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(233,30,140,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.lead-magnet-modal-header .lm-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}
.lead-magnet-modal-header h3 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
}
.lead-magnet-modal-header p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    position: relative;
}
.lead-magnet-modal-body {
    padding: 30px 40px 40px;
}
.lead-magnet-modal-body .lm-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}
.lead-magnet-modal-body .lm-benefits li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #525252;
    line-height: 1.5;
}
.lead-magnet-modal-body .lm-benefits li::before {
    content: "📌";
    position: absolute;
    left: 0;
}
.lead-magnet-modal-body .lm-modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lead-magnet-modal-body .lm-modal-form input[type="text"],
.lead-magnet-modal-body .lm-modal-form input[type="email"] {
    padding: 14px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 15px;
    color: #525252;
    outline: none;
    transition: border-color 0.3s;
}
.lead-magnet-modal-body .lm-modal-form input:focus,
.lead-magnet-modal-body .lm-modal-form input:focus-visible {
    border-color: #e91e8c;
    outline: none;
}
.lead-magnet-modal-body .lm-modal-form button {
    padding: 16px;
    background: linear-gradient(135deg, #e91e8c, #7b2d8e);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.lead-magnet-modal-body .lm-modal-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233,30,140,0.4);
}
.lead-magnet-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 1;
}
.lead-magnet-modal-close:hover {
    background: rgba(255,255,255,0.3);
}
.lm-modal-privacy {
    text-align: center;
    font-size: 12px;
    color: var(--color-text-subtle);
    margin-top: 12px;
}

.lm-success {
    text-align: center;
    padding: 20px 0;
}
.lm-success .lm-success-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}
.lm-success h4 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-weight: 700;
}
.lm-success p {
    font-size: 15px;
    color: #525252;
}
.lm-success .lm-download-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #e91e8c, #7b2d8e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.lm-success .lm-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233,30,140,0.4);
}

.lead-magnet-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.lead-magnet-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233,30,140,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.lead-magnet-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
}
.lead-magnet-section h2 {
    font-size: 36px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 16px;
}
.lead-magnet-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.lead-magnet-section .lead-magnet-form {
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .lead-magnet-inline {
        padding: 30px 24px;
    }
    .lead-magnet-inline h3 {
        font-size: 22px;
    }
    .lead-magnet-form {
        flex-direction: column;
    }
    .lead-magnet-bar .container {
        flex-direction: column;
        text-align: center;
    }
    .lead-magnet-bar .lm-bar-form {
        flex-direction: column;
        width: 100%;
    }
    .lead-magnet-bar .lm-bar-form input[type="email"] {
        width: 100%;
    }
    .lead-magnet-modal-header,
    .lead-magnet-modal-body {
        padding-left: 24px;
        padding-right: 24px;
    }
    .lead-magnet-section h2 {
        font-size: 28px;
    }
}
