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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background: #0d0d1a;
    color: #e8e4f0;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

:root {
    --clr-bg: #0d0d1a;
    --clr-surface: #16172b;
    --clr-surface2: #1e1f38;
    --clr-primary: #c0392b;
    --clr-primary-dark: #962d22;
    --clr-gold: #e8b94a;
    --clr-gold-dark: #c49a30;
    --clr-text: #e8e4f0;
    --clr-text-muted: #9b96b0;
    --clr-border: #2a2b48;
    --clr-success: #27ae60;
    --clr-danger: #e74c3c;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .45);
    --transition: 0.22s ease;
}

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

.site-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.25;
    color: var(--clr-text)
}

a {
    color: var(--clr-gold);
    text-decoration: none;
    transition: color var(--transition)
}

a:hover {
    color: var(--clr-gold-dark)
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--clr-text)
}

.section-sub {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    font-size: .95rem
}

.section-heading {
    text-align: center;
    margin-bottom: 2rem
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .65rem 1.4rem;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35)
}

.btn:active {
    transform: translateY(0)
}

.btn-login {
    background: #2a2b48;
    color: var(--clr-text);
    border: 1px solid var(--clr-border)
}

.btn-login:hover {
    background: #3a3c5c;
    color: var(--clr-text)
}

.btn-register {
    background: var(--clr-primary);
    color: #fff
}

.btn-register:hover {
    background: var(--clr-primary-dark);
    color: #fff
}

.btn-hero {
    background: var(--clr-gold);
    color: #1a0a00;
    font-size: 1rem;
    padding: .8rem 2rem;
    border-radius: var(--radius-md)
}

.btn-hero:hover {
    background: var(--clr-gold-dark);
    color: #1a0a00
}

.btn-outline {
    background: transparent;
    color: var(--clr-gold);
    border: 1.5px solid var(--clr-gold)
}

.btn-outline:hover {
    background: var(--clr-gold);
    color: #1a0a00
}

.btn-bonus {
    background: var(--clr-gold);
    color: #1a0a00
}

.btn-bonus:hover {
    background: var(--clr-gold-dark);
    color: #1a0a00
}

.btn-primary {
    background: var(--clr-primary);
    color: #fff
}

.btn-secondary {
    background: var(--clr-surface2);
    color: var(--clr-text);
    border: 1px solid var(--clr-border)
}

.btn-block {
    width: 100%;
    display: flex
}

.btn-submit-review {
    width: 100%;
    padding: .8rem;
    font-size: .95rem;
    justify-content: center
}

.btn-widget {
    background: var(--clr-gold);
    color: #1a0a00;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-sm);
    white-space: nowrap
}

.btn-widget:hover {
    background: var(--clr-gold-dark);
    color: #1a0a00
}

.site-header {
    background: var(--clr-surface);
    border-bottom: 1px solid var(--clr-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .4)
}

.hdr-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .75rem 0;
    flex-wrap: wrap
}

.hdr-logo img {
    width: 80px;
    height: auto
}

.hdr-nav-wrap {
    flex: 1;
    min-width: 0
}

.hdr-nav-list {
    display: flex;
    list-style: none;
    gap: .25rem;
    flex-wrap: wrap
}

.hdr-nav-link {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: var(--clr-text-muted);
    padding: .4rem .75rem;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 500;
    transition: color var(--transition), background var(--transition)
}

.hdr-nav-link:hover {
    color: var(--clr-text);
    background: var(--clr-surface2)
}

.hdr-nav-link svg {
    flex-shrink: 0
}

.hdr-review-count {
    display: flex;
    align-items: center;
    gap: .3rem;
    color: var(--clr-gold);
    font-size: .8rem;
    font-weight: 600;
    white-space: nowrap;
    background: rgba(232, 185, 74, .1);
    padding: .3rem .7rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(232, 185, 74, .25)
}

.hdr-buttons-wrap {
    display: flex;
    gap: .5rem;
    align-items: center
}

.hdr-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    border-radius: var(--radius-sm)
}

