/* ============================================================
   HOME — Vanish-inspired sections
   ============================================================ */

.hero-badge,
.h-hero-badge {
    display: none !important;
}

.hero-cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    background: linear-gradient(180deg, #422626 0%, #2e1c1c 100%);
    border: 1px solid rgba(100, 45, 45, 0.45);
    color: #eceaea;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.hero-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    background: linear-gradient(180deg, #503030 0%, #382424 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.hero-btn-ghost:hover {
    color: #c9a0a0;
    border-color: rgba(100, 45, 45, 0.35);
    background: rgba(60, 30, 30, 0.25);
}

/* Stats strip */
.stats-strip {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.stat-box {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    text-align: center;
    padding: 22px 16px;
    background: #141111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    transition: border-color 0.3s;
}

.stat-box:hover {
    border-color: rgba(100, 45, 45, 0.35);
    box-shadow: none;
}

.stat-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #eceaea;
    line-height: 1.1;
}

.stat-lbl {
    display: block;
    margin-top: 6px;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Features (Vanish-style) */
.features-section {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.features-header {
    text-align: center;
    margin-bottom: 32px;
}

.features-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.3rem, 3.5vw, 1.75rem);
    color: #fff;
    margin: 0 0 8px;
}

.features-header p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.88rem;
    margin: 0;
}

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

@media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
    background: #141111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 26px 22px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(100, 45, 45, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.feature-tag.security {
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.feature-tag.stability {
    background: rgba(59, 130, 246, 0.12);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.feature-tag.referral {
    background: #1e1818;
    color: #a06060;
    border: 1px solid rgba(100, 45, 45, 0.3);
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    margin: 0 0 10px;
}

.feature-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.55;
    margin: 0 0 16px;
}

.feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.feature-chips span {
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Product cards row */
.products-section {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.products-header {
    text-align: center;
    margin-bottom: 28px;
}

.products-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: #fff;
    margin: 0 0 6px;
}

.products-header p {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.85rem;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 640px;
    margin: 0 auto;
}

.products-grid-plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 960px;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffd4d4;
    background: rgba(139, 64, 64, 0.35);
    border: 1px solid rgba(232, 180, 180, 0.25);
}

@media (max-width: 768px) {
    .products-grid { grid-template-columns: 1fr; }
    .products-grid-plans { grid-template-columns: 1fr; }
}

