:root {
    --bg-color: #08080a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-hover-border: rgba(224, 177, 82, 0.35);
    --text-main: #ffffff;
    --text-muted: #94949e;
    --accent-red: #e0b152;
    --accent-dark: #b98a2f;
    --glow-color: rgba(224, 177, 82, 0.25);
    --font-main: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Background Glows */
.bg-glow {
    position: fixed;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(224, 177, 82, 0.28) 0%, rgba(201, 160, 67, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.65;
    pointer-events: none;
    animation: ambientPulse 8s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.55; }
    50% { transform: scale(1.1) translate(15px, -15px); opacity: 0.75; }
    100% { transform: scale(1) translate(0, 0); opacity: 0.55; }
}

.bg-glow-1 {
    top: -220px;
    left: -200px;
}

.bg-glow-2 {
    bottom: -220px;
    right: -200px;
    animation-delay: -4s;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 800px;
    padding: 12px 30px;
    background: rgba(24, 24, 27, 0.45); /* Even more transparent pill background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 40px;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled {
    background: rgba(24, 24, 27, 0.85);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.logo-wrapper {
    position: relative;
    display: inline-flex;
    height: 44px;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-white {
    opacity: 1;
}

.logo-red {
    display: none;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 14px rgba(224, 177, 82, 0.8));
}

.logo-b {
    color: var(--text-main);
}

.logo-accent {
    color: var(--text-main); /* In screenshot logo text is white */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
}

.nav-user span {
    color: var(--text-main);
}

.nav-user svg {
    width: 20px;
    height: 20px;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.nav-user:hover svg {
    color: var(--accent-red);
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-main);
    font-size: 0.95rem;
}

.btn-login {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--card-border);
}

.btn-login:hover {
    background: var(--card-bg);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 15px var(--glow-color);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px var(--glow-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-main);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Typography Utility — Impeccable Rule: Emphasis from weight, color & size (no gradient text) */
.text-gradient {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: var(--accent-red, #e0b152) !important;
    font-weight: 800;
}

main {
    padding-top: 100px;
}

/* Hero Section Simple Centered */
.hero-simple-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 24px 100px;
    min-height: 55vh;
}

.hero-simple-center .hero-bento-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-simple-center .hero-bento-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-simple-center .hero-bento-subtitle {
    font-size: 1.15rem;
    color: #a1a1aa;
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.hero-simple-center .hero-bento-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-right-showcase {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-clean-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.hero-clean-img:hover {
    transform: translateY(-4px);
}

@media (max-width: 900px) {
    .hero-layout {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .hero-bento-content {
        text-align: center;
        max-width: 100%;
    }
    .hero-bento-buttons {
        justify-content: center;
    }
    .hero-right-showcase {
        justify-content: center;
    }
}

.hero-mockup-container {
    width: 100%;
    max-width: 960px;
    margin-top: 48px;
}

.hero-app-window {
    background: #111114;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.hero-app-window:hover {
    border-color: rgba(224, 177, 82, 0.3);
    transform: translateY(-4px);
}

.app-window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: #16161a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.window-title {
    font-size: 0.8rem;
    color: #71717a;
    font-weight: 500;
}

.app-window-body {
    line-height: 0;
}

.app-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px var(--glow-color);
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-geometric .triangle-spin-smooth {
    width: 100%;
    max-width: 340px;
    animation: smoothSpinTriangle 14s linear infinite;
    filter: drop-shadow(0 0 24px rgba(224, 177, 82, 0.35));
}

.triangle-smooth-poly {
    transition: stroke 0.3s ease;
    stroke-dasharray: 260;
    stroke-dashoffset: 0;
    animation: polyStrokeGlow 4s ease-in-out infinite alternate;
}

@keyframes smoothSpinTriangle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes polyStrokeGlow {
    0% { stroke: #e0b152; filter: drop-shadow(0 0 10px rgba(224, 177, 82, 0.5)); }
    100% { stroke: #e60021; filter: drop-shadow(0 0 20px rgba(224, 177, 82, 0.8)); }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Features */
.features {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 177, 82, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Showcase */
.showcase {
    max-width: 1200px;
    margin: 80px auto 120px auto;
    padding: 0 20px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.showcase-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.showcase-card:hover {
    transform: scale(1.02);
    border-color: rgba(224, 177, 82, 0.3);
    box-shadow: 0 10px 30px rgba(224, 177, 82, 0.1);
}

.showcase-img {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.showcase-card:hover .showcase-img img {
    opacity: 1;
}

.showcase-info {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showcase-info h3 {
    font-size: 1.2rem;
}

.showcase-info .price {
    font-weight: 700;
    color: var(--accent-red);
    font-size: 1.1rem;
}

/* Footer */
.footer-new {
    border-top: 1px solid var(--card-border);
    background: #141417;
    padding: 60px 40px 30px;
    font-size: 0.85rem;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 1;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo .logo-accent {
    color: var(--text-main);
}

.footer-logo-img {
    height: 48px;
    width: auto;
}

.footer-desc {
    color: var(--text-main);
    line-height: 1.6;
    font-size: 0.85rem;
}

.footer-grid {
    display: flex;
    gap: 180px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 24px !important;
    font-size: 0.95rem;
    display: block;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin-top: 8px !important;
}

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul a {
    color: var(--text-main);
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--card-border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-main);
    font-size: 0.75rem;
}

.footer-copyright p {
    margin-bottom: 8px;
}

.footer-designer {
    color: var(--text-main);
}

.footer-dot {
    margin: 0 6px;
    opacity: 0.5;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    color: var(--text-main);
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    fill: transparent;
}

/* Hover States for Social Icons */

/* Discord */
.social-icon.discord-icon:hover {
    color: #5865F2;
    filter: drop-shadow(0 0 8px rgba(88, 101, 242, 0.5));
}
.social-icon.discord-icon:hover svg {
    fill: rgba(88, 101, 242, 0.3);
}

/* Telegram */
.social-icon.telegram-icon:hover {
    color: #2AABEE;
    filter: drop-shadow(0 0 8px rgba(42, 171, 238, 0.5));
}
.social-icon.telegram-icon:hover svg {
    fill: rgba(42, 171, 238, 0.3);
}

/* YouTube */
.social-icon.youtube-icon:hover {
    color: #e0b152;
    filter: drop-shadow(0 0 8px rgba(224, 177, 82, 0.5));
}
.social-icon.youtube-icon:hover svg {
    fill: rgba(224, 177, 82, 0.3);
}
.social-icon.youtube-icon:hover svg polygon {
    fill: #ffffff;
    stroke: #ffffff;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-header {
    text-align: left;
    margin-bottom: 40px;
}

.pricing-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pricing-header h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red) !important;
    box-shadow: 0 15px 35px rgba(224, 177, 82, 0.25) !important;
}

.plan-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.plan-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
}

.plan-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.plan-title-area h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.plan-price-area {
    text-align: right;
}

.plan-per-day {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 700;
}

.dashed-hr {
    border: 0;
    border-top: 2px dashed var(--card-border);
    margin: 20px 0;
}

.plan-features {
    list-style: none;
    margin-bottom: 24px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.plan-features li svg {
    color: var(--text-muted);
}

.btn-plan, .btn-support {
    display: block;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-plan:hover, .btn-support:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 0 25px rgba(224, 177, 82, 0.4);
    transform: translateY(-2px);
}

.btn-plan.outline-red {
    background: transparent;
    border: 1px solid var(--accent-red);
    color: var(--text-main);
}

.btn-plan.outline-red:hover {
    background: rgba(224, 177, 82, 0.1);
}

.hover-icon-btn {
    width: auto;
    padding: 14px 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.hover-icon-btn .btn-icon {
    width: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    margin-left: 0;
}

.hover-icon-btn:hover .btn-icon {
    width: 18px;
    opacity: 1;
    transform: translateX(0);
    margin-left: 8px;
}

/* HWID Card */
.hwid-card {
    display: flex;
    gap: 40px;
    padding: 30px;
}

.hwid-left {
    flex: 1;
}

.hwid-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.plan-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    min-height: 200px;
}

/* Additions Grid */
.additions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Visuals Section */
.visuals-header {
    text-align: center;
    margin: 60px 0 40px;
}

.visuals-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.visuals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.visual-card {
    background: #141417;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.visual-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.visual-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
}

.visual-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.visual-price {
    font-size: 1.2rem;
    color: var(--accent-red);
}

@media (max-width: 768px) {
    .visuals-grid {
        grid-template-columns: 1fr;
    }
    
    .visual-img {
        height: 250px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-header {
    margin-bottom: 40px;
}

.faq-badge {
    background: rgba(224, 177, 82, 0.15);
    color: var(--accent-red);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.faq-header p {
    color: var(--text-muted);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    margin-bottom: 40px;
}

.faq-item {
    background: #141417;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active, .faq-item:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 10px 40px rgba(224, 177, 82, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.faq-q-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-q-left svg {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.faq-item.active .faq-question, .faq-item:hover .faq-question,
.faq-item.active .faq-q-left svg, .faq-item:hover .faq-q-left svg,
.faq-item.active .faq-chevron, .faq-item:hover .faq-chevron {
    color: #fff;
}

.faq-chevron {
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-chevron, .faq-item:hover .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-item:hover .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer p {
    padding: 0 25px 25px 55px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer p, .faq-item:hover .faq-answer p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: 50px;
    }
    
    .nav-links {
        display: none;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0f0f11;
    border-left: 1px solid rgba(255,255,255,0.02);
}

::-webkit-scrollbar-thumb {
    background: #2a2a2e;
    border: 2px solid #0f0f11;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4a4a52;
}

::-webkit-scrollbar-thumb:active {
    background: #ff4d4d;
}

/* =========================================
   CUSTOM RED DASHBOARD REDESIGN
   ========================================= */
.red-dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    background: transparent;
    color: #fff;
    font-family: 'Onest', sans-serif;
}

.red-sidebar {
    width: 280px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.red-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    text-decoration: none;
    color: #fff;
}
.red-sidebar-logo img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(224, 177, 82, 0.3));
}
.red-sidebar-logo span {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.red-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.red-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    color: #888;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.red-nav-item svg {
    stroke: currentColor;
}
.red-nav-item:hover {
    color: #fff;
    background: rgba(224, 177, 82, 0.03);
    border-color: rgba(224, 177, 82, 0.1);
    box-shadow: 0 0 15px rgba(224, 177, 82, 0.05);
}
.red-nav-item.active {
    color: #fff;
    background: rgba(224, 177, 82, 0.12);
    border: 1px solid rgba(224, 177, 82, 0.25);
}
.red-nav-item.active svg {
    stroke: var(--accent-red);
    filter: drop-shadow(0 0 5px var(--accent-red));
}

.red-main-content {
    flex: 1;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.red-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(224, 177, 82, 0.1);
}
.red-header-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}
.red-header-title p {
    color: #888;
    margin: 0;
}
.red-profile-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(10px);
}
.red-profile-badge svg {
    stroke: var(--accent-red);
}

.red-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.red-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.red-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.red-card:hover::before {
    opacity: 1;
}
.red-card:hover {
    box-shadow: 0 10px 30px rgba(224, 177, 82, 0.05);
    border-color: rgba(224, 177, 82, 0.1);
}

.red-card h3 {
    font-size: 1.2rem;
    color: #aaa;
    margin: 0 0 20px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.red-input-group {
    margin-bottom: 20px;
}
.red-input-group label {
    display: block;
    color: #777;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.red-input {
    width: 100%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s;
}
.red-input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(224, 177, 82,0.1);
}

.red-btn {
    background: transparent;
    color: #fff;
    border: 1px solid var(--accent-red);
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.red-btn:hover {
    background: var(--accent-red);
    box-shadow: 0 0 15px rgba(224, 177, 82,0.3);
}

.red-status-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px 0;
}
.red-status-active {
    color: var(--accent-red);
    text-shadow: 0 0 10px rgba(224, 177, 82,0.3);
}

.red-store-card {
    text-align: center;
    padding: 40px 30px;
}
.red-store-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red);
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(224, 177, 82,0.2);
}
.red-store-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}
.red-store-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 10px;
}
.red-store-features li svg {
    stroke: var(--accent-red);
}
.red-store-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 15px;
}

.red-client-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}
.red-client-box h2 {
    font-size: 3rem;
    margin: 0 0 20px 0;
}
.red-client-box .version {
    background: rgba(224, 177, 82,0.1);
    color: var(--accent-red);
    padding: 5px 15px;
    border-radius: 100px;
    font-weight: bold;
    margin-bottom: 40px;
    border: 1px solid rgba(224, 177, 82,0.2);
}
.red-client-btn {
    font-size: 1.2rem;
    padding: 20px 40px;
    background: transparent;
    color: #fff;
    border: 1px solid var(--accent-red);
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}
.btn-glow-main:hover, .btn-primary:hover, .red-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 25px rgba(201, 160, 67, 0.5);
    background: #a87d2a !important;
    color: #ffffff !important;
}

/* New Store Redesign Classes */
.bv-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    
    
    display: inline-block;
}