.hdr-burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition)
}

.hdr-burger.is-open .hdr-burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg)
}

.hdr-burger.is-open .hdr-burger-line:nth-child(2) {
    opacity: 0
}

.hdr-burger.is-open .hdr-burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg)
}

.hero-section {
    position: relative;
    overflow: hidden
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 480px;
    overflow: hidden
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none
}

.hero-slide--active {
    position: relative;
    opacity: 1;
    pointer-events: auto
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(0deg, rgba(13, 13, 26, .85) 0%, rgba(13, 13, 26, .2) 60%, transparent 100%)
}

.hero-slide-content .container {
    padding-bottom: 2rem
}

.hero-badge {
    display: inline-block;
    background: var(--clr-primary);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .75rem;
    border-radius: 2rem;
    margin-bottom: .5rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: .05em
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
    margin-bottom: .5rem
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 1.2rem
}

.hero-slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 5
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0
}

.hero-dot--active {
    background: var(--clr-gold);
    transform: scale(1.3)
}

.hero-info-row {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap
}

.hero-tile {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 0 0 240px;
    box-shadow: var(--shadow-card)
}

.hero-tile-logo img {
    max-width: 130px
}

.hero-tile-rating {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.hero-rating-label {
    font-size: .75rem;
    color: var(--clr-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em
}

.hero-rating-bar-wrap {
    display: flex;
    align-items: center;
    gap: .75rem
}

.hero-rating-score {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-gold);
    line-height: 1
}

.hero-rating-score span {
    font-size: .9rem;
    color: var(--clr-text-muted);
    font-weight: 400
}

.hero-rating-bar {
    flex: 1;
    height: 8px;
    background: var(--clr-surface2);
    border-radius: 4px;
    overflow: hidden
}

.hero-rating-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
    transition: width 1s ease
}

.hero-tile-bonus {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(232, 185, 74, .12);
    color: var(--clr-gold);
    font-weight: 700;
    font-size: .95rem;
    padding: .6rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(232, 185, 74, .25)
}

.hero-tile-btns {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.hero-score-summary {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    flex: 1;
    min-width: 220px;
    box-shadow: var(--shadow-card)
}

.hero-score-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.hero-score-list {
    display: flex;
    flex-direction: column;
    gap: .55rem
}

.hero-score-row {
    display: flex;
    align-items: center;
    gap: .75rem
}

.hero-score-label {
    font-size: .82rem;
    color: var(--clr-text-muted);
    min-width: 70px
}

.hero-score-bar-wrap {
    flex: 1;
    height: 7px;
    background: var(--clr-surface2);
    border-radius: 4px;
    overflow: hidden
}

.hero-score-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--clr-primary)
}

.hero-score-row:nth-child(1) .hero-score-bar-fill {
    background: var(--clr-success)
}

.hero-score-row:nth-child(2) .hero-score-bar-fill {
    background: #2ecc71
}

.hero-score-row:nth-child(3) .hero-score-bar-fill {
    background: var(--clr-gold)
}

.hero-score-row:nth-child(4) .hero-score-bar-fill {
    background: #f39c12
}

.hero-score-row:nth-child(5) .hero-score-bar-fill {
    background: #e67e22
}

.hero-score-count {
    font-size: .82rem;
    font-weight: 600;
    color: var(--clr-text);
    min-width: 28px;
    text-align: right
}

.hero-total-count {
    margin-top: .75rem;
    font-size: .82rem;
    color: var(--clr-text-muted);
    border-top: 1px solid var(--clr-border);
    padding-top: .75rem
}

.hero-params-block {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    flex: 1;
    min-width: 220px;
    box-shadow: var(--shadow-card)
}

.hero-params-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    color: var(--clr-text-muted);
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.hero-params-overall {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--clr-border)
}

.hero-params-stars {
    display: flex;
    gap: 2px
}

.hero-params-score-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--clr-gold)
}

.hero-params-list {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.hero-param-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem
}

.hero-param-item > span:first-child {
    min-width: 120px;
    color: var(--clr-text-muted)
}

