/* ==========================================
   АВТОЗВЕРЬ — Стили сайта
   Светлая тема в цветах логотипа
   ========================================== */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background: #f8f6ff;
    color: #1e1e2e;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1e1e2e;
}

.section__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #1e1e2e;
}

.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #e63946;
    margin: 15px auto 0;
    border-radius: 2px;
}

.section__title--light {
    color: #ffffff;
}

.section__title--light::after {
    background: #e63946;
}

.section {
    padding: 80px 0;
}

/* Light purple background for alternating sections */
.section--light-bg {
    background: #f0ecff;
}

/* Dark purple section (used for hero-like accent areas) */
.section--dark {
    background: #3d1a5e;
    color: #ffffff;
}

.section--dark h2,
.section--dark h3,
.section--dark p,
.section--dark .service-accordion__title-text,
.section--dark .service-accordion__count {
    color: #ffffff;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 12px 28px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    border-radius: 4px;
}

.btn--accent {
    background: #e63946;
    color: #ffffff;
    border-color: #e63946;
}

.btn--accent:hover {
    background: #c1121f;
    border-color: #c1121f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.btn--outline {
    background: transparent;
    color: #1e1e2e;
    border-color: #3d1a5e;
}

.btn--outline:hover {
    background: #3d1a5e;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn--full {
    width: 100%;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #e63946;
    transition: background 0.3s;
    box-shadow: 0 2px 20px rgba(61, 26, 94, 0.1);
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    min-height: 70px;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo-img {
    height: 44px;
    width: auto;
}

.header__phone {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    color: #1e1e2e;
    transition: color 0.2s;
}

.header__phone:hover {
    color: #e63946;
}

.header__cta {
    margin-left: auto;
}

.header__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.header__hours {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header__hours i {
    color: #e63946;
    font-size: 0.85rem;
}

/* Часы работы в мобильном меню (скрыты на десктопе) */
.header__nav-hours {
    display: none;
}

/* Часы работы в футере — с отступом под телефоном */
.footer__hours {
    margin-top: 4px;
}

.header__nav {
    display: flex;
    gap: 24px;
}

.header__nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1e1e2e;
    transition: color 0.2s;
    white-space: nowrap;
}

.header__nav-link:hover {
    color: #e63946;
}

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1e1e2e;
    transition: all 0.3s;
}

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

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

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

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/img/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 26, 94, 0.75) 0%, rgba(230, 57, 70, 0.35) 100%);
}

.hero__content {
    position: relative;
    text-align: center;
    padding: 120px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.hero__logo {
    width: 300px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.5));
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    color: #e63946;
}

.hero__subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 36px;
    opacity: 0.95;
}

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

.hero__buttons .btn--outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.hero__buttons .btn--outline:hover {
    background: #ffffff;
    color: #3d1a5e;
}

.hero__features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.hero__feature-icon {
    font-size: 1.5rem;
}

/* === ABOUT === */
.about__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about__text p {
    font-size: 1.05rem;
    margin-bottom: 16px;
    opacity: 0.9;
    color: #1e1e2e;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.about__stat {
    text-align: center;
    padding: 16px 8px;
    background: #ffffff;
    border-left: 3px solid #e63946;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 2px 8px rgba(61, 26, 94, 0.08);
}

.about__stat-num {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #e63946;
}

.about__stat-label {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    color: #1e1e2e;
}

.about__image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(61, 26, 94, 0.2);
}

/* Workshop photo in about section */
.about__photo {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(61, 26, 94, 0.2);
}

.about__photo img {
    display: block;
    width: 100%;
    border-radius: 8px;
}

/* === SERVICES ACCORDION === */
.services__list {
    max-width: 900px;
    margin: 0 auto;
}

.service-accordion {
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(61, 26, 94, 0.06);
    transition: box-shadow 0.3s;
}

.service-accordion:hover {
    box-shadow: 0 4px 20px rgba(61, 26, 94, 0.12);
}

.service-accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
    border-left: 4px solid #3d1a5e;
}

.service-accordion__header:hover {
    background: #f8f6ff;
}

.service-accordion__header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-accordion__icon {
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0ecff;
    border-radius: 8px;
    flex-shrink: 0;
}

.service-accordion__title-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1e1e2e;
}

.service-accordion__count {
    font-size: 0.85rem;
    color: #888;
    margin-left: 8px;
    font-weight: 400;
}

.service-accordion__arrow {
    font-size: 0.8rem;
    color: #3d1a5e;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.service-accordion.active .service-accordion__arrow {
    transform: rotate(180deg);
}

.service-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.service-accordion.active .service-accordion__body {
    max-height: 2000px;
}

.service-accordion__content {
    padding: 0 24px 20px 82px;
}

.service-accordion__item {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #3d3d4f;
    border-bottom: 1px solid #f0ecff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-accordion__item:last-child {
    border-bottom: none;
}

