/* Base / Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
@font-face {
    font-family: "Editorial Grotesk";
    src: url("assets/fonts/Editorial_Grotesk.otf") format("opentype");
    font-display: swap;
}
@font-face {
    font-family: "Suisse Intl";
    src: url("assets/fonts/SuisseIntl-Regular.otf") format("opentype");
    font-display: swap;
}
body { 
    font-family: "Suisse Intl", sans-serif; 
    background-color: #ffffff;
    color: #1a1a1a;
    min-height: 100vh;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { 
    font-family: "Editorial Grotesk", sans-serif; 
    font-weight: 400; 
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input { font: inherit; outline: none; }
img { max-width: 100%; height: auto; }

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Container */
.container { padding-left: 1.25rem; padding-right: 1.25rem; max-width: 100%; margin: 0 auto; }
@media (min-width: 640px) { .container { padding-left: 60px; padding-right: 60px; } }

/* UI Elements */
.divider { border-top: 1px solid #e5e7eb; width: 100%; margin-bottom: 2rem; }

.btn-primary {
    background-color: #2a2b2c; color: #fff; padding: 1rem 2rem; border-radius: 14px; 
    font-weight: 500; transition: background-color 0.2s; white-space: nowrap;
    display: inline-flex; justify-content: center; align-items: center;
}
.btn-primary:hover { background-color: #000; }

.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; background-color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); transition: background-color 0.2s; z-index: 10;
}
.slider-btn svg { width: 15px; height: 15px; }
.slider-btn:hover { background-color: #f9fafb; }
.slider-btn--prev { left: 1.5rem; transform: translate(-50%, -50%); }
@media (min-width: 1024px) { .slider-btn--prev { left: 1.75rem; } }
.slider-btn--next { right: 1.5rem; transform: translate(50%, -50%); }
@media (min-width: 1024px) { .slider-btn--next { right: 1.75rem; } }

/* Hero Section */
.hero { padding-top: 2.5rem; padding-bottom: 4rem; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero { padding-bottom: 6rem; grid-template-columns: 1fr 1.1fr; gap: 5rem; } }

.hero__content { display: flex; flex-direction: column; }
@media (min-width: 640px) { .hero__content { order: 2; } }
@media (min-width: 1024px) { .hero__content { order: 1; } }

.hero__title { font-size: 44px; font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .hero__title { font-size: 56px; } }
@media (min-width: 1024px) { .hero__title { font-size: 72px; } }
.hero__title-break { display: none; }
@media (min-width: 1280px) { .hero__title-break { display: block; } }

.hero__manager-row { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; justify-content: space-between; }
@media (min-width: 640px) { .hero__manager-row { flex-direction: row; align-items: center; } }

.manager-info { display: flex; align-items: center; gap: 1rem; }
.manager-info__avatar { width: 3.5rem; height: 3.5rem; border-radius: 9999px; object-fit: cover; }
.manager-info__name { font-weight: 500; font-size: 15px; }
.manager-info__exp { color: #9ca3af; font-size: 14px; }

.social-links { display: flex; align-items: center; gap: 0.75rem; }
.social-links__item { width: 2.75rem; height: 2.75rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; transition: opacity 0.2s; }
.social-links__item:hover { opacity: 0.9; }
.social-links__item--tg { background-color: #229ED9; }
.social-links__item--max { background: linear-gradient(to bottom right, #4b6cb7, #182848); }
.social-links__icon { width: 100%; height: 100%; object-fit: contain; }

.hero__manager-text { font-size: 15px; line-height: 1.375; }
@media (min-width: 640px) { .hero__manager-text { width: 200px; } }

.hero__form-box { background-color: #f4f5f6; border-radius: 24px; padding: 1rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .hero__form-box { padding: 1.5rem; } }

.hero__form { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; }
@media (min-width: 640px) { .hero__form { flex-direction: row; } }

.form-input-wrapper { flex: 1; width: 100%; position: relative; display: flex; align-items: flex-end; height: 52px; }
.form-input { width: 100%; background: transparent; border: none; border-bottom: 1px solid #9ca3af; padding-bottom: 0.5rem; font-size: 1.125rem; color: #000; transition: border-color 0.2s; }
.form-input::placeholder { color: #000; }
.form-input:focus { border-color: #000; }

.hero__form-btn { width: 100%; height: 56px; }
@media (min-width: 640px) { .hero__form-btn { width: auto; } }

.disclaimer-text { font-size: 0.75rem; text-align: center; color: #6b7280; }
.disclaimer-text a { color: #000; text-decoration: underline; text-decoration-color: #9ca3af; text-underline-offset: 2px; }

.hero__slider-col { position: relative; width: 100%; height: 320px; margin-top: 2rem; overflow: visible; min-width: 0; padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 640px) { .hero__slider-col { height: 420px; margin-top: 0; order: 1; } }
@media (min-width: 1024px) { .hero__slider-col { height: 520px; padding-left: 1.75rem; padding-right: 1.75rem; order: 2; } }
@media (min-width: 1280px) { .hero__slider-col { height: 600px; } }

.hero__slider-wrapper { width: 100%; height: 100%; border-radius: 32px; overflow: hidden; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.hero-swiper, .hero-swiper .swiper-wrapper, .hero-swiper .swiper-slide { height: 100%; width: 100%; }
.hero-swiper img { display: block; width: 100%; height: 100%; object-fit: cover; background-color: #f3f4f6; }

.hero-swiper-pagination, .swiper-pagination-uniform { position: absolute; left: 0; right: 0; bottom: 1rem; display: flex; justify-content: center; gap: 0.5rem; z-index: 10; }
.swiper-pagination-bullet { width: 8px; height: 8px; background: rgba(0,0,0,0.35); opacity: 1; border-radius: 9999px; transition: background-color 0.2s ease; }
.swiper-pagination-bullet-active { background: rgba(0,0,0,0.85); }

/* Consultation Section */
.consultation { padding-top: 3rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .consultation { padding-top: 5rem; padding-bottom: 5rem; } }

.consultation__divider { border-top: 1px solid #d1d5db; width: 100%; margin-bottom: 3rem; }
@media (min-width: 768px) { .consultation__divider { margin-bottom: 4rem; } }

.consultation__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: stretch; }
@media (min-width: 768px) { .consultation__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .consultation__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 2rem; } }
@media (min-width: 1280px) { .consultation__grid { gap: 4rem; } }

.consultation__title-col { }
@media (min-width: 1024px) { .consultation__title-col { grid-column: span 5 / span 5; } }

.consultation__title { font-size: 44px; font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; color: #000; }
@media (min-width: 640px) { .consultation__title { font-size: 56px; } }
@media (min-width: 1024px) { .consultation__title { font-size: 64px; } }
@media (min-width: 1280px) { .consultation__title { font-size: 72px; } }

.consultation__video-col { display: flex; justify-content: center; align-items: stretch; align-self: stretch; }
@media (min-width: 1024px) { .consultation__video-col { grid-column: span 3 / span 3; justify-content: flex-start; } }

.video-card { position: relative; width: 100%; max-width: 320px; height: 100%; border-radius: 24px; overflow: hidden; cursor: pointer; }
@media (min-width: 1024px) { .video-card { max-width: 100%; } }
.video-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.video-card:hover .video-card__img { transform: scale(1.05); }
.video-card__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 3.5rem; height: 3.5rem; background-color: rgba(255,255,255,0.9); backdrop-filter: blur(4px); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); transition: background-color 0.2s; }
.video-card:hover .video-card__play { background-color: #fff; }

.consultation__form-col { display: flex; flex-direction: column; align-items: center; }
@media (min-width: 1024px) { .consultation__form-col { grid-column: span 4 / span 4; padding-right: 2.5rem; } }

.consultation__manager { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.consultation__manager-info { display: flex; align-items: center; gap: 0.75rem; }
.consultation__manager-avatar { width: 3rem; height: 3rem; border-radius: 9999px; object-fit: cover; }
.consultation__manager-name { font-weight: 500; font-size: 15px; line-height: 1.25; }
.consultation__manager-exp { color: #9ca3af; font-size: 13px; }

.consultation__socials { display: flex; align-items: center; gap: 0.5rem; }
.consultation__social-link { width: 2.25rem; height: 2.25rem; border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: opacity 0.2s; }
.consultation__social-link:hover { opacity: 0.9; }

.consultation__desc { text-align: center; font-size: 15px; line-height: 1.625; margin-bottom: 2rem; max-width: 340px; color: #1f2937; }

.consultation__form { width: 100%; max-width: 380px; display: flex; flex-direction: column; gap: 1.25rem; }
.consultation__input-wrap { display: flex; align-items: flex-end; border-bottom: 1px solid #9ca3af; padding-bottom: 0.5rem; transition: border-color 0.2s; }
.consultation__input-wrap:focus-within { border-color: #000; }
.consultation__input { width: 100%; background: transparent; border: none; padding: 0 0 0.125rem 0; font-size: 1.125rem; font-weight: 400; outline: none; }
.consultation__input::placeholder { color: #000; }
.consultation__submit { width: 100%; background-color: #2a2b2c; color: #fff; padding: 1rem; border-radius: 0.75rem; font-weight: 500; transition: background-color 0.2s; margin-top: 0.5rem; font-size: 15px; text-align: center; }
.consultation__submit:hover { background-color: #000; }
.consultation__disclaimer { font-size: 0.75rem; text-align: center; color: #6b7280; line-height: 1.375; margin-top: 0.25rem; }
.consultation__disclaimer a { color: #000; font-weight: 500; }
.consultation__disclaimer a:hover { text-decoration: underline; }

/* Tariffs Section */
.tariffs { padding-top: 3rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .tariffs { padding-top: 5rem; padding-bottom: 5rem; } }

.tariffs__breadcrumbs { border-bottom: 1px solid #d1d5db; padding-bottom: 1.5rem; margin-bottom: 2rem; }
.breadcrumbs__inner { display: inline-flex; align-items: center; font-size: 0.875rem; font-weight: 500; }
.breadcrumbs__num { border: 1px solid #9ca3af; border-radius: 9999px; padding: 0.375rem 1rem; position: relative; z-index: 0; mix-blend-mode: multiply; }
.breadcrumbs__text { border: 1px solid #9ca3af; border-radius: 9999px; padding: 0.375rem 1.25rem; margin-left: -0.5rem; position: relative; z-index: 10; mix-blend-mode: multiply; }

.tariffs__header { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .tariffs__header { flex-direction: row; align-items: flex-end; } }

.tariffs__title { font-size: 2.25rem; font-weight: 600; letter-spacing: -0.025em; }
@media (min-width: 768px) { .tariffs__title { font-size: 40px; } }

.tariffs__info { background-color: #f3f4f6; border-radius: 0.5rem; padding: 0.625rem 1rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #4b5563; }
.tariffs__info a { color: #000; text-decoration: underline; font-weight: 500; text-underline-offset: 2px; text-decoration-color: #9ca3af; }

.tariffs__grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 1rem; padding-bottom: 1rem; margin-left: -1.25rem; margin-right: -1.25rem; padding-left: 1.25rem; padding-right: 1.25rem; }
.tariffs__grid::after { content: ''; width: 1px; flex-shrink: 0; }
@media (min-width: 640px) { .tariffs__grid { gap: 1.5rem; margin-left: -60px; margin-right: -60px; padding-left: 60px; padding-right: 60px; } }
@media (min-width: 1024px) { .tariffs__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: visible; scroll-snap-type: none; margin: 0; padding: 0; } .tariffs__grid::after { display: none; } }

.tariff-card { width: 88vw; flex-shrink: 0; scroll-snap-align: start; border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; position: relative; height: 100%; }
@media (min-width: 640px) { .tariff-card { width: 400px; } }
@media (min-width: 1024px) { .tariff-card { width: auto; scroll-snap-align: none; } }
@media (min-width: 1441px) { .tariff-card { display: grid; grid-template-columns: 45% 55%; grid-template-rows: auto 1fr; } }

.tariff-card--standart { background-color: #f4f5f6; color: #1a1a1a; }
.tariff-card--business { background-color: #2a2b2c; color: #fff; }
.tariff-card--business-plus { background-color: #a8926a; color: #fff; }

.tariff-card__top { display: flex; flex-direction: row; }
@media (min-width: 1441px) { .tariff-card__top { display: contents; } }

.tariff-card__image-col { width: 45%; min-height: 300px; position: relative; overflow: hidden; }
.tariff-card--standart .tariff-card__image-col { background-color: #cfd3d6; }
.tariff-card--business .tariff-card__image-col { background-color: #a3a5a6; }
.tariff-card--business-plus .tariff-card__image-col { background-color: #8b8a87; }
@media (min-width: 1024px) { .tariff-card__image-col { min-height: 360px; } }
@media (min-width: 1441px) { .tariff-card__image-col { width: 100%; grid-column: 1 / 2; grid-row: 1 / 3; } }

.tariff-card__img { position: absolute; top: 0; left: 50%; transform: translateX(-50%); height: 100%; width: auto; max-width: none; }

.tariff-card__content-col { width: 55%; padding: 1rem; display: flex; flex-direction: column; position: relative; }
@media (min-width: 640px) { .tariff-card__content-col { padding: 1.5rem; } }
@media (min-width: 1441px) { .tariff-card__content-col { width: 100%; grid-column: 2 / 3; grid-row: 1 / 2; } }

.tariff-card__title { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }
@media (min-width: 640px) { .tariff-card__title { font-size: 1.875rem; margin-bottom: 1.5rem; } }

.tariff-card__features { display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; margin-bottom: 1.5rem; }
.feature-label { margin-bottom: 0.25rem; }
.tariff-card--standart .feature-label { color: #6b7280; }
.tariff-card--business .feature-label { color: #9ca3af; }
.tariff-card--business-plus .feature-label { color: rgba(255,255,255,0.7); }

.feature-value { font-weight: 500; cursor: pointer; transition: color 0.2s; text-decoration: underline; text-underline-offset: 4px; }
.tariff-card--standart .feature-value { text-decoration-color: #9ca3af; }
.tariff-card--standart .feature-value:hover { color: #374151; }
.tariff-card--business .feature-value { text-decoration-color: #6b7280; }
.tariff-card--business .feature-value:hover { color: #d1d5db; }
.tariff-card--business-plus .feature-value { text-decoration-color: rgba(255,255,255,0.5); }
.tariff-card--business-plus .feature-value:hover { color: #fff; }

.tariff-card__desc { font-size: 0.75rem; margin-bottom: 1.5rem; line-height: 1.625; }

.tariff-card__checkbox { display: flex; align-items: center; gap: 0.5rem; margin-top: auto; cursor: pointer; width: fit-content; }
.checkbox-input { appearance: none; width: 1rem; height: 1rem; background-position: center; background-repeat: no-repeat; transition: all 0.2s; cursor: pointer; }
.tariff-card--standart .checkbox-input { background-image: url('../images/checkbox-black.svg'); }
.tariff-card--standart .checkbox-input:checked { background-image: url('../images/checkbox-black-checked.svg'), url('../images/checkbox-black.svg'); }
.tariff-card--business .checkbox-input, .tariff-card--business-plus .checkbox-input { background-image: url('../images/checkbox-white.svg'); }
.tariff-card--business .checkbox-input:checked, .tariff-card--business-plus .checkbox-input:checked { background-image: url('../images/checkbox-white-checked.svg'), url('../images/checkbox-white.svg'); }
.checkbox-label { font-size: 0.875rem; }

.tariff-card__bottom { padding: 1rem; padding-top: 0; display: flex; flex-direction: column; flex-grow: 1; position: relative; }
@media (min-width: 640px) { .tariff-card__bottom { padding: 1.5rem; padding-top: 0; } }
@media (min-width: 1441px) { .tariff-card__bottom { grid-column: 2 / 3; grid-row: 2 / 3; } }

.tariff-card__divider { border-top: 1px solid; width: 100%; margin-bottom: 1.25rem; }
.tariff-card--standart .tariff-card__divider { border-color: #e5e7eb; }
.tariff-card--business .tariff-card__divider { border-color: rgba(75,85,99,0.5); }
.tariff-card--business-plus .tariff-card__divider { border-color: rgba(255,255,255,0.2); }
@media (min-width: 1441px) { .tariff-card__divider { border-color: transparent; } }

.discount-banner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.5rem; margin-bottom: 1rem; }
.discount-banner__text { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; }
.discount-banner__badge { font-size: 0.75rem; padding: 0.375rem 0.75rem; border-radius: 0.375rem; }
.tariff-card--standart .discount-banner__badge { background-color: #e8e9ea; color: #6b7280; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.tariff-card--standart .discount-banner__badge span { color: #000; font-weight: 500; }
.tariff-card--business .discount-banner__badge { background-color: #1a1b1c; color: #9ca3af; }
.tariff-card--business .discount-banner__badge span { color: #fff; font-weight: 500; }
.tariff-card--business-plus .discount-banner__badge { background-color: #96825e; color: rgba(255,255,255,0.8); }
.tariff-card--business-plus .discount-banner__badge span { color: #fff; font-weight: 500; }
@media (max-width: 1440px) { .discount-banner__badge { width: 110px; text-align: center; } }
@media (min-width: 1441px) { .discount-banner__badge { width: auto; } }

.price-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 1.5rem; }
.price-old { display: flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; margin-bottom: 0.25rem; }
.price-old span { text-decoration: line-through; }
.tariff-card--standart .price-old { color: #9ca3af; }
.tariff-card--business .price-old { color: #6b7280; }
.tariff-card--business-plus .price-old { color: rgba(255,255,255,0.6); }
.price-new { font-size: 28px; font-weight: 700; line-height: 1; }
.price-new small { font-size: 0.875rem; font-weight: 400; }

.schedule-box { border-radius: 0.75rem; padding: 0.75rem; text-align: center; min-width: 110px; }
.tariff-card--standart .schedule-box { background-color: #e8e9ea; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.tariff-card--business .schedule-box { background-color: #1a1b1c; }
.tariff-card--business-plus .schedule-box { background-color: #96825e; }
.schedule-box__time { font-size: 0.75rem; margin-bottom: 0.25rem; }
.tariff-card--standart .schedule-box__time { color: #6b7280; }
.tariff-card--business .schedule-box__time { color: #d1d5db; }
.tariff-card--business-plus .schedule-box__time { color: rgba(255,255,255,0.8); }
.schedule-box__link { font-size: 0.75rem; text-decoration: underline; text-underline-offset: 4px; transition: color 0.2s; }
.tariff-card--standart .schedule-box__link { text-decoration-color: #9ca3af; }
.tariff-card--standart .schedule-box__link:hover { color: #4b5563; }
.tariff-card--business .schedule-box__link { text-decoration-color: #6b7280; }
.tariff-card--business .schedule-box__link:hover { color: #d1d5db; }
.tariff-card--business-plus .schedule-box__link { text-decoration-color: rgba(255,255,255,0.5); }
.tariff-card--business-plus .schedule-box__link:hover { color: #fff; }

.extra-discounts { margin-bottom: 2rem; }
.extra-discounts__title { font-size: 0.875rem; margin-bottom: 0.75rem; }
.tariff-card--standart .extra-discounts__title { color: #6b7280; }
.tariff-card--business .extra-discounts__title { color: #9ca3af; }
.tariff-card--business-plus .extra-discounts__title { color: rgba(255,255,255,0.7); }
.extra-discounts__list { display: flex; flex-direction: column; gap: 0.5rem; }
.extra-discounts__item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.extra-discounts__badge { padding: 0.25rem 0.5rem; border-radius: 0.375rem; }
.tariff-card--standart .extra-discounts__badge { background-color: #fff; color: #6b7280; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.tariff-card--business .extra-discounts__badge { background-color: #1a1b1c; color: #d1d5db; }
.tariff-card--business-plus .extra-discounts__badge { background-color: #96825e; color: rgba(255,255,255,0.9); }

.tariff-card__btn { width: 100%; padding: 1rem; border-radius: 0.75rem; font-weight: 500; transition: background-color 0.2s; margin-top: auto; position: relative; z-index: 10; }
.tariff-card--standart .tariff-card__btn { background-color: #2a2b2c; color: #fff; }
.tariff-card--standart .tariff-card__btn:hover { background-color: #000; }
.tariff-card--business .tariff-card__btn, .tariff-card--business-plus .tariff-card__btn { background-color: #fff; color: #000; }
.tariff-card--business .tariff-card__btn:hover, .tariff-card--business-plus .tariff-card__btn:hover { background-color: #f3f4f6; }

.prices-popup { display: none; position: absolute; bottom: 80px; left: 1.5rem; right: 1.5rem; background-color: #fff; border-radius: 1rem; padding: 1.25rem; box-shadow: 0 8px 30px rgba(0,0,0,0.1); z-index: 20; color: #000; }
.prices-popup.is-active { display: block; }
.prices-popup__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.prices-popup__title { font-weight: 600; font-size: 1.125rem; }
.prices-popup__close { color: #9ca3af; }
.prices-popup__close:hover { color: #000; }
.prices-popup__list { display: flex; flex-direction: column; gap: 1rem; }
.prices-popup__item-label { color: #9ca3af; font-size: 0.75rem; margin-bottom: 0.25rem; }
.prices-popup__item-price { display: flex; align-items: baseline; gap: 0.5rem; }
.prices-popup__item-price strong { font-weight: 500; }
.prices-popup__item-price small { font-size: 0.875rem; font-weight: 500; }

.tariff-star { position: absolute; color: #fff; font-size: 0.75rem; font-weight: 700; border-radius: 0.5rem; z-index: 10; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background-image: url('../images/star.png'); background-repeat: no-repeat; background-position: center; background-size: 52px 52px; }
.tariff-star--mobile { bottom: 1rem; left: 1rem; }
@media (min-width: 1441px) { .tariff-star--mobile { display: none; } }
.tariff-star--desktop { display: none; top: 1.5rem; right: 1.5rem; }
@media (min-width: 1441px) { .tariff-star--desktop { display: flex; } }

/* Popups / Modals */
.modal { position: fixed; inset: 0; z-index: 50; display: none; align-items: stretch; justify-content: stretch; opacity: 0; transition: opacity 0.3s; }
@media (min-width: 768px) { .modal { align-items: center; justify-content: center; } }
.modal.is-active { display: flex; }
.modal.is-visible { opacity: 1; }
.modal__overlay { position: absolute; inset: 0; background-color: rgba(0,0,0,0.4); backdrop-filter: blur(4px); cursor: pointer; }
.modal__content { position: relative; background-color: #fff; z-index: 10; width: 100%; height: 100%; overflow-y: auto; overflow-x: hidden; transform: scale(0.95); transition: transform 0.3s; }
.modal.is-visible .modal__content { transform: scale(1); }
@media (min-width: 768px) { .modal__content { border-radius: 1.5rem; height: auto; margin: 0 1rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); } }

.modal--uniform .modal__content { display: flex; flex-direction: column-reverse; max-width: 800px; min-height: 0; }
@media (min-width: 768px) { .modal--uniform .modal__content { flex-direction: row; min-height: 500px; } }

.modal__close { position: absolute; top: 1.5rem; right: 1.5rem; z-index: 20; color: #4b5563; padding: 0.25rem; transition: color 0.2s; }
.modal__close:hover { color: #000; }
.modal__close--desktop { display: none; }
@media (min-width: 768px) { .modal__close--desktop { display: block; } }

.modal--category .modal__close { position: fixed; right: 1rem; background: rgba(255,255,255,0.8); border-radius: 50%; backdrop-filter: blur(4px); }
@media (min-width: 768px) { .modal--category .modal__close { position: absolute; right: 1.5rem; background: transparent; backdrop-filter: none; } }

.modal__left { width: 100%; padding: 1.5rem 1rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .modal__left { width: 50%; padding: 3rem; } }

.modal__title { font-size: 32px; font-weight: 500; margin-bottom: 2rem; color: #000; line-height: 1; display: none; }
@media (min-width: 768px) { .modal__title { display: block; } }

.modal__info-block { margin-bottom: 1.5rem; }
.modal__info-label { color: #9ca3af; font-size: 15px; margin-bottom: 0.25rem; }
.modal__info-value { font-size: 20px; font-weight: 500; color: #000; }

.modal__desc p { color: #000; font-size: 16px; line-height: 1.625; margin-bottom: 1rem; }

.modal__right { width: 100%; position: relative; display: flex; flex-direction: column; flex-shrink: 0; }
@media (min-width: 768px) { .modal__right { width: 50%; min-height: 400px; background-color: #bcbcbc; } }

.modal__mobile-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; padding: 1.5rem 1rem 0; }
@media (min-width: 768px) { .modal__mobile-header { display: none; } }
.modal__mobile-title { font-size: 28px; font-weight: 500; color: #000; line-height: 1; }

.modal__slider-wrap { padding: 0 1rem; flex: 1; display: flex; flex-direction: column; position: relative; }
@media (min-width: 768px) { .modal__slider-wrap { padding: 0; height: 100%; } }

.uniform-swiper { position: relative; width: 100%; height: 65vh; border-radius: 1rem; overflow: hidden; background-color: #bcbcbc; }
@media (min-width: 768px) { .uniform-swiper { height: 100%; position: absolute; inset: 0; border-radius: 0; } }
.uniform-swiper .swiper-slide { display: flex; align-items: center; justify-content: center; }
.uniform-swiper img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) { .uniform-swiper img { object-fit: contain; } }

.modal--category .modal__content { max-width: 1100px; padding: 1.5rem 1rem; }
@media (min-width: 768px) { .modal--category .modal__content { padding: 2.5rem; } }

.category-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-top: 1rem; }
@media (min-width: 768px) { .category-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.category-col { display: flex; flex-direction: column; }
.category-col--border { padding-top: 1rem; border-top: 1px solid #f3f4f6; }
@media (min-width: 768px) { .category-col--border { padding-top: 0; border-top: none; } }
.category-col--last { padding-bottom: 2rem; }
@media (min-width: 768px) { .category-col--last { padding-bottom: 0; } }

.category-header { margin-bottom: 1rem; padding-right: 3rem; }
@media (min-width: 768px) { .category-header { padding-right: 0; } }
.category-title { font-size: 28px; font-weight: 500; margin-bottom: 0.25rem; }
@media (min-width: 768px) { .category-title { font-size: 1.875rem; } }
.category-subtitle { color: #9ca3af; font-size: 15px; }
@media (min-width: 768px) { .category-subtitle { font-size: 0.875rem; } }

.category-img { width: 100%; background-color: #bcbcbc; border-radius: 1rem; overflow: hidden; margin-bottom: 1rem; aspect-ratio: 3/4; }
@media (min-width: 768px) { .category-img { margin-bottom: 1.5rem; } }
.category-img img { width: 100%; height: 100%; object-fit: contain; }

.category-rate { margin-bottom: 0.75rem; }
@media (min-width: 768px) { .category-rate { margin-bottom: 1rem; } }
.category-rate-label { color: #9ca3af; font-size: 15px; margin-bottom: 0.25rem; }
@media (min-width: 768px) { .category-rate-label { font-size: 0.875rem; } }
.category-rate-value { font-weight: 500; font-size: 20px; }
@media (min-width: 768px) { .category-rate-value { font-size: 1.125rem; } }

.category-desc { font-size: 16px; line-height: 1.625; color: #000; }
@media (min-width: 768px) { .category-desc { font-size: 14px; } }