.hero-param-bar-wrap {
    flex: 1;
    height: 6px;
    background: var(--clr-surface2);
    border-radius: 3px;
    overflow: hidden
}

.hero-param-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--clr-gold)
}

.hero-param-val {
    font-weight: 700;
    font-size: .8rem;
    color: var(--clr-text);
    min-width: 28px;
    text-align: right
}

.rv-star {
    flex-shrink: 0
}

.rv-star--on path {
    fill: var(--clr-gold);
    stroke: var(--clr-gold)
}

.rv-star--half path {
    fill: url(#half-gradient);
    stroke: var(--clr-gold)
}

.rv-star--off path {
    fill: none;
    stroke: var(--clr-text-muted)
}

.section-leave-review {
    padding: 3rem 0;
    background: var(--clr-bg)
}

.bonus-banner-mini {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--clr-surface);
    border: 1px solid var(--clr-gold);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 24px rgba(232, 185, 74, .1)
}

.bonus-banner-mini-content {
    display: flex;
    align-items: center;
    gap: 1rem
}

.bonus-banner-icon {
    color: var(--clr-gold);
    flex-shrink: 0
}

.bonus-banner-mini strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--clr-gold)
}

.bonus-banner-mini p {
    font-size: .85rem;
    color: var(--clr-text-muted);
    margin-top: .15rem
}

.review-form-block {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card)
}

.review-form-block .section-title {
    margin-bottom: 1.5rem
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1.25rem
}

.form-field label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .04em
}

.form-field input, .form-field textarea {
    background: var(--clr-surface2);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: 'Open Sans', sans-serif;
    font-size: .93rem;
    padding: .65rem 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%
}

.form-field input:focus, .form-field textarea:focus {
    border-color: var(--clr-gold);
    box-shadow: 0 0 0 3px rgba(232, 185, 74, .12)
}

.form-field textarea {
    resize: vertical;
    min-height: 120px
}

.review-form-fields {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 1rem
}

.rf-ratings-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
    gap: .75rem;
    background: var(--clr-surface2);
    border-radius: var(--radius-sm);
    padding: 1rem;
    border: 1.5px solid var(--clr-border)
}

.rf-rating-item {
    display: flex;
    flex-direction: column;
    gap: .3rem
}

.rf-rating-item > span {
    font-size: .8rem;
    color: var(--clr-text-muted)
}

.rf-stars {
    display: flex;
    gap: 2px
}

.rf-star {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--clr-border);
    transition: color var(--transition), transform var(--transition);
    padding: 0 1px;
    line-height: 1
}

.rf-star:hover, .rf-star.is-active {
    color: var(--clr-gold);
    transform: scale(1.15)
}

.review-form-success {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem
}

.review-form-success svg {
    color: var(--clr-success)
}

.review-form-success h3 {
    font-size: 1.2rem;
    color: var(--clr-success)
}

.section-reviews {
    padding: 3rem 0;
    background: var(--clr-surface)
}

.rv-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.rv-card {
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition), transform var(--transition)
}

.rv-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .55);
    transform: translateY(-2px)
}

.rv-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem
}

.rv-author-block {
    display: flex;
    align-items: center;
    gap: .75rem
}

.rv-avatar-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--clr-border);
    flex-shrink: 0
}

.rv-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.rv-author-meta {
    display: flex;
    flex-direction: column;
    gap: .2rem
}

.rv-author-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--clr-text)
}

.rv-country {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .8rem;
    color: var(--clr-text-muted)
}

.rv-date {
    font-size: .78rem;
    color: var(--clr-text-muted)
}

.rv-rating-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .3rem
}

.rv-stars-row {
    display: flex;
    align-items: center;
    gap: 3px
}

.rv-rating-num {
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    margin-left: .25rem
}

.rv-details-toggle {
    background: none;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    font-size: .75rem;
    padding: .2rem .6rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition)
}

.rv-details-toggle:hover {
    color: var(--clr-gold);
    border-color: var(--clr-gold)
}