.bv-store-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bv-store-card:hover {
    background: rgba(224, 177, 82, 0.05);
    border-color: rgba(224, 177, 82, 0.3);
    box-shadow: 0 10px 30px rgba(224, 177, 82, 0.1);
    transform: translateY(-5px);
}

.bv-price-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.bv-old-price {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 500;
}

.bv-new-price-badge {
    background: rgba(224, 177, 82, 0.15);
    color: var(--accent-red);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 1px solid rgba(224, 177, 82, 0.3);
    transition: all 0.3s ease;
}

.bv-store-card:hover .bv-new-price-badge {
    background: var(--accent-red);
    color: #fff;
}

.bv-card-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 5px 0;
}

.bv-card-subtitle {
    color: var(--accent-red);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.bv-card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 250px;
}

.bv-store-btn {
    width: 100%;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
}

.bv-store-btn:hover:not([disabled]) {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

/* Avatar Modal Styles */
.avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}
.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.avatar-edit-btn {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}
.avatar-edit-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}
.avatar-modal-body {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.avatar-preview-lg {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.avatar-dropzone {
    width: 180px;
    height: 180px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    padding: 15px;
}
.avatar-dropzone:hover {
    border-color: var(--accent-red);
    background: rgba(224, 177, 82, 0.05);
}
/* =========================================
   BENTO BOX REDESIGN (INDEX.HTML V2)
   ========================================= */

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-bento {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 120px 20px 60px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.hero-bento-content {
    text-align: left;
    max-width: 600px;
    z-index: 3;
}

.hero-geometric {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float-glow 6s ease-in-out infinite;
}


.triangle-svg {
    width: 280px;
    height: 280px;
    fill: transparent;
    animation: spinning-triangle 20s linear infinite;
    pointer-events: visibleStroke;
    overflow: visible;
    transform: translateZ(0);
    z-index: 1;
}

.triangle-edge {
    stroke: var(--accent-red);
    stroke-width: 1.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateZ(0);
}

.triangle-edge-group:hover .triangle-edge {
    stroke: var(--accent-red);
    stroke-width: 1.5px;
    filter: drop-shadow(0 0 8px #ffffff) drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}


@keyframes spinning-triangle {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes float-glow {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(224, 177, 82, 0.1);
    border: 1px solid rgba(224, 177, 82, 0.2);
    border-radius: 30px;
    color: var(--accent-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-bento-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-bento-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: 0;
}

.hero-bento-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 60px;
}

.btn-glow-main {
    background: var(--accent-red);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 30px rgba(224, 177, 82, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-glow-main:hover {
    box-shadow: 0 0 50px rgba(224, 177, 82, 0.5);
    transform: translateY(-3px);
}

.btn-glass-main {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.btn-glass-main:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-bento-image {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin-top: 20px;
    border-radius: 20px;
    /* Create a fade-out effect at the bottom */
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.hero-bento-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Bento Features */
.features-bento {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header-bento {
    text-align: center;
    margin-bottom: 60px;
}
.section-header-bento h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}
.section-header-bento p {
    color: #888;
    font-size: 1.1rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 24px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}
.bento-item:hover {
    border-color: rgba(224, 177, 82, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.bento-small {
    grid-column: span 1;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Premium Background Glows */
.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(214, 166, 74, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    transition: all 0.5s ease;
}

.bento-item:hover::before {
    background: radial-gradient(circle at top right, rgba(214, 166, 74, 0.25) 0%, transparent 70%);
}

.bento-large::before {
    background: radial-gradient(circle at top left, rgba(214, 166, 74, 0.15) 0%, transparent 50%),
                radial-gradient(circle at bottom right, rgba(150, 0, 0, 0.1) 0%, transparent 50%);
}
.bento-large:hover::before {
    background: radial-gradient(circle at top left, rgba(214, 166, 74, 0.25) 0%, transparent 60%),
                radial-gradient(circle at bottom right, rgba(150, 0, 0, 0.2) 0%, transparent 60%);
}

/* Subtle Noise Texture Overlay */
.bento-noise::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
}

/* Background Patterns */
.bento-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    transition: all 0.5s ease;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
}

.bento-item:hover .bento-pattern {
    opacity: 1;
    transform: scale(1.05);
}

.bento-pattern-grid {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.bento-pattern-dots {
    background-image: radial-gradient(rgba(214, 166, 74, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
}

.bento-pattern-lines {
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 11px
    );
}

.bento-content {
    position: relative;
    z-index: 1;
}

.feature-icon-bento {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(224, 177, 82, 0.3));
}
.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.bento-item p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* Pricing Bento */
.pricing-bento {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.pricing-grid-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card-bento {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    height: 100%;
}
.pricing-card-bento:hover {
    transform: translateY(-10px);
    border-color: rgba(224, 177, 82, 0.2);
}

.bento-featured {
    background: linear-gradient(180deg, rgba(224, 177, 82, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(224, 177, 82, 0.3);
    transform: scale(1.05);
    position: relative;
    box-shadow: 0 20px 50px rgba(224, 177, 82, 0.1);
}
.bento-featured:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: rgba(224, 177, 82, 0.5);
    box-shadow: 0 30px 60px rgba(224, 177, 82, 0.2);
}

.bento-featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-top-bento {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.plan-top-bento h3 {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 10px;
}
.plan-price-bento {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}
.plan-desc-bento {
    color: var(--accent-red);
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-features-bento {
    list-style: none;
    flex: 1;
    margin-bottom: 30px;
    padding: 0;
}
.plan-features-bento li {
    margin-bottom: 15px;
    display: block;
    width: 100%;
    text-align: center !important;
    color: #ccc;
    font-size: 0.95rem;
}
.plan-features-bento li svg {
    color: var(--accent-red);
    flex-shrink: 0;
}

.btn-bento-buy {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-bento-buy:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 5px 20px rgba(224, 177, 82, 0.3);
}
.featured-btn {
    background: var(--accent-red);
    border: none;
    box-shadow: 0 10px 20px rgba(224, 177, 82, 0.2);
}
.featured-btn:hover {
    background: #ff1a1a;
    box-shadow: 0 10px 30px rgba(224, 177, 82, 0.4);
}

/* FAQ Bento */
.faq-bento {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.faq-list-bento {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-list-bento .faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 0;
}

/* Responsive Overrides for Bento */
@media (max-width: 992px) {
    /* Hero Section Fix */
    .hero-layout {
        flex-direction: column;
        text-align: center;
    }
    .hero-bento-content {
        text-align: center;
        margin: 0 auto;
    }
    .hero-geometric {
        width: 100%;
        height: auto;
        padding: 40px 0;
    }
    .triangle-svg {
        width: 100%;
        max-width: 280px;
        height: auto;
    }
    .hero-bento-buttons {
        justify-content: center;
    }

    /* Bento Grid Fix */
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }
    .bento-item {
        padding: 30px;
        min-height: 280px;
    }
    .bento-large, .bento-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    .bento-item h3 {
        font-size: 1.5rem !important;
    }
    .bento-item p {
        font-size: 1rem !important;
        max-width: 100% !important;
    }
    .bento-featured {
        transform: scale(1);
    }
    .bento-featured:hover {
        transform: scale(1) translateY(-5px);
    }
    .hero-bento-buttons {
        flex-direction: column;
    }
}

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


/* Bento Uniqueness Overrides */
.bento-noise {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 0, 0, 0.4) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid rgba(224, 177, 82, 0.15);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

/* Global Preloader */
.global-preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-color);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.preloader-triangle {
    width: 60px;
    height: 60px;
    animation: spinning-triangle 1.5s linear infinite;
}

.bento-noise::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: 0;
}

.bento-content {
    position: relative;
    z-index: 1;
}

.bento-watermark {
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.bento-item:hover {
    border-color: rgba(224, 177, 82, 0.4);
    box-shadow: 0 20px 50px rgba(224, 177, 82, 0.15);
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.95rem;
}

.toast.show {
    transform: translateX(0);
}

.toast-error {
    border-left: 4px solid #ff4d4d;
}
.toast-error svg {
    color: #ff4d4d;
    flex-shrink: 0;
}

.toast-success {
    border-left: 4px solid #4caf50;
}
.toast-success svg {
    color: #4caf50;
    flex-shrink: 0;
}

/* Global Input Autofill Overrides — Fix White Autofill Inputs Across Entire Site */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #09090b inset !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

/* Attached Images 1-Row Grid & Simple Centered Popup Modal */
.attached-images {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 8px;
}
.attached-img-thumb {
    width: 105px;
    height: 105px;
    min-width: 105px;
    min-height: 105px;
    max-width: 105px;
    max-height: 105px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    background: #101014;
    transition: transform 0.2s ease, border-color 0.2s ease;
    display: block;
}
.attached-img-thumb:hover {
    transform: scale(1.03);
    border-color: #e0b152;
}

.simple-img-popup-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: grab;
    opacity: 0;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.simple-img-popup-overlay:active {
    cursor: grabbing;
}
.simple-img-popup-overlay.open {
    display: flex !important;
    opacity: 1;
}
.simple-img-popup-overlay img {
    max-width: 85vw !important;
    max-height: 85vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 14px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transform: scale(0.92);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    -webkit-user-drag: none;
}
.simple-img-popup-overlay.open img {
    transform: scale(1);
}

/* Eliminate Browser White/Blue Autofill Box across all inputs */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active,
.red-input:-webkit-autofill,
.red-input:-webkit-autofill:hover,
.red-input:-webkit-autofill:focus,
.red-input:-webkit-autofill:active,
.red-input:-internal-autofill-selected {
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 0 0px 1000px #121216 inset !important;
    box-shadow: 0 0 0px 1000px #121216 inset !important;
    background-color: #121216 !important;
    background-image: none !important;
    transition: background-color 5000000s ease-in-out 0s, color 5000000s ease-in-out 0s !important;
    caret-color: #ffffff !important;
}
/* ===== Showcase: before/after slider + gallery (v131) ===== */
.showcase-section { padding: 90px 20px 30px; max-width: 1100px; margin: 0 auto; }
.ba-slider {
    position: relative;
    max-width: 920px;
    margin: 40px auto 14px;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    overflow: hidden;
    cursor: ew-resize;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    border: 1px solid rgba(224, 177, 82, 0.35);
    box-shadow: 0 24px 70px rgba(214, 166, 74, 0.16);
}
.ba-slider img.ba-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.ba-before-wrap {
    position: absolute; inset: 0;
    clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
.ba-divider {
    position: absolute; top: 0; bottom: 0; left: var(--pos, 50%);
    width: 2px; transform: translateX(-1px);
    background: linear-gradient(180deg, transparent, #e0b152 18%, #e0b152 82%, transparent);
    box-shadow: 0 0 14px rgba(224, 177, 82, 0.85);
    pointer-events: none;
}
.ba-handle {
    position: absolute; top: 50%; left: var(--pos, 50%);
    transform: translate(-50%, -50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(10, 10, 12, 0.85);
    border: 2px solid #e0b152;
    color: #fff; font-size: 20px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 22px rgba(224, 177, 82, 0.55);
    backdrop-filter: blur(4px);
    pointer-events: none;
}
.ba-tag {
    position: absolute; top: 14px;
    font-size: .75rem; padding: 6px 12px; border-radius: 999px;
    background: rgba(8, 8, 10, 0.65); border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ddd; letter-spacing: .4px; backdrop-filter: blur(4px);
}
.ba-tag-left { left: 14px; }
.ba-tag-right { right: 14px; color: #f3dfae; border-color: rgba(224, 177, 82, 0.45); }
.ba-hint { text-align: center; color: #888; font-size: .85rem; margin: 0 0 40px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 34px;
}
.gallery-item {
    position: relative; margin: 0;
    aspect-ratio: 16 / 10;
    border-radius: 18px; overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(224, 177, 82, 0.45);
    box-shadow: 0 18px 44px rgba(214, 166, 74, 0.18);
}

/* ===== Features strip (v131) ===== */
.features-strip {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}
.feature-chip {
    display: flex; gap: 15px; align-items: flex-start;
    padding: 22px; border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.feature-chip:hover {
    border-color: rgba(224, 177, 82, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(214, 166, 74, 0.12);
}
.feature-chip-icon {
    flex: 0 0 46px; height: 46px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(224, 177, 82, 0.12);
    border: 1px solid rgba(224, 177, 82, 0.35);
    color: #e0b152;
}
.feature-chip h3 { margin: 2px 0 6px; font-size: 1.02rem; }
.feature-chip p { margin: 0; color: #9a9aa2; font-size: .87rem; line-height: 1.5; }

/* ===== Reviews / stats (v131) ===== */
.reviews-section { max-width: 1100px; margin: 0 auto; padding: 60px 20px 80px; }
.stats-bar { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 64px; }
.stat-item {
    flex: 1 1 220px; max-width: 300px;
    text-align: center; padding: 28px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color .3s ease;
}
.stat-item:hover { border-color: rgba(224, 177, 82, 0.35); }
.stat-item b {
    display: block; font-size: 2.4rem; color: #e0b152;
    text-shadow: 0 0 26px rgba(224, 177, 82, 0.5);
}
.stat-item span { color: #9a9aa2; font-size: .9rem; }
.reviews-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px; margin-top: 36px;
}
.review-card {
    padding: 24px; border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color .3s ease, transform .3s ease;
}
.review-card:hover { border-color: rgba(224, 177, 82, 0.35); transform: translateY(-4px); }
.review-stars { color: #e0b152; letter-spacing: 3px; margin-bottom: 12px; text-shadow: 0 0 14px rgba(224, 177, 82, 0.5); }
.review-text { color: #cfcfd6; line-height: 1.6; font-size: .92rem; margin: 0 0 16px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, #e0b152, #7a1017);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff;
}
.review-name { color: #eee; font-size: .9rem; }
.review-src { color: #77777f; font-size: .75rem; }

/* Hero background video (auto-enabled when /assets/media/hero.mp4 exists) */
.hero-bento { position: relative; overflow: hidden; }
video.hero-bg-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .5;
    z-index: 0;
    pointer-events: none;
}
.hero-bento.has-hero-video::before {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse at center, rgba(8,8,10,0) 30%, rgba(8,8,10,.72) 100%),
        linear-gradient(180deg, rgba(8,8,10,.35), rgba(8,8,10,0) 40%, rgba(8,8,10,.55));
    pointer-events: none;
}
.hero-bento.has-hero-video .hero-bento-content { position: relative; z-index: 2; }

/* Slider: kill native image drag/selection */
.ba-slider img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}
.ba-slider * { user-select: none; -webkit-user-select: none; }

/* ================= Store redesign v140 ================= */
.bv-store-card {
    background: linear-gradient(180deg, rgba(24, 24, 28, 0.72), rgba(16, 16, 19, 0.78));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.bv-store-card:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 177, 82, 0.4);
    box-shadow: 0 18px 48px rgba(214, 166, 74, 0.16);
}
.bv-new-price-badge {
    background: linear-gradient(135deg, #e0b152, #c2181f) !important;
    border: none !important;
    box-shadow: 0 8px 22px rgba(224, 177, 82, 0.3);
}
.pay-method-btn {
    border-radius: 14px !important;
    transition: all .2s ease !important;
}
.pay-method-btn.active {
    border-color: #e0b152 !important;
    background: rgba(224, 177, 82, 0.08) !important;
    box-shadow: 0 0 0 3px rgba(224, 177, 82, 0.12), 0 8px 24px rgba(224, 177, 82, 0.15);
}

/* ================= Auth split-screen v140 ================= */
@media (min-width: 960px) {
    .auth-form { position: relative; }
}
.auth-side-brand {
    display: none;
}
@media (min-width: 960px) {
    body.split-auth { display: flex; }
    body.split-auth .login-container { flex: 1; justify-content: flex-end; padding-right: 6vw; }
    body.split-auth::before {
        content: '';
        position: fixed; inset: 0 auto 0 0; width: 46%;
        background:
            radial-gradient(circle at 30% 30%, rgba(224, 177, 82, 0.16), transparent 55%),
            linear-gradient(160deg, #101014 0%, #17171d 55%, #1c1215 100%);
        z-index: 0;
    }
    body.split-auth::after {
        content: 'Burmalda\A Visuals';
        white-space: pre;
        position: fixed; left: 8%; top: 50%; transform: translateY(-50%);
        font-size: clamp(2.6rem, 4vw, 4rem); font-weight: 800; line-height: 1.15;
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
        z-index: 1;
        pointer-events: none;
        text-shadow: 0 0 80px rgba(224, 177, 82, 0.25);
    }
}

/* ================= Auth brand panel v140a (final) ================= */
body.split-auth::before, body.split-auth::after { content: none !important; }

.auth-brand-panel { display: none; }

@media (min-width: 960px) {
    body.with-auth-brand .login-container { transform: translateX(24vw); }
    .auth-brand-panel {
        display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
        gap: 26px;
        position: fixed; left: 0; top: 0; bottom: 0; width: 45%;
        padding: 0 7%;
        background:
            radial-gradient(circle at 22% 28%, rgba(224, 177, 82, 0.15), transparent 52%),
            linear-gradient(160deg, #101014 0%, #17171d 55%, #1f1216 100%);
        border-right: 1px solid rgba(224, 177, 82, 0.16);
        z-index: 1;
        overflow: hidden;
    }
    .abp-logo-row { display: flex; align-items: center; gap: 14px; position: relative; z-index: 2; }
    .abp-logo-row img { width: 46px; height: 46px; filter: drop-shadow(0 0 16px rgba(224, 177, 82, 0.5)); }
    .abp-logo-row span { font-size: 1.15rem; letter-spacing: .5px; color: #f0f0f0; font-weight: 500; }
    .abp-logo-row b { color: #e0b152; font-weight: 700; }
    .abp-title {
        font-size: clamp(2.4rem, 3.6vw, 3.6rem); font-weight: 800; line-height: 1.12;
        color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
        text-shadow: 0 0 70px rgba(224, 177, 82, 0.3);
        position: relative; z-index: 2;
    }
    .abp-title em { font-style: normal; -webkit-text-stroke: 0; color: #e0b152; text-shadow: 0 0 40px rgba(224, 177, 82, 0.5); }
    .abp-sub { color: #9a9aa2; max-width: 380px; line-height: 1.65; font-size: .98rem; position: relative; z-index: 2; }
    .abp-triangle { position: absolute; right: -40px; bottom: -30px; opacity: .5; z-index: 1; animation: abpFloat 9s ease-in-out infinite alternate; }
    @keyframes abpFloat {
        from { transform: translateY(-14px) rotate(-4deg); filter: drop-shadow(0 0 24px rgba(224, 177, 82, 0.35)); }
        to   { transform: translateY(16px) rotate(5deg);  filter: drop-shadow(0 0 48px rgba(224, 177, 82, 0.6)); }
    }
}

/* ================= News hero card v140 ================= */
/* Двухколоночная раскладка только когда есть картинка; без картинки — обычная плоская карточка */
.news-bento-card.news-hero-card:has(.news-card-img) {
    display: grid;
    grid-template-columns: 46% 54%;
    padding: 0 !important;
    overflow: hidden;
}
.news-bento-card.news-hero-card .news-card-img {
    width: 100%; height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: 0 !important;
    transition: transform .45s ease;
}
.news-bento-card.news-hero-card:hover .news-card-img { transform: scale(1.04); }
.news-hero-body { display: flex; flex-direction: column; gap: 12px; padding: 30px; }
.news-hero-body .news-title { font-size: 1.5rem; }
@media (max-width: 860px) {
    .news-bento-card.news-hero-card { grid-template-columns: 1fr; }
    .news-bento-card.news-hero-card .news-card-img { min-height: 200px; max-height: 240px; }
}

/* ================= Client page slider fit v140 ================= */
.client-container .ba-slider, main .ba-slider { border-radius: 18px; }

/* ================= Help / KB redesign v140 ================= */
.cat-card {
    background: linear-gradient(180deg, rgba(24, 24, 28, 0.72), rgba(16, 16, 19, 0.78)) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 20px !important;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease !important;
}
.cat-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(224, 177, 82, 0.4) !important;
    box-shadow: 0 16px 44px rgba(214, 166, 74, 0.15) !important;
}
.cat-icon { filter: drop-shadow(0 0 10px rgba(224, 177, 82, 0.45)); }
.stat-card {
    background: linear-gradient(180deg, rgba(24, 24, 28, 0.72), rgba(16, 16, 19, 0.78));
    border-radius: 18px;
}
.contact-btn, .btn-submit {
    background: linear-gradient(135deg, #e0b152, #c2181f);
    border: none; border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(224, 177, 82, 0.26);
    transition: transform .2s ease, box-shadow .2s ease;
}
.contact-btn:hover, .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(224, 177, 82, 0.4); }

/* ================= Auth pages form restyle v141a ================= */
.abp-logo-row { text-decoration: none; transition: transform .2s ease, filter .2s ease; }
.abp-logo-row:hover { transform: translateX(4px); filter: brightness(1.15); }

.with-auth-brand .red-content-card {
    background: linear-gradient(180deg, rgba(22, 22, 27, 0.85), rgba(15, 15, 18, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 90px rgba(224, 177, 82, 0.07);
    backdrop-filter: blur(10px);
}

.with-auth-brand .red-label {
    color: #b9b9c1;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
    display: block;
}

.with-auth-brand .red-input {
    background: rgba(9, 9, 12, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 13px 16px;
    color: #fff;
    font-size: 0.95rem;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.with-auth-brand .red-input::placeholder { color: #56565e; }
.with-auth-brand .red-input:hover { border-color: rgba(255, 255, 255, 0.14); }
.with-auth-brand .red-input:focus {
    outline: none;
    border-color: rgba(224, 177, 82, 0.6);
    background: rgba(12, 12, 16, 0.85);
    box-shadow: 0 0 0 4px rgba(224, 177, 82, 0.12);
}

.with-auth-brand .red-btn {
    background: linear-gradient(135deg, #e0b152, #c2181f);
    border: none; border-radius: 14px;
    font-weight: 800; letter-spacing: 0.3px;
    color: #fff;
    box-shadow: 0 12px 30px rgba(224, 177, 82, 0.32);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.with-auth-brand .red-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 42px rgba(224, 177, 82, 0.45);
    filter: brightness(1.06);
}
.with-auth-brand .red-btn:active { transform: translateY(0); }

.with-auth-brand input[type="checkbox"] { accent-color: #e0b152; width: 17px; height: 17px; cursor: pointer; }

/* ================= Auth unified background v141b ================= */
/* ���� ����� ��� �� ��� �������� � ����� � ������ �������� ��������� */
body.with-auth-brand {
    background-image:
        radial-gradient(circle at 14% 26%, rgba(224, 177, 82, 0.13), transparent 42%),
        radial-gradient(circle at 84% 78%, rgba(224, 177, 82, 0.09), transparent 38%),
        linear-gradient(160deg, #0c0c0f 0%, #111116 55%, #140f12 100%);
}
@media (min-width: 960px) {
    .with-auth-brand .auth-brand-panel {
        background: transparent;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
    .with-auth-brand .abp-triangle { right: auto; left: 4%; bottom: -20px; opacity: .3; }
}

/* ================= Auth right side redesign v141c ================= */
/* ������������ ������� �������� �� ������ �������� */
body.with-auth-brand {
    background-image:
        radial-gradient(circle at 12% 22%, rgba(224, 177, 82, 0.13), transparent 42%),
        radial-gradient(circle at 88% 24%, rgba(224, 177, 82, 0.13), transparent 42%),
        radial-gradient(circle at 78% 86%, rgba(224, 177, 82, 0.08), transparent 36%),
        linear-gradient(160deg, #0c0c0f 0%, #111116 55%, #140f12 100%);
}

/* ������� ����������� �� ������ ������ */
.auth-right-triangle { display: none; }
@media (min-width: 960px) {
    .with-auth-brand .auth-right-triangle {
        display: block;
        position: fixed; right: -70px; top: -55px;
        z-index: 0; pointer-events: none;
        opacity: .55;
        animation: artFloat 11s ease-in-out infinite alternate;
    }
    @keyframes artFloat {
        from { transform: translateY(-12px) rotate(-3deg); filter: drop-shadow(0 0 22px rgba(224, 177, 82, 0.28)); }
        to   { transform: translateY(16px) rotate(4deg);  filter: drop-shadow(0 0 48px rgba(224, 177, 82, 0.5)); }
    }
    .with-auth-brand .login-container { position: relative; z-index: 2; }
}

/* ��������� ����� ���������� ��� �� ������� */
.with-auth-brand .red-section-title {
    background: linear-gradient(100deg, #ffffff 30%, #ff8d99 75%, #e0b152 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= Auth full-page form v141d ================= */
/* ������� ��������� �������� � ����� �� ��� ������ �������� */
.with-auth-brand .red-content-card {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    max-width: 560px !important;
    min-height: calc(100vh - 60px);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    padding: 30px 12px !important;
}

.with-auth-brand .red-section-title {
    text-align: left;
    font-size: clamp(1.9rem, 2.6vw, 2.5rem);
    margin-bottom: 8px;
}

.with-auth-brand .red-content-card > p {
    text-align: left;
    color: #8f8f98;
    font-size: 1rem;
}

.with-auth-brand .red-form-group { margin-bottom: 26px; }

.with-auth-brand .red-label {
    font-size: 0.78rem;
    letter-spacing: 1px;
    color: #a9a9b2;
}

.with-auth-brand .red-input {
    height: 54px;
    border-radius: 14px;
    font-size: 1rem;
}

.with-auth-brand .red-btn {
    height: 56px;
    font-size: 1.05rem;
    border-radius: 14px;
    width: 100%;
    justify-content: center;
}

/* ���������� ������� ��� ���������� � ��� � ������� �����? ��� � �����, ��� � �������� ���� */
.with-auth-brand .red-sidebar-logo {
    justify-content: flex-start;
    margin-bottom: 34px;
}

/* ������ ����� ��� ������ ����� */
.with-auth-brand .auth-form-divider {
    height: 1px; width: 100%;
    background: linear-gradient(90deg, rgba(224, 177, 82,.35), rgba(255,255,255,.06) 60%, transparent);
    margin: 6px 0 30px;
}

@media (max-width: 959px) {
    .with-auth-brand .red-content-card {
        min-height: auto;
        padding: 28px 20px !important;
        justify-content: flex-start;
    }
}

/* ������ ����� � ����� � ������ �� ������, ��� �����-������ ������ */
.auth-home-link { display: none; }
@media (max-width: 959px) {
    .auth-home-link {
        display: inline-block;
        color: #9a9aa2; text-decoration: none;
        font-size: 0.9rem; font-weight: 600;
        margin-bottom: 20px;
        transition: color .2s ease;
    }
    .auth-home-link:hover { color: #e0b152; }
}

/* =========================================================
   MINIMAL DESIGN SYSTEM � v142
   ������ ��������������� ���� ��� ���� �������.
   ����� ���������: ����� ��� #0a0a0c + ������� #e0b152.
   ��������: ������� �����������, ������ �����,
   ������� ����������� �������� � ������ �����.
   ========================================================= */

:root {
    --m-bg: #0a0a0c;
    --m-surface: #101013;
    --m-surface-2: #141418;
    --m-border: rgba(255, 255, 255, 0.08);
    --m-text: #f2f2f4;
    --m-muted: #8a8a93;
    --m-red: #e0b152;
}

/* --- 1. ��� � ����������� --- */
body { background-color: var(--m-bg) !important; }
h1, h2, h3, h4 { font-weight: 700; }

/* ����������� ��������� -> ������� ����� */
.text-gradient {
    color: var(--m-text) !important;
    -webkit-text-fill-color: var(--m-text) !important;
    background: none !important;
    text-shadow: none !important;
}

/* ������� ������� �������� ������ */
#bv-particles { display: none !important; }

/* --- 2. ������: �� -> ������� ������� --- */
.red-btn,
.btn-glow-main,
.btn-glass-main,
.btn-bento-buy,
.featured-btn,
.btn-dashboard.primary,
.btn-dashboard.primary-full,
.btn-dashboard.secondary,
.bv-btn-primary,
.contact-btn,
.btn-submit,
.macro-btn,
.red-content-card .red-btn,
.auth-form button[type="submit"] {
    background: var(--m-red) !important;
    border: none !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    transition: background .15s ease, transform .1s ease !important;
}
.red-btn:hover,
.btn-glow-main:hover,
.btn-glass-main:hover,
.btn-bento-buy:hover,
.featured-btn:hover,
.btn-dashboard.primary:hover,
.btn-dashboard.primary-full:hover,
.btn-dashboard.secondary:hover,
.bv-btn-primary:hover,
.contact-btn:hover,
.btn-submit:hover,
.macro-btn:hover {
    background: #c9992e !important;
    transform: none !important;
    box-shadow: none !important;
    filter: none !important;
}

/* ��������� ������ � ���������� � ������ ������ */
.btn-dashboard.outline,
.bv-btn-secondary,
.config-outline-btn,
.btn-support {
    background: transparent !important;
    border: 1px solid var(--m-border) !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    transition: border-color .15s ease, color .15s ease !important;
}
.btn-dashboard.outline:hover,
.bv-btn-secondary:hover,
.config-outline-btn:hover,
.btn-support:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* --- 3. �������� � �����������: ������� ����� + ������ ����� --- */
.red-card,
.store-card,
.bv-store-card,
.bento-item,
.pricing-card-bento,
.news-bento-card,
.cat-card,
.stat-card,
.stat-item,
.faq-item-card,
.review-card,
.feature-chip,
.panel-logo-wrapper,
.subscription-status,
.config-block,
.config-list-block,
.macro-item,
.config-item,
.ui-card,
.modal-content,
.stats-bar .stat-item {
    background: var(--m-surface) !important;
    border: 1px solid var(--m-border) !important;
    border-radius: 14px !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    transition: border-color .15s ease !important;
    transform: none !important;
}
.red-card:hover,
.store-card:hover,
.bv-store-card:hover,
.bento-item:hover,
.pricing-card-bento:hover,
.news-bento-card:hover,
.cat-card:hover,
.stat-card:hover,
.review-card:hover,
.feature-chip:hover {
    border-color: rgba(224, 177, 82, 0.45) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* ������ "��� ������" � ������� ������ � ������� */
.bento-featured-badge,
.bv-new-price-badge,
.price-badge .price-new,
.store-main-price,
.client-version-badge,
.version-badge {
    background: transparent !important;
    border: 1px solid rgba(224, 177, 82, 0.45) !important;
    color: var(--m-red) !important;
    box-shadow: none !important;
    border-radius: 8px !important;
    text-shadow: none !important;
}

/* --- 4. ������: ���������� --- */
.red-input,
.red-input-group input,
.password-input input,
.activation-input-row input,
.input-group input,
.macro-input-group input,
.config-input,
.ui-search input,
.red-form-group input {
    background: var(--m-surface-2) !important;
    border: 1px solid var(--m-border) !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    transition: border-color .15s ease !important;
}
.red-input:focus,
.red-input-group input:focus,
.password-input input:focus,
.activation-input-row input:focus,
.input-group input:focus,
.macro-input-group input:focus,
.config-input:focus,
.red-form-group input:focus {
    border-color: rgba(224, 177, 82, 0.65) !important;
    box-shadow: none !important;
    outline: none !important;
}

/* --- 5. Auth-��������: ����� --- */
/* ������� ����� ��� ��� ���������� ����� */
body.with-auth-brand {
    background-image: none !important;
    background-color: var(--m-bg) !important;
}
/* ������� ������������� */
.abp-triangle,
.auth-right-triangle { display: none !important; }
/* ������ � ������ ������� �����, ���������� ������ ������ */
.with-auth-brand .auth-brand-panel {
    background: transparent !important;
    border-right: 1px solid var(--m-border);
}
/* ��������� ������ � ������� �����, ������ ������� ������ */
.with-auth-brand .abp-title {
    color: var(--m-text) !important;
    -webkit-text-stroke: 0 !important;
    text-shadow: none !important;
    font-weight: 700;
}
.with-auth-brand .abp-title em {
    color: var(--m-red) !important;
    -webkit-text-fill-color: var(--m-red) !important;
    font-style: normal;
}
.with-auth-brand .abp-logo-row img {
    filter: none !important;
}
/* �������� ����� ��� � ����� ����� �� ���� (��������� v141d) */
.with-auth-brand .red-content-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}
/* ��������� ����� � �����, �� �������� */
.with-auth-brand .red-section-title {
    color: var(--m-text) !important;
    -webkit-text-fill-color: var(--m-text) !important;
    background: none !important;
}
/* ����������� ��� ������ ����� � ������ ����� ����� */
.with-auth-brand .auth-form-divider {
    background: var(--m-border) !important;
}

/* --- 6. ������: ������ ������� �������� --- */
.status-text,
.red-status-value,
.review-stars,
.stat-item b,
.logo-wrapper img,
.footer-socials a,
.nav-user {
    text-shadow: none !important;
}
.avatar-img { box-shadow: none !important; }
.hero-bento.has-hero-video::before { background: linear-gradient(180deg, rgba(10,10,12,.4), rgba(10,10,12,.75)); }
.ba-slider { box-shadow: none !important; }
.gallery-item { border-radius: 12px !important; }

/* ================= Store cards v142 ================= */
.bv-category-title { color: #fff; font-size: 1.15rem; font-weight: 700; margin: 0 0 16px; }
.bv-store-card { display: flex; flex-direction: column; padding: 26px; }
.bv-card-title { margin: 0 0 4px; color: #fff; font-size: 1.2rem; font-weight: 700; }
.bv-card-subtitle { color: var(--m-muted, #8a8a93); font-size: .85rem; margin-bottom: 16px; }
.store-price-row { margin-bottom: 16px; }
.bv-new-price-badge { display: inline-block; font-size: 1.25rem; font-weight: 700; padding: 6px 16px; }
.bv-card-desc { flex: 1; color: var(--m-muted, #8a8a93); font-size: .9rem; line-height: 1.55; margin: 0 0 20px; }
.bv-store-btn { width: 100%; height: 46px; }
.bv-featured { border-color: rgba(224, 177, 82, 0.45) !important; }
.store-hit {
    position: absolute; top: 14px; right: 14px;
    font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: #e0b152; border: 1px solid rgba(224, 177, 82, 0.45);
    padding: 4px 10px; border-radius: 6px;
}
.bv-store-card { position: relative; }

/* ============================================================
   Minimal landing redesign v144
   Единая система: одна высота кнопок, плоские карточки,
   без глоу-теней и прыжков при ховере.
   ============================================================ */

:root {
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 10px;
    --border-soft: rgba(255, 255, 255, 0.08);
}

/* --- Унифицированные кнопки: одна геометрия для всех --- */
.btn,
.btn-glow-main,
.btn-glass-main,
.btn-bento-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    gap: 8px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn svg,
.btn-glow-main svg,
.btn-glass-main svg,
.btn-bento-buy svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Primary — сплошной акцент */
.btn-glow-main {
    background: var(--accent-red);
    color: #fff;
    border: none;
    box-shadow: none;
}
.btn-glow-main:hover {
    background: #e8bc5e;
    box-shadow: none;
    transform: none;
}

/* Ghost — прозрачная с обводкой */
.btn-glass-main {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-soft);
    backdrop-filter: none;
}
.btn-glass-main:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: none;
}

/* --- Navbar: плоский, тоньше, без тени --- */
.navbar {
    top: 16px;
    padding: 10px 20px;
    background: rgba(12, 12, 15, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: none;
}
.navbar.scrolled {
    background: rgba(10, 10, 13, 0.88);
    box-shadow: none;
}
.logo-wrapper,
.nav-logo-img { height: 32px; }
.nav-links { gap: 26px; }
.nav-user:hover svg { color: var(--accent-red); }
.nav-logo:hover .nav-logo-img { transform: none; filter: none; }

/* --- Hero: спокойный центр --- */
.hero-simple-center {
    padding: 150px 24px 90px;
    min-height: auto;
}
.hero-simple-center .hero-bento-content { max-width: 720px; }
.hero-simple-center .hero-bento-title {
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.hero-simple-center .hero-bento-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.65;
}
.hero-simple-center .hero-bento-buttons {
    gap: 12px;
    margin-bottom: 0;
}

/* --- Заголовки секций --- */
.section-header-bento { margin-bottom: 44px; }
.section-header-bento h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.section-header-bento p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* --- Фичи: плоские карточки --- */
.features-strip {
    max-width: 1040px;
    padding: 48px 24px 24px;
    gap: 14px;
}
.feature-chip {
    padding: 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color .2s ease;
}
.feature-chip:hover {
    border-color: rgba(224, 177, 82, 0.35);
    transform: none;
    box-shadow: none;
}
.feature-chip-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(224, 177, 82, 0.09);
    border: none;
}
.feature-chip h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 4px;
}
.feature-chip p {
    font-size: 0.86rem;
    color: var(--text-muted);
}

/* --- Цифры: строка с разделителями вместо карточек --- */
.reviews-section { max-width: 1040px; padding: 48px 24px 64px; }
.stats-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 56px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.stat-item {
    flex: 1 1 auto;
    max-width: none;
    min-width: 180px;
    padding: 0 28px;
    background: none;
    border: none;
    border-radius: 0;
    position: relative;
    transition: none;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
}
.stat-item b {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}
.stat-item span {
    display: block;
    color: var(--text-muted);
    font-size: 0.84rem;
    margin-top: 2px;
}

/* --- Тарифы: плоские, без scale --- */
.pricing-grid-bento { gap: 14px; align-items: stretch; }
.pricing-card-bento {
    padding: 30px 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-soft);
    transition: border-color .2s ease;
}
.pricing-card-bento:hover {
    transform: none;
    border-color: rgba(224, 177, 82, 0.4);
}
.bento-featured {
    background: rgba(224, 177, 82, 0.04);
    border-color: rgba(224, 177, 82, 0.45);
    transform: none;
    box-shadow: none;
}
.bento-featured:hover {
    transform: none;
    border-color: rgba(224, 177, 82, 0.7);
    box-shadow: none;
}
.plan-top-bento { margin-bottom: 24px; padding-bottom: 24px; }
.plan-top-bento h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.plan-price-bento { font-size: 2.3rem; font-weight: 700; letter-spacing: -0.02em; }
.plan-desc-bento { font-weight: 500; }
.plan-features-bento li { color: var(--text-muted); font-size: 0.92rem; }

.btn-bento-buy {
    height: 44px;
    padding: 0 20px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    background: transparent;
    border: 1px solid var(--border-soft);
    transition: background-color .2s ease, border-color .2s ease;
}
.btn-bento-buy:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: none;
}
.featured-btn {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: none;
}
.featured-btn:hover {
    background: #e8bc5e;
    box-shadow: none;
}

/* --- Витрина/галерея --- */
.showcase-section { max-width: 1040px; padding-top: 72px; }
.gallery-grid { gap: 14px; margin-top: 28px; }
.gallery-item {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    transition: border-color .2s ease;
}
.gallery-item:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(224, 177, 82, 0.4);
}

/* --- Блок поддержки --- */
.support-cta {
    max-width: 640px;
    margin: 0 auto;
    padding: 72px 24px !important;
    text-align: center;
}
.support-cta p { margin-bottom: 36px; line-height: 1.65; }

/* --- Footer: плоский, сливается со страницей --- */
.footer-new {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 56px 40px 32px;
}
.footer-logo-img { height: 36px; }
.footer-desc { color: var(--text-muted); }
.footer-col h3 { margin-bottom: 18px !important; }
.footer-col ul a { color: var(--text-muted); }
.footer-col ul a:hover { color: var(--text-main); }
.footer-copyright p { color: var(--text-muted); }
.footer-disclaimer { color: #6b6b74; }
.footer-disclaimer a { color: var(--text-muted) !important; text-decoration: underline; }
.social-icon { color: var(--text-muted); }
.social-icon:hover { color: var(--text-main); }

/* Частицы фоном тише */
#bv-particles { opacity: 0.4; }

/* Бейдж "Хит продаж" и теги новостей: сплошной минималистичный пилл */
.bento-featured-badge {
    background: var(--accent-red) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: none !important;
    text-shadow: none !important;
    border-radius: 999px !important;
    padding: 5px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
}
.news-tag {
    border-radius: 999px !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

/* ============================================================
   v150 — Kimiko Gold Edition
   Шампань-золото на почти чёрном: стекло, пилюли, speed-blur,
   морфинг навбара. Слои v142/v144 перекрываются здесь сознательно.
   ============================================================ */

:root {
    --gold: #e0b152;
    --gold-bright: #f0c671;
    --gold-deep: #b98a2f;
    --gold-rgb: 224, 177, 82;
    --danger: #d0564e;
    --glass-bg: rgba(255, 255, 255, 0.035);
    --glass-bg-strong: rgba(255, 255, 255, 0.055);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-strong: rgba(255, 255, 255, 0.2);
    --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-pop: 0 14px 40px rgba(0, 0, 0, 0.35);
    /* legacy aliases: старые токены теперь смотрят на золото */
    --accent-red: var(--gold);
    --accent-dark: var(--gold-deep);
    --glow-color: rgba(var(--gold-rgb), 0.25);
    --card-hover-border: rgba(var(--gold-rgb), 0.35);
    --m-red: var(--gold);
    --m-bg: #0a0a0d;
    --m-surface: var(--glass-bg);
    --border-soft: var(--glass-border);
}

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

/* Фиксированные золотые свечения фона */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(900px 520px at 18% -8%, rgba(var(--gold-rgb), 0.07), transparent 65%),
        radial-gradient(760px 480px at 88% 112%, rgba(var(--gold-rgb), 0.05), transparent 65%);
}

/* ---------- Кнопки: золотые пилюли и стекло ---------- */
.btn, .btn-glow-main, .btn-glass-main, .btn-bento-buy, .featured-btn,
.btn-dashboard.primary, .btn-dashboard.primary-full, .btn-dashboard.secondary,
.btn-dashboard.outline, .bv-btn-primary, .bv-btn-secondary, .bv-store-btn,
.contact-btn, .btn-submit, .macro-btn, .config-outline-btn, .btn-support,
.red-btn, .auth-form button[type="submit"] {
    border-radius: 999px !important;
    font-weight: 600 !important;
    transition: background-color .16s var(--ease-out-quad), border-color .16s var(--ease-out-quad),
        color .16s var(--ease-out-quad), box-shadow .16s var(--ease-out-quad) !important;
}
/* v142 красит все акцентные кнопки в --m-red (теперь золото) —
   текст делаем тёмным для контраста на золоте */
.red-btn, .btn-glow-main, .btn-glass-main, .btn-bento-buy, .featured-btn,
.btn-dashboard.primary, .btn-dashboard.primary-full, .btn-dashboard.secondary,
.bv-btn-primary, .contact-btn, .btn-submit, .macro-btn,
.red-content-card .red-btn, .auth-form button[type="submit"] {
    color: #221a06 !important;
}
.red-btn:hover, .btn-glow-main:hover, .btn-bento-buy:hover, .featured-btn:hover,
.btn-dashboard.primary:hover, .btn-dashboard.primary-full:hover,
.btn-dashboard.secondary:hover, .bv-btn-primary:hover, .contact-btn:hover,
.btn-submit:hover, .macro-btn:hover, .auth-form button[type="submit"]:hover {
    background: #e9be62 !important;
    box-shadow: 0 6px 22px rgba(var(--gold-rgb), 0.28) !important;
}
.btn-glow-main svg, .featured-btn svg, .btn-bento-buy svg, .red-btn svg { color: #221a06; }

/* Вторичные — стекло (v142 красит и их в акцент, возвращаем стекло) */
.btn-glass-main, .btn-dashboard.outline, .bv-btn-secondary,
.config-outline-btn, .btn-support {
    background: var(--glass-bg) !important;
    color: rgba(255, 255, 255, 0.88) !important;
    border: 1px solid var(--glass-border-strong) !important;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.btn-glass-main:hover, .btn-dashboard.outline:hover, .bv-btn-secondary:hover,
.config-outline-btn:hover, .btn-support:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.32) !important;
    box-shadow: none !important;
}
.btn-glass-main svg { color: rgba(255, 255, 255, 0.88); }

/* Кнопки в карточках тарифов: призрачная стеклянная; featured — золото */
.btn-bento-buy {
    background: var(--glass-bg) !important;
    color: rgba(255, 255, 255, 0.88) !important;
    border: 1px solid var(--glass-border-strong) !important;
}
.btn-bento-buy:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.32) !important;
    box-shadow: none !important;
}
.btn-bento-buy svg { color: rgba(255, 255, 255, 0.88); }
.featured-btn svg { color: #221a06; }

/* Кнопка «Войти» в навбаре — стеклянная пилюля как у Kimiko */
.nav-user {
    border: 1px solid var(--glass-border-strong) !important;
    background: var(--glass-bg) !important;
    border-radius: 999px !important;
    padding: 8px 18px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: background-color .16s var(--ease-out-quad), border-color .16s var(--ease-out-quad) !important;
}
.nav-user:hover { background: rgba(255, 255, 255, 0.1) !important; border-color: rgba(255, 255, 255, 0.32) !important; }

/* ---------- Карточки: стекло + золотой ховер + лёгкий подъём ---------- */
.red-card, .store-card, .bv-store-card, .bento-item, .pricing-card-bento,
.news-bento-card, .cat-card, .stat-card, .faq-item-card, .review-card,
.feature-chip, .config-block, .config-list-block, .macro-item, .config-item,
.ui-card, .modal-content, .stats-bar .stat-item, .gallery-item {
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color .16s var(--ease-out-quad), transform .16s var(--ease-out-quad),
        box-shadow .16s var(--ease-out-quad), background-color .16s var(--ease-out-quad) !important;
}
.red-card:hover, .store-card:hover, .bv-store-card:hover, .bento-item:hover,
.pricing-card-bento:hover, .news-bento-card:hover, .cat-card:hover,
.stat-card:hover, .review-card:hover, .feature-chip:hover,
.gallery-item:hover {
    border-color: rgba(var(--gold-rgb), 0.4) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-pop) !important;
    background: var(--glass-bg-strong) !important;
}

.feature-chip-icon {
    border-radius: 50% !important;
    background: rgba(var(--gold-rgb), 0.1) !important;
}
.feature-chip-icon svg { color: var(--gold-bright); }

/* Избранный тариф — золотой тинт */
.bento-featured, .bv-featured {
    background: rgba(var(--gold-rgb), 0.05) !important;
    border-color: rgba(var(--gold-rgb), 0.45) !important;
}
.bento-featured:hover { border-color: rgba(var(--gold-rgb), 0.65) !important; }

.bento-featured-badge {
    background: var(--gold) !important;
    color: #221a06 !important;
    font-weight: 700 !important;
}
.store-hit {
    color: var(--gold-bright) !important;
    border-color: rgba(var(--gold-rgb), 0.45) !important;
    background: rgba(var(--gold-rgb), 0.08);
}

/* ---------- Золотой градиентный текст ---------- */
.text-gradient {
    background: linear-gradient(94deg, #f4d78a 0%, #e0b152 48%, #c9992e 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    text-shadow: none !important;
}

/* ---------- Навбар: пилюля, морфинг при скролле ---------- */
.navbar {
    border-radius: 999px !important;
    transition: background-color .3s var(--ease-out-quad), box-shadow .3s var(--ease-out-quad),
        border-color .3s var(--ease-out-quad), max-width .35s var(--ease-out-quad),
        padding .3s var(--ease-out-quad) !important;
}
.navbar.scrolled {
    max-width: 700px;
    padding: 8px 20px;
    background: rgba(12, 12, 15, 0.8) !important;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.45) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

/* ---------- Speed-blur reveal (как у Kimiko) ---------- */
.reveal {
    opacity: 0;
    filter: blur(25px);
    transform: translateY(-8%) scale(1.04);
    transition: opacity .5s ease-in-out, filter .5s ease-in-out, transform .5s ease-in-out;
    will-change: opacity, filter, transform;
}
.reveal.active { opacity: 1; filter: none; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { transition: none; opacity: 1; filter: none; transform: none; }
}

/* ---------- Слайдер «до/после» в стиле Kimiko ---------- */
.ba-slider {
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 18px !important;
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.36) !important;
    overflow: hidden;
}
.ba-divider {
    width: 2px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.35) !important;
}
.ba-handle {
    width: 46px !important;
    height: 46px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4) !important;
    transition: background-color .16s var(--ease-out-quad), transform .16s var(--ease-out-quad);
}
.ba-slider:hover .ba-handle { background: rgba(255, 255, 255, 0.16) !important; }
.ba-tag {
    background: rgba(10, 10, 13, 0.55) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    color: rgba(255, 255, 255, 0.8) !important;
    border-radius: 999px !important;
}
.ba-tag-right { color: var(--gold-bright) !important; border-color: rgba(var(--gold-rgb), 0.45) !important; }

/* ---------- Ротация слов в hero ---------- */
.hero-bento-title .rotator-line {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
}
.word-rotator {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: baseline;
    transition: width 200ms ease;
    will-change: width;
}
.rotator-word { display: inline-block; white-space: nowrap; animation: rotator-word-in 360ms ease both; }
.rotator-word.is-leaving {
    position: absolute;
    left: 0;
    top: 0;
    animation: rotator-word-out 300ms ease both;
}
@keyframes rotator-word-in {
    0% { opacity: 0; filter: blur(10px); }
    100% { opacity: 1; filter: blur(0); }
}
@keyframes rotator-word-out {
    0% { opacity: 1; filter: blur(0); }
    100% { opacity: 0; filter: blur(10px); }
}
@media (prefers-reduced-motion: reduce) {
    .word-rotator { transition: none; }
    .rotator-word { animation: none; }
}

/* Мобильный safety: ротатор не должен переполнять строку */
@media (max-width: 480px) {
    .hero-bento-title .rotator-line { font-size: 0.82em; }
}

/* ---------- v150 фикс ротатора ----------
   Фильтр на потомке ломает background-clip:text родителя (слово исчезает),
   поэтому градиент висит на самих словах, а keyframes завершаются filter:none,
   чтобы не оставлять lingering filter после анимации. */
.hero-bento-title .rotator-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.rotator-word.text-gradient,
.rotator-tail.text-gradient {
    background: linear-gradient(94deg, #f4d78a 0%, #e0b152 48%, #c9992e 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    text-shadow: none !important;
}
@keyframes rotator-word-in {
    0% { opacity: 0; filter: blur(10px); }
    100% { opacity: 1; filter: none; }
}
.hero-bento-title .hero-brand { display: block; }

/* v150: внутри reveal-контейнеров backdrop-filter даёт тёмные боксы во время
   blur-перехода — слайдер-элементам стекло не критично, убираем */
.ba-tag, .ba-handle { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }

/* v150: «Купить выгодно» — сплошное золото поверх стеклянной .btn-bento-buy */
.btn-bento-buy.featured-btn {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: #221a06 !important;
}
.btn-bento-buy.featured-btn:hover {
    background: #e9be62 !important;
    border-color: #e9be62 !important;
    box-shadow: 0 6px 22px rgba(var(--gold-rgb), 0.28) !important;
}
.btn-bento-buy.featured-btn svg { color: #221a06; }

/* ---------- Статистика hero: без рамок, как у Kimiko ---------- */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    gap: 40px;
    margin-top: clamp(56px, 8.5vh, 96px);
}
.hero-stat { display: grid; gap: 8px; justify-items: center; }
.hero-stat strong {
    font-size: clamp(1.7rem, 2.8vw, 2.7rem);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.96);
    font-variant-numeric: tabular-nums;
}
.hero-stat span {
    max-width: 210px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    line-height: 1.35;
    font-weight: 500;
}
@media (max-width: 640px) {
    .hero-stats { grid-template-columns: 1fr; gap: 26px; margin-top: 48px; }
}

/* ---------- Магазин: тарифы в стиле Kimiko ---------- */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}
.store-tariff {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 26px;
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 18px !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color .16s var(--ease-out-quad), transform .16s var(--ease-out-quad),
        box-shadow .16s var(--ease-out-quad), background-color .16s var(--ease-out-quad) !important;
}
.store-tariff:hover {
    border-color: rgba(var(--gold-rgb), 0.4) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-pop) !important;
    background: var(--glass-bg-strong) !important;
}
.store-tariff-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.store-tariff-name {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.store-tariff-period { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.store-tariff-price {
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #fff;
}
.store-tariff-desc { margin: 0 0 14px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; flex: 1; }
.store-tariff .bv-store-btn { width: 100%; }
.store-tariff.is-featured {
    background: rgba(var(--gold-rgb), 0.05) !important;
    border-color: rgba(var(--gold-rgb), 0.45) !important;
}
.store-tariff.is-featured:hover { border-color: rgba(var(--gold-rgb), 0.65) !important; }

/* ---------- Страница клиента: hero-карточка ---------- */
.client-hero {
    padding: 40px !important;
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
}
.client-hero-title-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.client-hero-title-row img { height: 40px; width: auto; }
.client-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}
.client-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: border-color .16s var(--ease-out-quad), background-color .16s var(--ease-out-quad);
}
.client-feature:hover { border-color: rgba(var(--gold-rgb), 0.35); background: var(--glass-bg-strong); }
.client-feature svg { color: var(--gold-bright); flex-shrink: 0; }
.client-feature span { color: #e4e4e7; font-size: 0.92rem; font-weight: 500; }
.client-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    margin-bottom: 32px;
}
.client-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* v156 правки магазина: бейдж не налезает на период, иерархия кнопок */
.store-tariff .store-hit { top: -12px !important; right: 20px; border-radius: 999px !important; }

/* ---------- v159: client hero — финальный редизайн плашки ---------- */
.client-hero {
    position: relative;
    overflow: hidden;
    padding: 46px 48px !important;
    border-radius: 24px !important;
    background:
        radial-gradient(620px 280px at 10% -12%, rgba(224, 177, 82, 0.15), transparent 62%),
        var(--glass-bg) !important;
    border: 1px solid rgba(224, 177, 82, 0.22) !important;
}
.client-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 198, 113, 0.55), transparent);
}
.client-hero-logo {
    height: 54px;
    width: auto;
    filter: drop-shadow(0 4px 18px rgba(224, 177, 82, 0.25));
}
.client-hero-head { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.client-hero-head .version-badge { margin-left: auto; }
.client-hero-name { display: grid; gap: 3px; }
.client-hero-name h2 {
    margin: 0;
    color: #fff;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.client-hero-name span { color: var(--text-muted); font-size: 0.88rem; font-weight: 500; }
.client-hero-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0 0 26px;
    max-width: 620px;
}
.client-features { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 4px; }
.client-feature {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: #e4e4e7;
    font-size: 0.9rem;
    font-weight: 500;
    transition: border-color .16s var(--ease-out-quad), background-color .16s var(--ease-out-quad);
}
.client-feature:hover { border-color: rgba(var(--gold-rgb), 0.4); background: var(--glass-bg-strong); }
.client-feature svg { color: var(--gold-bright); flex-shrink: 0; }
.client-hero-divider {
    height: 1px;
    margin: 32px 0 30px;
    background: linear-gradient(90deg, rgba(224, 177, 82, 0.35), rgba(255, 255, 255, 0.08) 45%, transparent);
}
.client-cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.client-download-btn {
    height: 56px !important;
    padding: 0 46px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.05rem !important;
    white-space: nowrap;
    box-shadow: 0 8px 30px rgba(224, 177, 82, 0.25) !important;
}
.client-download-btn:disabled { box-shadow: none !important; }
.client-cta-side { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.client-cta-label { color: var(--m-muted, #8a8a93); font-size: 0.9rem; }
.client-guide-btn {
    height: 44px;
    padding: 0 22px;
    margin-left: auto;
    cursor: pointer;
    font-family: inherit;
    color: rgba(255, 255, 255, 0.88);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 0.9rem;
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border-strong) !important;
    border-radius: 999px !important;
    transition: background-color .16s var(--ease-out-quad), border-color .16s var(--ease-out-quad) !important;
}
.client-guide-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.32) !important;
}
@media (max-width: 700px) {
    .client-hero { padding: 34px 26px !important; }
    .client-hero-head .version-badge { margin-left: 0; }
    .client-download-btn { width: 100%; }
    .client-guide-btn { margin-left: 0; width: 100%; justify-content: center; }
}
.client-guide-btn { width: auto !important; flex: 0 0 auto; align-self: center; }

/* v161: «Руководство» — маленькая кнопка в шапке плашки */
.client-guide-btn {
    height: 34px !important;
    padding: 0 14px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    width: auto !important;
    flex: 0 0 auto;
}
.client-guide-btn svg { color: var(--gold-bright); }
.client-guide-btn:hover { color: #fff !important; }
@media (max-width: 700px) {
    .client-guide-btn { margin-left: 0; }
}

/* v162: «Руководство» — в ряду с кнопкой скачивания, правый край */
.client-cta-row .client-guide-btn { margin-left: auto; }
@media (max-width: 700px) {
    .client-cta-row .client-guide-btn { margin-left: 0; width: 100%; justify-content: center; }
}
