/* =============================================
   BEEHOSTER TV - Main Stylesheet
   ============================================= */

:root {
    --bg-primary: #101010;
    --bg-secondary: #0d0d0d;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --yellow: #ede000;
    --yellow-dark: #c9be00;
    --yellow-glow: rgba(237, 224, 0, 0.15);
    --yellow-dim: rgba(237, 224, 0, 0.12);
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-muted: #6b7280;
    --border: rgba(255, 255, 255, 0.06);
    --border-yellow: rgba(237, 224, 0, 0.4);
    --radius-sm: 6px;
    --radius: 15px;
    --radius-lg: 15px;
    --radius-pill: 50px;
    --transition: 0.3s ease;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.04);
    --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(237, 224, 0, 0.15);
    --font: 'Inter', Arial, Helvetica, sans-serif;
    --font-heading: 'Inter', Arial, Helvetica, sans-serif;
}

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

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

body {
    font-family: var(--font);
    background-color: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.trial-title,
.plan-price,
.stat-number,
.logo-hoster,
.hero-badge,
.tier-label,
.nav-cta {
    font-family: var(--font-heading);
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: var(--font);
    border: none;
    background: none;
}

/* ---- Utilities ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    color: var(--yellow);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-label i {
    margin-right: 6px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-desc {
    color: var(--text-gray);
    max-width: 640px;
    font-size: 15px;
    line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all var(--transition);
    cursor: pointer;
}

.btn i {
    font-size: 13px;
}

.btn-primary {
    background: var(--yellow);
    color: var(--bg-primary);
    border: 2px solid var(--yellow);
}

.btn-primary:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(237, 224, 0, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
}

.btn-outline:hover {
    background: var(--yellow);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(237, 224, 0, 0.25);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(16, 16, 16, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-menu a:hover {
    color: var(--text-white);
}

.nav-cta {
    background: var(--yellow);
    color: #0a0a0a !important;
    padding: 9px 22px;
    border-radius: var(--radius-pill);
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 0.06em;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--yellow-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(237, 224, 0, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(transparent, var(--bg-primary));
    pointer-events: none;
    z-index: 1;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow-dim);
    border: none;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    margin-bottom: 32px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(237, 224, 0, 0.08);
}

.hero-badge i {
    font-size: 11px;
}

.hero-title {
    font-size: clamp(48px, 9vw, 100px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--text-white);
    margin-bottom: 24px;
}

.hero-subtitle {
    color: var(--text-gray);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

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

.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
}

.hero-stat i {
    color: var(--yellow);
    font-size: 16px;
}

.hero-stat strong {
    color: var(--text-white);
    font-weight: 800;
}

/* =============================================
   FILMS & MOVIE SLIDER
   ============================================= */
.films {
    padding: 100px 0 0;
    background: var(--bg-secondary);
    text-align: center;
    overflow: hidden;
}

.films .section-title {
    margin-bottom: 12px;
}

.film-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    background: transparent;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-btn i {
    font-size: 14px;
}

.tab-btn:hover {
    background: var(--yellow);
    color: var(--bg-primary);
}

.tab-btn.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--bg-primary);
}

/* Movie Slider */
.movie-slider {
    width: 100%;
    overflow: hidden;
    padding: 30px 0 80px;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.movie-slider-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: movieScroll 40s linear infinite;
}

.movie-slider-track:hover {
    animation-play-state: paused;
}

@keyframes movieScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.movie-slider-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 15px;
    padding: 60px 0;
    width: 100vw;
}

.movie-slider-loading i {
    color: var(--yellow);
    font-size: 20px;
}

.movie-card {
    flex-shrink: 0;
    width: calc((100vw - 6 * 16px) / 5);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid transparent;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    cursor: pointer;
}

.movie-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-hover);
}

.movie-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
}

.movie-poster::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    pointer-events: none;
}

.movie-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: var(--yellow);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.movie-rating i {
    font-size: 10px;
}

.movie-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 14px;
    z-index: 2;
}

.movie-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* =============================================
   CHANNELS STRIP
   ============================================= */
.channels {
    background: var(--bg-secondary);
    padding: 40px 0;
    overflow: hidden;
}

.channels-wrapper {
    overflow: hidden;
}

.channels-track {
    display: flex;
    overflow: hidden;
}

.channels-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

img.channel-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity var(--transition), filter var(--transition);
    user-select: none;
    flex-shrink: 0;
    filter: none;
}

img.channel-logo:hover {
    opacity: 1;
    filter: none;
}

/* =============================================
   PRICING (bh-pricing)
   ============================================= */
.bh-pricing-section .bh-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    overflow-x: hidden;
}

.bh-pricing-section {
    padding: 100px 0;
    background: var(--bg-primary);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.bh-pricing-section .bh-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bh-pricing-section .bh-section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bh-pricing-section .bh-pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.bh-pricing-section .bh-tab-btn {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 2px solid var(--yellow);
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--yellow);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font);
}