.rv-rating-details {
    margin-top: .5rem;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: .75rem;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.rv-param-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem
}

.rv-param-row > span:first-child {
    min-width: 100px;
    color: var(--clr-text-muted)
}

.rv-param-bar {
    flex: 1;
    height: 5px;
    background: var(--clr-surface2);
    border-radius: 3px;
    overflow: hidden
}

.rv-param-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--clr-gold)
}

.rv-param-val {
    font-weight: 600;
    min-width: 24px;
    text-align: right;
    color: var(--clr-text)
}

.rv-source-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    color: var(--clr-text-muted);
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    padding: .2rem .6rem;
    border-radius: 2rem;
    margin-bottom: .6rem
}

.rv-source-link {
    color: var(--clr-gold);
    font-weight: 600
}

.rv-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: .6rem
}

.rv-body {
    margin-bottom: 1rem
}

.rv-text {
    color: var(--clr-text);
    font-size: .9rem;
    line-height: 1.65
}

.rv-text--collapsed {
    max-height: 5.4em;
    overflow: hidden;
    position: relative
}

.rv-text--collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2em;
    background: linear-gradient(transparent, var(--clr-surface2))
}

.rv-text--expanded {
    max-height: none
}

.rv-text--expanded::after {
    display: none
}

.rv-expand-btn {
    background: none;
    border: none;
    color: var(--clr-gold);
    font-size: .83rem;
    font-weight: 600;
    cursor: pointer;
    padding: .2rem 0;
    margin-top: .3rem;
    display: inline-block
}

.rv-expand-btn:hover {
    color: var(--clr-gold-dark)
}

.rv-pros-cons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem
}

.rv-pros, .rv-cons {
    flex: 1;
    min-width: 160px;
    background: var(--clr-surface);
    border-radius: var(--radius-sm);
    padding: .75rem 1rem;
    border: 1px solid var(--clr-border)
}

.rv-pros-title {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--clr-success);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .5rem
}

.rv-pros-title svg {
    stroke: var(--clr-success)
}

.rv-cons-title {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--clr-danger);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .5rem
}

.rv-cons-title svg {
    stroke: var(--clr-danger)
}

.rv-pros-list li, .rv-cons-list li {
    font-size: .83rem;
    color: var(--clr-text);
    padding: .25rem 0;
    border-bottom: 1px solid var(--clr-border);
    list-style: none
}

.rv-pros-list li:last-child, .rv-cons-list li:last-child {
    border-bottom: none
}

.rv-pros-list li::before {
    content: '+ ';
    color: var(--clr-success);
    font-weight: 700
}

.rv-cons-list li::before {
    content: '− ';
    color: var(--clr-danger);
    font-weight: 700
}

.rv-media-wrap {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem
}

.rv-media-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--clr-border)
}

.rv-media-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    display: block
}

.rv-media-item iframe {
    width: 200px;
    height: 120px;
    border: none
}

.rv-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: .75rem;
    border-top: 1px solid var(--clr-border)
}

.rv-votes {
    display: flex;
    gap: .5rem
}

.rv-vote-btn {
    display: flex;
    align-items: center;
    gap: .35rem;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    font-size: .83rem;
    padding: .3rem .7rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition), background var(--transition)
}

.rv-vote-btn:hover {
    background: var(--clr-surface2);
    color: var(--clr-text);
    border-color: var(--clr-text-muted)
}

.rv-like-btn.voted {
    color: var(--clr-success);
    border-color: var(--clr-success);
    background: rgba(39, 174, 96, .1)
}

.rv-dislike-btn.voted {
    color: var(--clr-danger);
    border-color: var(--clr-danger);
    background: rgba(231, 76, 60, .1)
}

.rv-reply-toggle {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: .83rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem 0;
    transition: color var(--transition)
}

.rv-reply-toggle:hover {
    color: var(--clr-gold)
}