.service-accordion__item::before {
    content: '▸';
    color: #e63946;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* === PHOTO SHOWCASE === */
.photo-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.photo-showcase__item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(61, 26, 94, 0.15);
}

.photo-showcase__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.photo-showcase__item:hover img {
    transform: scale(1.03);
}

.photo-showcase__caption {
    padding: 12px 16px;
    background: #ffffff;
    font-size: 0.9rem;
    color: #3d1a5e;
    font-weight: 500;
    text-align: center;
    border-top: 2px solid #e63946;
}

/* === ADVANTAGES === */
.advantages__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.advantage-card {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border: 1px solid #e8e4f4;
    border-radius: 8px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.advantage-card:hover {
    border-color: #e63946;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.15);
}

.advantage-card__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.advantage-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #1e1e2e;
}

.advantage-card p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* === REVIEWS === */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.review-card {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-top: 4px solid #e63946;
    border-radius: 0 0 8px 8px;
}

.review-card__stars {
    color: #f4a261;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.review-card__text {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 12px;
    font-style: italic;
}

.review-card__author {
    font-weight: 600;
    color: #e63946;
    font-size: 0.9rem;
}

.reviews__link {
    text-align: center;
}

.reviews__link .btn--outline {
    color: #ffffff;
    border-color: #ffffff;
}

.reviews__link .btn--outline:hover {
    background: #ffffff;
    color: #3d1a5e;
}

/* === CONTACTS === */
.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contacts__map {
    grid-column: 1 / -1;
    margin-top: -10px;
}

.contacts__map iframe {
    width: 100%;
    height: 360px;
    border-radius: 8px;
    display: block;
    border: none;
}

.contacts__info h3,
.contacts__form h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: #1e1e2e;
}

.contacts__item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.contacts__item i {
    color: #e63946;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contacts__label {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 2px;
    color: #1e1e2e;
}

.contacts__phone {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #e63946;
    transition: opacity 0.2s;
}

.contacts__phone:hover {
    opacity: 0.8;
}

.contacts__route-btn {
    margin-top: 10px;
}

/* === FORM === */
.form__group {
    margin-bottom: 16px;
}

.form__group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0.7;
    color: #1e1e2e;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    border: 1px solid #d4d0e4;
    border-radius: 6px;
    background: #ffffff;
    color: #1e1e2e;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: #3d1a5e;
    box-shadow: 0 0 0 3px rgba(61, 26, 94, 0.1);
}

.form__group textarea {
    resize: vertical;
    min-height: 80px;
}

/* === FOOTER === */
.footer {
    background: #3d1a5e;
    color: #ffffff;
    padding: 40px 0 20px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.footer__col p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer__col h4 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: #ffffff;
}

.footer__col a {
    display: block;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 6px;
    transition: opacity 0.2s, color 0.2s;
}

.footer__phone-row a {
    display: inline;
    opacity: 1;
    margin-bottom: 0;
}

.footer__col a:hover {
    opacity: 1;
    color: #e63946;
}

.footer__logo {
    height: 36px;
    margin-bottom: 10px;
}
.footer__logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
}


.footer__bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.85rem;
    opacity: 0.5;
}

.footer i {
    margin-right: 4px;
    color: #e63946;
    vertical-align: middle;
}

.footer__phone-row {
    white-space: nowrap;
}

/* === ANIMATIONS === */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .section__title {
        font-size: 1.8rem;
    }

    .header__nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 2px solid #e63946;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .header__nav.active {
        display: flex;
    }

    .header__burger {
        display: flex;
    }

    .header__cta {
        display: none;
    }

    .header__nav.active .header__nav-hours {
        display: block;
        padding: 8px 0;
        font-size: 0.85rem;
        color: #666;
        border-top: 1px solid #eee;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__logo {
        width: 200px;
    }

    .hero__features {
        gap: 20px;
    }

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

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

    .photo-showcase {
        grid-template-columns: 1fr;
    }

    .services__grid,
    .advantages__grid {
        grid-template-columns: 1fr;
    }

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

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

    .contacts__map iframe {
        height: 260px;
    }

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

    .service-accordion__content {
        padding-left: 24px;
    }

    .service-accordion__icon {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }

    .service-accordion__title-text {
        font-size: 1.05rem;
    }
}

/* === NEWS & ARTICLES === */

/* Page hero for news/articles */
.page-hero {
    padding: 140px 0 40px;
    background: #3d1a5e;
    color: #ffffff;
    text-align: center;
}

.page-hero--article {
    padding: 130px 0 0;
    background: #3d1a5e;
}

.page-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}

.page-hero__subtitle {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.85rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.breadcrumbs a {
    color: #e63946;
    text-decoration: underline;
    opacity: 0.9;
}

.breadcrumbs a:hover {
    opacity: 1;
}

.breadcrumbs span {
    color: #ffffff;
}

/* News tags */
.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
    justify-content: center;
}

.news-tag {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.85rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid #3d1a5e;
    border-radius: 20px;
    color: #3d1a5e;
    cursor: default;
    transition: background 0.2s, color 0.2s;
}