.bh-pricing-section .bh-tab-btn:hover {
    background: var(--yellow);
    color: var(--bg-primary);
}

.bh-pricing-section .bh-tab-btn.active {
    background: var(--yellow);
    color: var(--bg-primary);
}

.bh-pricing-section .bh-pricing-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    align-items: stretch;
}

.bh-pricing-section .bh-pricing-grid.active {
    display: grid;
    animation: bhFadeIn 0.5s ease;
}

.bh-pricing-section .bh-pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.bh-pricing-section .bh-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.bh-pricing-section .bh-pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.bh-pricing-section .bh-pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.bh-pricing-section .bh-pricing-period {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bh-pricing-section .bh-pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
    flex-grow: 1;
}

.bh-pricing-section .bh-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.bh-pricing-section .bh-pricing-features li .bh-check-icon {
    color: #22c55e;
    font-size: 1rem;
    flex-shrink: 0;
}

.bh-pricing-section .bh-pricing-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: auto;
    background: var(--yellow);
    color: var(--bg-primary);
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font);
}

.bh-pricing-section .bh-pricing-btn:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

.bh-pricing-section .bh-payment-section {
    text-align: center;
    margin-top: 1rem;
}

.bh-pricing-section .bh-payment-text {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.bh-pricing-section .bh-payment-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.bh-pricing-section .bh-payment-icons i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.bh-pricing-section .bh-pricing-card {
    animation: bhFadeIn 0.6s ease;
}

.bh-pricing-section .bh-pricing-card:nth-child(2) {
    animation-delay: 0.1s;
}

.bh-pricing-section .bh-pricing-card:nth-child(3) {
    animation-delay: 0.2s;
}

.bh-pricing-section .bh-pricing-card:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes bhFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =============================================
   TRIAL SECTION
   ============================================= */
.trial {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.trial-bg {
    position: absolute;
    inset: 0;
    background: url(../images/beehoster-tv-cover.webp) center/cover no-repeat;
    background-color: #0a0a0a;
    opacity: 0.2;
}

.trial::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg,
            rgba(237, 224, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.85) 100%);
}

.trial-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 90px 0;
}

.trial-content {
    max-width: 720px;
    margin: 0 auto;
}

.trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(237, 224, 0, 0.12);
    border: 1px solid rgba(237, 224, 0, 0.25);
    color: var(--yellow);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 10px 22px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.trial-badge i {
    font-size: 15px;
}

.trial-title {
    font-size: clamp(30px, 4.5vw, 50px);
    font-weight: 900;
    color: #fff;
    margin: 0 auto 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.trial-title span {
    color: var(--yellow);
}

.trial-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 32px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.trial-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trial-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 50px;
}

.trial-feat i {
    color: var(--yellow);
    font-size: 15px;
}

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