.rv-reply-form {
    margin-top: 1rem;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.rv-reply-textarea {
    background: var(--clr-surface2);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: 'Open Sans', sans-serif;
    font-size: .88rem;
    padding: .6rem .9rem;
    outline: none;
    resize: vertical;
    width: 100%;
    transition: border-color var(--transition)
}

.rv-reply-textarea:focus {
    border-color: var(--clr-gold)
}

.rv-reply-btns {
    display: flex;
    gap: .5rem
}

.section-comparison {
    padding: 3rem 0;
    background: var(--clr-bg)
}

.comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-card)
}

.comparison-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: var(--clr-surface)
}

.comparison-table th {
    background: var(--clr-surface2);
    color: var(--clr-text);
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    padding: .9rem 1.1rem;
    text-align: left;
    border-bottom: 2px solid var(--clr-border)
}

.comparison-table th:first-child {
    color: var(--clr-text-muted)
}

.comparison-table td {
    padding: .8rem 1.1rem;
    font-size: .88rem;
    color: var(--clr-text);
    border-bottom: 1px solid var(--clr-border);
    vertical-align: middle
}

.comparison-table tr:last-child td {
    border-bottom: none
}

.comparison-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02)
}

.comparison-table td:nth-child(2) {
    background: rgba(192, 57, 43, .06)
}

.highlight-primary {
    color: var(--clr-gold);
    font-size: 1.05rem
}

.section-advantages {
    padding: 3rem 0;
    background: var(--clr-surface)
}

.advantages-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem
}

.advantage-card {
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: border-color var(--transition), box-shadow var(--transition)
}

.advantage-card:hover {
    border-color: var(--clr-gold);
    box-shadow: 0 0 24px rgba(232, 185, 74, .1)
}

.advantage-icon {
    width: 52px;
    height: 52px;
    background: rgba(192, 57, 43, .15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    border: 1px solid rgba(192, 57, 43, .25)
}

.advantage-card:hover .advantage-icon {
    background: rgba(232, 185, 74, .12);
    color: var(--clr-gold);
    border-color: rgba(232, 185, 74, .3)
}

.advantage-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text)
}

.advantage-card p {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.6
}

.section-overview {
    padding: 3rem 0;
    background: var(--clr-bg)
}

.overview-block {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card)
}

.overview-author-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--clr-border)
}

.overview-author-info {
    display: flex;
    align-items: center;
    gap: .85rem
}

.overview-author-avatar {
    width: 44px;
    height: 44px;
    background: var(--clr-surface2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    border: 1px solid var(--clr-border);
    flex-shrink: 0
}

.overview-author-name {
    display: block;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--clr-text)
}

.overview-author-role {
    display: block;
    font-size: .78rem;
    color: var(--clr-text-muted)
}

.overview-author-link {
    display: block;
    font-size: .78rem;
    color: var(--clr-gold);
    margin-top: .15rem
}

.overview-author-date {
    font-size: .78rem;
    color: var(--clr-text-muted)
}

.content-styled h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 1.5rem 0 .6rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid var(--clr-border)
}

.content-styled h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 1.2rem 0 .4rem
}

.content-styled p {
    color: var(--clr-text);
    font-size: .93rem;
    line-height: 1.7;
    margin-bottom: .9rem
}

.content-styled ul, .content-styled ol {
    margin: .5rem 0 .9rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: .3rem
}

.content-styled li {
    font-size: .9rem;
    color: var(--clr-text);
    line-height: 1.6
}

.content-styled strong {
    color: var(--clr-gold)
}

.content-styled table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--clr-border)
}

.content-styled th {
    background: var(--clr-surface2);
    padding: .7rem 1rem;
    text-align: left;
    font-size: .85rem;
    color: var(--clr-text);
    border-bottom: 1px solid var(--clr-border)
}

.content-styled td {
    padding: .7rem 1rem;
    font-size: .88rem;
    color: var(--clr-text);
    border-bottom: 1px solid var(--clr-border)
}

.content-styled tr:last-child td {
    border-bottom: none
}

.section-faq {
    padding: 3rem 0;
    background: var(--clr-surface)
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 1.25rem;
    color: var(--clr-text);
    font-family: 'Montserrat', sans-serif;
    font-size: .93rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition)
}