.product-card {
    background: linear-gradient(160deg, rgba(20, 14, 14, 0.9) 0%, rgba(14, 10, 10, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    position: relative;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(160, 60, 60, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}

.product-card.featured {
    border-color: rgba(160, 60, 60, 0.45);
    border-left: 3px solid #a05050;
    box-shadow: 0 0 30px rgba(160, 50, 50, 0.12);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(160, 60, 60, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(160, 50, 50, 0.1);
}

.product-card:hover::before {
    opacity: 1;
}

.product-tag {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    background: #1e1818;
    border: 1px solid rgba(100, 45, 45, 0.3);
    color: #a06060;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.product-tag-accent {
    background: #221818;
    border-color: rgba(100, 45, 45, 0.35);
    color: #b08080;
}

.product-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 14px;
    line-height: 1.4;
}

.product-btn {
    width: 100%;
    padding: 12px 16px !important;
    font-size: 0.78rem !important;
}

.product-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    margin: 0 0 4px;
}

.product-type {
    display: none;
}

.product-link { display: none; }

.product-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}

.product-price strong {
    color: #c9a0a0;
    font-size: 1.1rem;
}

.product-note {
    margin: -8px 0 16px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.product-link {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}

.product-link:hover {
    background: #2a1c1c;
    border-color: rgba(100, 45, 45, 0.35);
    color: #eceaea;
}

/* FAQ — blood theme accordion with wow open effect */
.seo-intro {
    padding-top: 0;
}

.seo-intro-text {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
    color: rgba(236, 230, 230, 0.72);
}

.seo-intro-text a {
    color: #e8a0a0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo-intro-text strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

.faq-block {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    perspective: 1200px;
}

.faq-block .faq-item {
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    transition:
        border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center top;
}

.faq-block .faq-item.open {
    border-color: rgba(201, 120, 120, 0.55);
    box-shadow:
        0 0 0 1px rgba(139, 64, 64, 0.25),
        0 16px 48px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(139, 64, 64, 0.12);
    transform: scale(1.018) translateY(-2px);
}

.faq-block .faq-item.faq-just-opened {
    animation: faqCardPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes faqCardPop {
    0% { transform: scale(0.985); }
    45% { transform: scale(1.025) translateY(-3px); }
    100% { transform: scale(1.018) translateY(-2px); }
}

.faq-ripple {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(201, 120, 120, 0.35) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    animation: faqRipple 0.65s ease-out forwards;
    z-index: 0;
}

@keyframes faqRipple {
    to {
        transform: translate(-50%, -50%) scale(2.8);
        opacity: 0;
    }
}

.faq-q {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    color: #f4f4f5;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background 0.3s;
    position: relative;
    z-index: 1;
}

.faq-q:hover {
    background: rgba(40, 22, 22, 0.45);
}

.faq-item.open .faq-q {
    background: linear-gradient(90deg, rgba(139, 64, 64, 0.18) 0%, transparent 70%);
}

.faq-q-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #1e1818;
    border: 1px solid rgba(100, 45, 45, 0.35);
    color: #c97878;
    font-size: 0.9rem;
    transition:
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.35s,
        box-shadow 0.35s,
        border-color 0.35s,
        color 0.35s;
}

.faq-item.open .faq-q-icon {
    background: linear-gradient(135deg, rgba(139, 64, 64, 0.55) 0%, rgba(80, 35, 35, 0.65) 100%);
    border-color: rgba(232, 180, 180, 0.45);
    color: #ffe0e0;
    box-shadow: 0 0 24px rgba(139, 64, 64, 0.45);
    animation: faqIconBurst 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes faqIconBurst {
    0% { transform: scale(1) rotate(0deg); }
    40% { transform: scale(1.22) rotate(-8deg); }
    70% { transform: scale(0.95) rotate(4deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.faq-q-text {
    flex: 1;
    line-height: 1.35;
    transition: color 0.3s;
}

.faq-item.open .faq-q-text {
    color: #fff;
}

.faq-chevron {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(201, 160, 160, 0.75);
    font-size: 0.72rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s, color 0.3s;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    background: rgba(139, 64, 64, 0.25);
    color: #ffd4d4;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    z-index: 1;
}

.faq-a-inner {
    padding: 0 20px 18px 74px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 0;
    padding-top: 14px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease 0.08s, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

.faq-item.open .faq-a {
    max-height: 2000px;
}

@media (max-width: 768px) {
    .faq-item.open .faq-a {
        max-height: none;
        overflow: visible;
    }
}

.faq-item.open .faq-a-inner {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .faq-q {
        padding: 16px 14px;
        font-size: 0.84rem;
        gap: 10px;
    }
    .faq-q-icon {
        width: 32px;
        height: 32px;
        font-size: 0.78rem;
    }
    .faq-a-inner {
        padding: 12px 14px 16px 14px;
        font-size: 0.8rem;
    }
}

/* ===== HOW IT WORKS (visual pipeline) ===== */
.how_section {
    max-width: 1100px;
    margin: 72px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.how_inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.how_title {
    font-family: var(--font-display, 'Montserrat', sans-serif);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    margin: 0 0 12px;
    color: #fff;
    letter-spacing: -0.03em;
}

.how_subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.42);
    margin: 0 0 48px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.how_steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
    position: relative;
}

.how_step_card {
    position: relative;
    padding: 30px 24px 26px;
    background: linear-gradient(160deg, rgba(22, 16, 16, 0.9) 0%, rgba(14, 10, 10, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    text-align: center;
    overflow: hidden;
    transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.how_step_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(160, 60, 60, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}

.how_step_card:hover {
    border-color: rgba(160, 60, 60, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(160, 50, 50, 0.08);
    transform: translateY(-5px);
}

.how_step_card:hover::before { opacity: 1; }

.how_step_watermark {
    position: absolute;
    top: -8px;
    right: 12px;
    font-family: var(--font-display, 'Montserrat', sans-serif);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(80, 40, 40, 0.08);
    pointer-events: none;
    user-select: none;
}

.how_step_icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #1e1818;
    border: 1px solid rgba(100, 45, 45, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a06060;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
    box-shadow: none;
}

.how_step_num {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #8b4040;
    margin-bottom: 8px;
    font-family: var(--font-display, 'Montserrat', sans-serif);
    position: relative;
    z-index: 1;
}

.how_step_title {
    font-family: var(--font-display, 'Montserrat', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.how_step_desc {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.38);
    margin: 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
}

.how_arrow {
    flex-shrink: 0;
    color: rgba(107, 48, 48, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    align-self: center;
}

.how_arrow svg path { fill: none; }

@media (max-width: 1100px) {
    .how_steps {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 360px;
        margin: 0 auto;
    }
    .how_arrow { transform: rotate(90deg); padding: 4px 0; }
}

@media (max-width: 680px) {
    .how_section { margin-top: 56px; padding: 0 16px; }
    .how_step_watermark { font-size: 3.5rem; }
}

/* ===== VIDEO ===== */
.video-section {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.video-play-btn {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: #000;
    cursor: pointer;
    display: block;
}

.video-play-btn img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.96;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 72px;
    height: 52px;
    background: #3a2424;
    border: 1px solid rgba(100, 45, 45, 0.45);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eceaea;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s;
    pointer-events: none;
}

.video-play-btn:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===== PRICING SLIDER ===== */
.pricing-section {
    max-width: 520px;
    margin: 0 auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.pricing-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    color: #fff;
    margin-bottom: 4px;
}

.pricing-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.sub-card {
    background: #141111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 32px 24px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    animation: cardAppear 0.5s ease-out;
}

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

.sub-card-deco {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: none;
}

.sub-card-title {
    font-weight: 800;
    font-size: 1.4rem;
    color: #eceaea;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 3;
}

.sub-card-subtitle {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 24px;
    font-weight: 500;
    position: relative;
    z-index: 3;
}

.slider-container {
    margin-bottom: 24px;
    position: relative;
    z-index: 3;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.slider-labels span {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
    padding: 4px 8px;
    border-radius: 8px;
    cursor: pointer;
}

.slider-labels span.active {
    color: #c9a0a0;
    background: #2a1c1c;
}

.pricing-section input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    outline: none;
}

.pricing-section input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #6b3030;
    cursor: pointer;
    box-shadow: none;
    border: 2px solid rgba(255, 255, 255, 0.12);
    margin-top: -8px;
    transition: transform 0.2s;
}

.pricing-section input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }

.pricing-section input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #6b3030;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.sub-values {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 3;
}

.sub-days-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
}

.sub-days-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.15);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.sub-price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #c9a0a0;
    line-height: 1;
}

.sub-price-currency {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(160, 96, 96, 0.65);
}

.sub-btn {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(100, 45, 45, 0.45);
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #eceaea;
    background: linear-gradient(180deg, #422626 0%, #2e1c1c 100%);
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.sub-btn::before {
    display: none;
}

.sub-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #503030 0%, #382424 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ===== ABOUT PANEL ===== */
.about-section {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.about-panel {
    background: rgba(14, 14, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
}

.about-toggle {
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background 0.2s;
}

.about-toggle:hover { background: rgba(255, 255, 255, 0.03); }

.about-toggle-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(100, 45, 45, 0.3);
    border-radius: 6px;
    color: #a06060;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.about-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.about-content.open { max-height: 2400px; }

@media (max-width: 768px) {
    .about-content.open {
        max-height: none;
        overflow: visible;
    }
}

.about-body {
    padding: 0 22px 22px;
    color: rgba(255, 255, 255, 0.52);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.7;
}

.about-body strong { color: #e4e6f0; }

.about-body p { margin: 0 0 12px; }

.about-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.about-actions .h-btn { flex: 1; min-width: 140px; }

/* ===== Social / support ===== */
.social-section {
    margin-top: 8px;
    position: relative;
    z-index: 2;
    isolation: isolate;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    text-decoration: none !important;
    color: inherit;
    position: relative;
    z-index: 1;
    isolation: isolate;
    overflow: hidden;
    min-height: 78px;
    background: linear-gradient(160deg, rgba(28, 16, 16, 0.92), rgba(14, 10, 10, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.25s ease,
                box-shadow 0.25s ease;
}

.social-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(248, 113, 113, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.social-card:hover {
    transform: translateY(-4px);
    border-color: rgba(248, 113, 113, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 28px rgba(185, 28, 28, 0.14);
}

.social-card:hover::before {
    opacity: 1;
}

.social-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 1;
}

.social-discord .social-card-icon { color: #8ea1ef; background: rgba(114, 137, 218, 0.14); }
.social-youtube .social-card-icon { color: #ff6b6b; background: rgba(255, 0, 0, 0.12); }
.social-telegram .social-card-icon { color: #38bdf8; background: rgba(56, 189, 248, 0.12); }
.social-vk .social-card-icon { color: #4c8cff; background: rgba(76, 140, 255, 0.12); }
.social-email .social-card-icon { color: #f0a0a0; background: rgba(240, 160, 160, 0.1); }
.social-site .social-card-icon { color: #fca5a5; background: rgba(185, 28, 28, 0.15); }

.social-card-body {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.social-card-body strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.social-card-body em {
    display: block;
    margin-top: 3px;
    font-style: normal;
    font-size: 0.75rem;
    color: rgba(210, 200, 200, 0.55);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-card-go {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    transition: transform 0.25s ease, color 0.25s ease;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.social-card:hover .social-card-go {
    color: #f87171;
    transform: translateX(3px);
}

.social-seo-note {
    max-width: 640px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(210, 200, 200, 0.45);
    line-height: 1.5;
    position: relative;
    z-index: 0;
    clear: both;
}

@media (max-width: 640px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
    .social-card-body em {
        white-space: normal;
    }
}

.social-seo-note {
    max-width: 640px;
    margin: 18px auto 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(210, 200, 200, 0.45);
    line-height: 1.5;
}

.social-seo-note a {
    color: #f0a0a0;
    text-decoration: none;
}

.social-seo-note a:hover { text-decoration: underline; }

.social-row-compact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    margin: 0 auto 48px;
}

.social-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: 0.78rem;
    font-weight: 600;
    color: #f5f0f0;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.social-chip:hover {
    border-color: rgba(248, 113, 113, 0.45);
    background: rgba(127, 29, 29, 0.35);
    transform: translateY(-1px);
    color: #fff;
}

.social-chip i { font-size: 0.95rem; }
.social-chip.social-discord i { color: #8ea1ef; }
.social-chip.social-youtube i { color: #ff6b6b; }
.social-chip.social-telegram i { color: #7dd3fc; }
.social-chip.social-vk i { color: #7aa2ff; }

.h-bento-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #f0a0a0;
    text-decoration: none;
}

.h-bento-link:hover { color: #fff; }

/* ===== CTA ===== */
.cta-section {
    text-align: center;
    padding: 52px 36px 56px;
    max-width: 740px;
    margin: 48px auto 64px;
    position: relative;
    z-index: 3;
    border-radius: 28px;
    background: linear-gradient(155deg, rgba(48, 18, 18, 0.97) 0%, rgba(16, 8, 8, 0.99) 100%);
    border: 1px solid rgba(201, 120, 120, 0.38);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 56px rgba(139, 64, 64, 0.16);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(139, 64, 64, 0.26), transparent 58%);
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    left: 50%;
    top: -80px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(225, 60, 60, 0.35), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    animation: ctaPulse 4.5s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.9; transform: translateX(-50%) scale(1.12); }
}

.cta-section .h-eyebrow {
    position: relative;
}

.cta-section .h-title {
    position: relative;
    color: #fff;
    margin-bottom: 10px;
}

.cta-section .h-subtitle,
.cta-section .cta-lead {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 22px !important;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .social-row-compact {
    position: relative;
    justify-content: center;
    margin-bottom: 8px;
}

.cta-section .h-btn {
    position: relative;
    margin-top: 18px;
}

.h-btn-glow {
    box-shadow: 0 10px 32px rgba(127, 29, 29, 0.45), 0 0 0 1px rgba(248, 113, 113, 0.18);
    animation: btnGlow 2.8s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 10px 32px rgba(127, 29, 29, 0.4), 0 0 0 1px rgba(248, 113, 113, 0.15); }
    50% { box-shadow: 0 14px 40px rgba(185, 28, 28, 0.55), 0 0 0 1px rgba(248, 113, 113, 0.35); }
}

.page-home .page-bg {
    transition: transform 0.1s ease-out !important;
    will-change: transform;
}

@media (max-width: 768px) {
    .video-section { padding: 0 14px; }
    .cta-section { padding: 36px 18px 40px; margin: 32px 14px 48px; }
    .faq-block { padding: 0 4px; }
}

/* ── Product promise: customization / features ── */
.pp-section {
    max-width: 1100px;
    margin: 0 auto 56px;
    padding: 0 16px;
}
.pp-custom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.pp-card {
    padding: 20px 18px;
    border-radius: 16px;
    background: linear-gradient(165deg, rgba(40, 18, 18, 0.75), rgba(12, 10, 10, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.pp-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    background: rgba(127, 29, 29, 0.35);
    color: #fecaca;
    font-size: 0.95rem;
}
.pp-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.pp-card p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.58);
}
.pp-feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.pp-feat {
    padding: 16px 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.pp-feat header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #fecaca;
}
.pp-feat header i { font-size: 0.9rem; }
.pp-feat h3 {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}
.pp-feat ul {
    margin: 0;
    padding: 0 0 0 14px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    line-height: 1.55;
}
.pp-feat li { margin-bottom: 3px; }
.pp-feat.is-wide { grid-column: span 2; }
.pp-feat-lead {
    margin: 0 0 8px;
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.48);
}
.pp-plat-block {
    margin: 0 auto 28px;
    max-width: 760px;
}
.pp-plat-block .plat-imgui { max-width: none; }
.pp-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.pp-why {
    padding: 18px 16px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.pp-why-n {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #fecaca;
    margin-bottom: 8px;
}
.pp-why h3 {
    margin: 0 0 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
}
.pp-why p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.58);
}
.pp-shop-cta {
    text-align: center;
    margin: 22px 0 0;
}
.pp-shop-cta .h-btn {
    display: inline-flex;
}
@media (max-width: 980px) {
    .pp-custom-grid,
    .pp-feat-grid { grid-template-columns: repeat(2, 1fr); }
    .pp-why-grid { grid-template-columns: repeat(2, 1fr); }
    .pp-feat.is-wide { grid-column: span 2; }
}
@media (max-width: 560px) {
    .pp-custom-grid,
    .pp-feat-grid { grid-template-columns: 1fr; }
    .pp-why-grid { grid-template-columns: 1fr; }
    .pp-feat.is-wide { grid-column: span 1; }
}

/* YouGame-style status strip */
.st-strip {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 0 16px;
    min-width: 0;
}
.st-strip-inner {
    padding: 18px 20px 16px;
    border-radius: 18px;
    min-width: 0;
    background:
        radial-gradient(ellipse 70% 80% at 0% 0%, rgba(127, 29, 29, 0.38), transparent 55%),
        linear-gradient(165deg, rgba(28, 12, 12, 0.92), rgba(8, 6, 6, 0.95));
    border: 1px solid rgba(248, 113, 113, 0.22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.st-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    min-width: 0;
}
.st-badge {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fecaca;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    white-space: normal;
    line-height: 1.25;
}
.st-badge-ud {
    color: #bbf7d0;
    border-color: rgba(74, 222, 128, 0.35);
    background: rgba(20, 83, 45, 0.35);
}
.st-badge-hvh {
    color: #fde68a;
    border-color: rgba(251, 191, 36, 0.35);
    background: rgba(69, 26, 3, 0.4);
}
.st-official {
    margin: 0 0 12px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(254, 202, 202, 0.78);
}
.st-official i { margin-right: 6px; color: #fca5a5; }
.st-plats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    min-width: 0;
}
.st-plat {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.st-plat strong {
    font-size: 0.88rem;
    color: #fff;
}
.st-plat em {
    font-style: normal;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}
.st-plat.is-live { border-color: rgba(74, 222, 128, 0.22); }
.st-plat.is-down { border-color: rgba(248, 113, 113, 0.45); }
.st-warn {
    margin: 12px 0 0;
    font-size: 0.78rem;
    color: #fca5a5;
}
.pp-compact { margin-bottom: 40px; }
@media (max-width: 720px) {
    .st-plats { grid-template-columns: 1fr; }
    .st-strip { padding: 0 12px; }
    .st-strip-inner { padding: 14px 14px 12px; }
    .st-badge { font-size: 0.68rem; }
    .st-official { font-size: 0.78rem; word-break: break-word; }
}