.trial-btn-gold,
.trial-btn-silver {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.trial-btn-gold {
    background: var(--yellow);
    color: #000;
    box-shadow: 0 4px 25px rgba(237, 224, 0, 0.3);
}

.trial-btn-gold:hover {
    background: var(--yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(237, 224, 0, 0.4);
}

.trial-btn-silver {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}

.trial-btn-silver:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
    .trial-features {
        gap: 10px;
    }
    .trial-feat {
        font-size: 12px;
        padding: 8px 14px;
    }
    .trial-btn-gold,
    .trial-btn-silver {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* =============================================
   FEATURES
   ============================================= */
.features {
    padding: 100px 0;
    background: var(--bg-primary);
    text-align: center;
}

.features .section-title {
    margin-bottom: 60px;
}

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

.feature-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid transparent;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.feature-icon {
    color: var(--yellow);
    margin-bottom: 22px;
    font-size: 36px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow-dim);
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* =============================================
   STATS
   ============================================= */
.stats {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    padding: 48px 40px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid transparent;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.stat-icon {
    color: var(--yellow);
    margin-bottom: 20px;
    font-size: 40px;
}

.stat-number {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    letter-spacing: 0.05em;
}

/* =============================================
   SETUP GUIDE
   ============================================= */
.setup {
    padding: 100px 0;
    background: var(--bg-primary);
    text-align: center;
}

.setup .section-desc {
    margin: 0 auto 50px;
    text-align: center;
}

.setup strong {
    color: var(--yellow);
    font-weight: 600;
}

.setup-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.setup-step {
    text-align: center;
    max-width: 220px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--yellow);
    color: var(--bg-primary);
    font-size: 13px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-card);
    border: 1px solid transparent;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--yellow);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.setup-step:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.setup-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.setup-step p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* =============================================
   GUARANTEE
   ============================================= */
.guarantee-enhanced {
    padding: 60px 0;
}

.guarantee-card {
    background: linear-gradient(135deg, rgba(237,224,0,0.04) 0%, rgba(237,224,0,0.01) 100%);
    border: 1px solid rgba(237,224,0,0.15);
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(237,224,0,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.guarantee-badge {
    flex-shrink: 0;
}

.guarantee-shield {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(237,224,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 36px;
    color: var(--yellow);
}

.guarantee-days {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--yellow);
    color: #000;
    font-size: 13px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(237,224,0,0.3);
}

.guarantee-text {
    flex: 1;
    min-width: 240px;
}

.guarantee-text h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-white);
}

.guarantee-text h2 span {
    color: var(--yellow);
}

.guarantee-text p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.guarantee-features {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
    white-space: nowrap;
}

.guarantee-feature i {
    color: #22c55e;
    font-size: 14px;
}

.guarantee-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
    margin-top: 4px;
}

.guarantee-link:hover {
    gap: 10px;
}

@media (max-width: 900px) {
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
    }
    .guarantee-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .guarantee-text {
        min-width: auto;
    }
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews {
    padding: 100px 0;
    background: var(--bg-primary);
    text-align: center;
}

.reviews .section-desc {
    margin: 0 auto 56px;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 60px;
    font-weight: 900;
    color: var(--yellow-dim);
    line-height: 1;
    font-family: Georgia, serif;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.review-stars {
    color: var(--yellow);
    font-size: 14px;
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.review-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: normal;
}

.review-author {
    font-size: 13px;
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: 0.06em;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    padding: 100px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.faq-list {
    max-width: 760px;
    margin: 56px auto 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 0 24px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.faq-item:hover {
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-hover);
}

.faq-item.open {
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-hover);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    text-align: left;
    transition: color var(--transition);
    background: none;
    border: none;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--yellow);
}

.faq-icon {
    font-size: 14px;
    color: var(--yellow);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.35s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    padding: 100px 0;
    background: var(--bg-primary);
    text-align: center;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.contact-box {
    background: var(--bg-card);
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.contact-icon {
    color: var(--yellow);
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.contact-email {
    font-size: 15px;
    color: var(--yellow);
    font-weight: 500;
    transition: color var(--transition);
}

a.contact-email:hover {
    color: var(--text-white);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #0a0a0a;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 340px;
}

.footer-cols {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--yellow);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-gray);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}

/* =============================================
   FLOATING BUTTON
   ============================================= */
.float-btn {
    position: fixed;
    bottom: 28px;
    right: 25px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all var(--transition);
    text-decoration: none;
}

.float-btn.telegram-btn {
    background: #0088cc;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
}

.float-btn.telegram-btn:hover {
    background: #006daa;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 136, 204, 0.5);
}

/* =============================================
   SCROLL 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 - TABLET
   ============================================= */
@media (max-width: 1024px) {
    .bh-pricing-section .bh-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

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

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

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

    .movie-card {
        width: calc((100vw - 5 * 16px) / 4);
    }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 768px) {

    /* Nav — dropdown from top */
    .navbar {
        padding: 14px 0;
    }

    .navbar.scrolled {
        padding: 14px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(14, 14, 14, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        z-index: 999;
    }

    .nav-menu.open {
        max-height: 400px;
        padding: 12px 20px 20px;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: var(--text-white);
        padding: 14px 4px;
    }

    .nav-menu a.active {
        color: var(--yellow);
    }

    /* Hero */
    .hero {
        min-height: 90svh;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -0.01em;
    }

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

    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        max-width: 280px;
        margin: 0 auto 40px;
    }

    .hero-btns .btn {
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 12px 20px;
        font-size: 12px;
    }

    /* Section paddings */
    .bh-pricing-section {
        padding: 52px 0;
    }

    .features {
        padding: 52px 0;
    }

    .reviews {
        padding: 52px 0;
    }

    .faq {
        padding: 52px 0;
    }

    .trial {
        padding: 52px 0;
    }

    .guarantee-enhanced {
        padding: 40px 0;
    }

    .setup {
        padding: 52px 0;
    }

    /* Pricing */
    .bh-pricing-section .bh-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 16px;
    }

    .bh-pricing-section .bh-pricing-card {
        padding: 1.5rem;
    }

    .bh-pricing-section .bh-pricing-tabs {
        flex-direction: row;
        width: calc(100% - 32px);
        margin: 0 16px 2rem;
        padding: 0;
    }

    .bh-pricing-section .bh-tab-btn {
        flex: 1;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-cards {
        grid-template-columns: 1fr;
    }

    /* Setup */
    .setup-steps {
        flex-direction: column;
        align-items: center;
    }

    /* Footer */
    .footer-cols {
        flex-direction: column;
        gap: 32px;
    }

    .footer {
        padding: 48px 0 24px;
    }

    /* Telegram float btn */
    .float-btn {
        right: 20px;
        bottom: 20px;
    }

    /* Movie cards - 3 on mobile */
    .movie-card {
        width: calc((100vw - 4 * 14px) / 3);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-stat {
        font-size: 12px;
    }

    .movie-card {
        width: calc((100vw - 4 * 12px) / 3);
    }
}