.faq-question:hover {
    background: rgba(255, 255, 255, .04)
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--clr-text-muted)
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: var(--clr-gold)
}

.faq-answer {
    padding: 0 1.25rem 1rem;
    font-size: .9rem;
    color: var(--clr-text-muted);
    line-height: 1.65
}

.site-footer {
    background: var(--clr-surface);
    border-top: 1px solid var(--clr-border);
    padding: 3rem 0 1.5rem
}

.ftr-inner {
}

.ftr-top {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--clr-border)
}

.ftr-logo-wrap {
    flex: 0 0 200px
}

.ftr-tagline {
    font-size: .8rem;
    color: var(--clr-text-muted);
    margin-top: .5rem
}

.ftr-nav-wrap {
    flex: 1
}

.ftr-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.ftr-nav-list a {
    font-size: .88rem;
    color: var(--clr-text-muted);
    transition: color var(--transition)
}

.ftr-nav-list a:hover {
    color: var(--clr-gold)
}

.ftr-trust-wrap {
    flex: 0 0 220px
}

.ftr-trust-title {
    font-size: .78rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .75rem
}

.ftr-trust-logos {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.ftr-trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--clr-text-muted)
}

.ftr-payments {
    margin-bottom: 1.5rem;
    opacity: .75
}

.ftr-payments img {
    max-height: 40px;
    width: auto
}

.ftr-bottom {
}

.ftr-legal p {
    font-size: .75rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: .4rem
}

.ftr-copyright {
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid var(--clr-border)
}

.ftr-copyright p {
    font-size: .78rem;
    color: var(--clr-text-muted)
}

.widget-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--clr-surface);
    border-top: 1px solid var(--clr-border);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5)
}

.widget-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem 1.5rem;
    max-width: 600px;
    margin: 0 auto
}

.widget-sticky-text {
    display: flex;
    flex-direction: column
}

.widget-sticky-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem;
    color: var(--clr-gold)
}

.widget-sticky-text span {
    font-size: .78rem;
    color: var(--clr-text-muted)
}

.wp-post-image, .entry-content {
    display: none
}

.elementor-widget-container {
    display: none
}

[data-elementor-type] {
    display: none
}

@media (max-width: 900px) {
    .hero-info-row {
        flex-direction: column
    }

    .hero-tile {
        flex: unset;
        width: 100%
    }

    .hero-score-summary, .hero-params-block {
        min-width: unset;
        width: 100%
    }
}