.news-tag--active,
.news-tag:hover {
    background: #3d1a5e;
    color: #ffffff;
}

/* News grid */
.news-grid {
    display: grid;
    gap: 30px;
}

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

.news-grid--list {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

/* News card */
.news-card {
    background: #ffffff;
    border: 1px solid #e8e4f4;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    border-color: #e63946;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.15);
}

.news-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}

.news-card:hover .news-card__image img {
    transform: scale(1.04);
}

.news-card__body {
    padding: 20px 24px 24px;
}

.news-card__meta {
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.news-card__body h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1e1e2e;
}

.news-card__body h3 a {
    color: inherit;
    transition: color 0.2s;
}

.news-card__body h3 a:hover {
    color: #e63946;
}

.news-card__body > p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 14px;
    line-height: 1.55;
}

.news-card__link {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #e63946;
    transition: opacity 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-card__link:hover {
    opacity: 0.7;
}

.news-card__link i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.news-card__link:hover i {
    transform: translateX(3px);
}

/* News preview (homepage) */
.news-preview {
}

.news-preview__lead {
    text-align: center;
    max-width: 650px;
    margin: -26px auto 40px;
    opacity: 0.7;
    font-size: 0.95rem;
}

.news-preview__more {
    text-align: center;
    margin-top: 36px;
}

.news-preview__more .btn--outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Article layout */
.article-layout {
    max-width: 800px;
    margin: 0 auto;
}

.article-layout h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1e1e2e;
}

.article-lead {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.65;
    margin-bottom: 30px;
    color: #3d3d4f;
}

.article-meta {
    margin-bottom: 16px;
}

.article-cover {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(61, 26, 94, 0.15);
}

.article-cover img {
    width: 100%;
    display: block;
}

/* Article content */
.article-content {
    font-size: 1rem;
    line-height: 1.75;
    color: #1e1e2e;
}

.article-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 36px 0 16px;
    color: #1e1e2e;
    padding-bottom: 8px;
    border-bottom: 2px solid #e63946;
}

.article-content p {
    margin-bottom: 16px;
    opacity: 0.9;
}

.article-content ul {
    margin: 0 0 20px 0;
    padding: 0 0 0 24px;
    list-style: none;
}

.article-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.article-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #e63946;
    font-weight: bold;
}

.article-content strong {
    color: #3d1a5e;
}

/* Article CTA */
.article-cta {
    margin-top: 50px;
    padding: 36px;
    background: #f0ecff;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid #e63946;
}

.article-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1e1e2e;
}

.article-cta p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Article nav */
.article-nav {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #e8e4f4;
}

.article-nav__back {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #3d1a5e;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.article-nav__back:hover {
    color: #e63946;
}

.article-nav__next {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #e63946;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}

.article-nav__next:hover {
    opacity: 0.7;
}

.article-nav__next i,
.article-nav__back i {
    font-size: 0.75rem;
}

/* === NEWS RESPONSIVE === */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 30px;
    }

    .page-hero__title {
        font-size: 1.6rem;
    }

    .page-hero__subtitle {
        font-size: 0.95rem;
    }

    .news-grid--preview {
        grid-template-columns: 1fr;
    }

    .news-grid--list .news-card {
        grid-template-columns: 1fr;
    }

    .article-layout h1 {
        font-size: 1.5rem;
    }

    .article-content h2 {
        font-size: 1.2rem;
    }

    .article-cta {
        padding: 24px 20px;
    }

    .article-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

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

    .news-tags {
        gap: 6px;
    }

    .news-tag {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
}

/* === FLOATING CALL BUTTON === */
.float-call {
    display: none;
}

@media (max-width: 768px) {
    .float-call {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #e63946;
        color: #ffffff;
        font-size: 1.4rem;
        box-shadow: 0 4px 16px rgba(230, 57, 70, 0.45);
        z-index: 999;
        text-decoration: none;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .float-call:hover,
    .float-call:active {
        transform: scale(1.08);
        box-shadow: 0 6px 24px rgba(230, 57, 70, 0.6);
    }
}

/* === REVIEWS RATING BADGE === */
.reviews__rating {
    text-align: center;
    margin-bottom: 32px;
}

.reviews__rating-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.reviews__rating-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
}

.reviews__rating-stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* Star component — supports full, half, and empty states */
.star {
    display: inline-block;
    font-size: inherit;
    line-height: 1;
}
.star--full {
    color: #f5a623;
}
.star--empty {
    color: rgba(255, 255, 255, 0.25);
}
.star--half {
    position: relative;
    color: rgba(255, 255, 255, 0.25);
}
.star--half::before {
    content: "★";
    position: absolute;
    left: 0;
    width: 53%;
    overflow: hidden;
    color: #f5a623;
}

.reviews__rating-score {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
}

.reviews__rating-sep {
    color: rgba(255, 255, 255, 0.35);
    font-size: 1rem;
}

.reviews__rating-count {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.reviews__rating-icon {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}