@media (max-width: 768px) {
    .hdr-nav-wrap {
        display: none;
        position: fixed;
        inset: 0;
        top: 60px;
        background: var(--clr-surface);
        z-index: 90;
        padding: 1.5rem;
        flex-direction: column;
        border-top: 1px solid var(--clr-border);
        animation: slideDown .22s ease
    }

    .hdr-nav-wrap.is-open {
        display: flex
    }

    .hdr-nav-list {
        flex-direction: column;
        gap: .5rem
    }

    .hdr-nav-link {
        font-size: 1rem;
        padding: .75rem 1rem
    }

    .hdr-burger {
        display: flex
    }

    .hdr-review-count {
        display: none
    }

    .hero-slider {
        min-height: 320px
    }

    .hero-title {
        font-size: 1.5rem
    }

    .review-form-fields {
        grid-template-columns:1fr
    }

    .advantages-grid {
        grid-template-columns:1fr
    }

    .ftr-top {
        flex-direction: column;
        gap: 1.5rem
    }

    .ftr-trust-wrap {
        flex: unset
    }

    .widget-sticky-inner {
        padding: .65rem 1rem
    }

    .widget-sticky-text strong {
        font-size: .85rem
    }

    .rv-rating-block {
        align-items: flex-start
    }

    .rv-rating-details {
        min-width: unset;
        width: 100%
    }

    .bonus-banner-mini {
        flex-direction: column;
        align-items: flex-start
    }
}

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

    .hero-slider {
        min-height: 260px
    }

    .hero-info-row {
        margin-top: 1rem
    }

    .rv-card {
        padding: 1rem
    }

    .rv-card-head {
        flex-direction: column;
        gap: .75rem
    }

    .rv-rating-block {
        align-items: flex-start
    }

    .rv-pros-cons {
        flex-direction: column
    }

    .comparison-table th, .comparison-table td {
        padding: .65rem .75rem;
        font-size: .8rem
    }

    .section-leave-review, .section-reviews, .section-comparison, .section-advantages, .section-overview, .section-faq {
        padding: 2rem 0
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.d3k9v {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden
}

.ltwercs {
    max-width: 940px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(180deg, rgba(22, 23, 43, 0.96) 0%, rgba(16, 17, 32, 0.96) 100%);
    border: 1px solid #2a2b48;
    border-radius: 24px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
    color: #e8e4f0;
}

.ltwercs h1,
.ltwercs h2,
.ltwercs h3 {
    color: #ffffff;
    line-height: 1.25;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.ltwercs h1 {
    margin: 0 0 24px;
    font-size: 42px;
    letter-spacing: -0.02em;
}

.ltwercs h2 {
    margin: 38px 0 16px;
    padding-bottom: 10px;
    font-size: 28px;
    border-bottom: 1px solid #2a2b48;
}

.ltwercs h3 {
    margin: 30px 0 14px;
    font-size: 22px;
}

.ltwercs p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #d6d1e4;
}

.ltwercs a {
    color: #e8b94a;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease, opacity 0.2s ease;
    word-break: break-word;
}

.ltwercs a:hover {
    color: #f2cd73;
}

.ltwercs h1 + p {
    padding: 18px 20px;
    margin-bottom: 22px;
    background: rgba(232, 185, 74, 0.08);
    border: 1px solid rgba(232, 185, 74, 0.2);
    border-radius: 16px;
    color: #f2eef9;
}

.ltwercs h2 + p,
.ltwercs h3 + p {
    margin-top: 0;
}

.ltwercs p + p {
    margin-top: -4px;
}

.ltwercs ul,
.ltwercs ol {
    margin: 18px 0 24px;
    padding-left: 0;
    display: grid;
    gap: 12px;
}

.ltwercs ul {
    list-style: none;
}

.ltwercs ol {
    list-style: none;
    counter-reset: ltwercs-counter;
}

.ltwercs ul li,
.ltwercs ol li {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #2a2b48;
    border-radius: 14px;
    color: #d6d1e4;
    line-height: 1.65;
}

.ltwercs ul li {
    padding: 14px 16px 14px 44px;
}

.ltwercs ol li {
    padding: 14px 16px 14px 56px;
    counter-increment: ltwercs-counter;
}

.ltwercs ul li::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c0392b 0%, #e8b94a 100%);
    box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.12);
}

.ltwercs ol li::before {
    content: counter(ltwercs-counter);
    position: absolute;
    top: 12px;
    left: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c0392b 0%, #e8b94a 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ltwercs strong,
.ltwercs b {
    color: #ffffff;
    font-weight: 700;
}

.ltwercs em,
.ltwercs i {
    color: #e8b94a;
}

.ltwercs blockquote {
    margin: 20px 0;
    padding: 16px 18px;
    border-left: 4px solid #c0392b;
    background: rgba(192, 57, 43, 0.08);
    border-radius: 0 12px 12px 0;
    color: #cbc5dc;
}

.ltwercs hr {
    margin: 32px 0;
    border: 0;
    border-top: 1px solid #2a2b48;
}

.ltwercs img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 16px;
}

.ltwercs table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
    display: block;
    overflow-x: auto;
    border: 1px solid #2a2b48;
    border-radius: 16px;
    background: transparent;
}

.ltwercs thead,
.ltwercs tbody,
.ltwercs tr {
    width: 100%;
}

.ltwercs th,
.ltwercs td {
    min-width: 160px;
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #2a2b48;
    font-size: 15px;
}

.ltwercs th {
    background: #1e1f38;
    color: #ffffff;
    font-weight: 800;
}

.ltwercs td {
    background: rgba(255, 255, 255, 0.02);
    color: #d6d1e4;
}

.ltwercs tr:last-child td {
    border-bottom: 0;
}

.ltwercs > :first-child {
    margin-top: 0;
}

.ltwercs > :last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .ltwercs {
        margin: 28px auto;
        padding: 32px 24px;
        border-radius: 20px;
    }

    .ltwercs h1 {
        font-size: 34px;
    }

    .ltwercs h2 {
        font-size: 24px;
        margin-top: 32px;
    }

    .ltwercs h3 {
        font-size: 20px;
        margin-top: 26px;
    }

    .ltwercs p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .ltwercs {
        margin: 20px auto;
        padding: 24px 16px;
        border-radius: 18px;
    }

    .ltwercs h1 {
        margin-bottom: 18px;
        font-size: 28px;
    }

    .ltwercs h2 {
        margin: 28px 0 14px;
        padding-bottom: 8px;
        font-size: 22px;
    }

    .ltwercs h3 {
        margin: 22px 0 12px;
        font-size: 18px;
    }

    .ltwercs p {
        margin-bottom: 16px;
        font-size: 15px;
        line-height: 1.75;
    }

    .ltwercs h1 + p {
        padding: 16px;
        border-radius: 14px;
    }

    .ltwercs ul,
    .ltwercs ol {
        gap: 10px;
        margin: 16px 0 20px;
    }

    .ltwercs ul li {
        padding: 12px 14px 12px 38px;
        font-size: 15px;
    }

    .ltwercs ol li {
        padding: 12px 14px 12px 48px;
        font-size: 15px;
    }

    .ltwercs ul li::before {
        top: 18px;
        left: 15px;
        width: 8px;
        height: 8px;
    }

    .ltwercs ol li::before {
        top: 11px;
        left: 12px;
        width: 24px;
        height: 24px;
        font-size: 13px;
    }

    .ltwercs th,
    .ltwercs td {
        min-width: 140px;
        padding: 10px 12px;
        font-size: 14px;
    }
}

@media (max-width: 479px) {
    .ltwercs {
        margin: 16px auto;
        padding: 20px 14px;
        border-radius: 16px;
    }

    .ltwercs h1 {
        font-size: 24px;
    }

    .ltwercs h2 {
        font-size: 20px;
    }

    .ltwercs h3 {
        font-size: 17px;
    }

    .ltwercs p {
        font-size: 14px;
    }

    .ltwercs ul li,
    .ltwercs ol li {
        font-size: 14px;
    }

    .ltwercs ul li {
        padding: 12px 12px 12px 34px;
    }

    .ltwercs ol li {
        padding: 12px 12px 12px 44px;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: #070b1f;
}

.hero-slider {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-slide.hero-slide--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(7, 11, 31, 0.72) 0%, rgba(7, 11, 31, 0.45) 45%, rgba(7, 11, 31, 0.2) 100%);
}

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

.hero-title {
    max-width: 620px;
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    max-width: 520px;
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    margin: 0 0 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(232, 185, 74, 0.14);
    border: 1px solid rgba(232, 185, 74, 0.3);
    color: #e8b94a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.hero-dot.hero-dot--active {
    background: #e8b94a;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 420px;
    }

    .hero-slide-content {
        align-items: flex-end;
        background: linear-gradient(180deg, rgba(7, 11, 31, 0.18) 0%, rgba(7, 11, 31, 0.55) 48%, rgba(7, 11, 31, 0.9) 100%);
    }

    .hero-slide-content .container {
        padding: 28px 16px 56px;
    }

    .hero-title {
        margin-bottom: 10px;
        font-size: clamp(26px, 8vw, 38px);
    }

    .hero-subtitle {
        margin-bottom: 18px;
        font-size: 15px;
    }

    .hero-slider-dots {
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 360px;
    }

    .hero-slide-content .container {
        padding: 24px 14px 52px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }
}