/* ===== DESIGN TOKENS ===== */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --bg-glass: rgba(22, 22, 31, 0.8);

    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b82;

    --accent-primary: #6C63FF;
    --accent-secondary: #FF6B8A;
    --accent-gradient: linear-gradient(135deg, #6C63FF 0%, #FF6B8A 100%);
    --accent-gradient-2: linear-gradient(135deg, #43E97B 0%, #38F9D7 100%);
    --accent-gradient-3: linear-gradient(135deg, #0EA5E9 0%, #6366F1 100%);

    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(108, 99, 255, 0.3);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(108, 99, 255, 0.15);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Sizing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --container-max: 1200px;
    --header-height: 72px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--text-secondary);
    margin-top: 12px;
    font-size: 1.05rem;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 100px;
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 99, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    background: rgba(108, 99, 255, 0.1);
    border-color: var(--accent-primary);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.btn-ghost {
    background: transparent;
    color: var(--accent-primary);
    padding: 8px 0;
}

.btn-ghost:hover {
    color: var(--accent-secondary);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s;
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 800;
    z-index: 101;
}

.logo-icon {
    font-size: 1.6rem;
}

.logo-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(108, 99, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(255, 107, 138, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 20% 70%, rgba(67, 233, 123, 0.06) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1.5);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.25);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CATEGORIES ===== */
.categories {
    padding: 100px 0;
}

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

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    text-align: left;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
}

.category-card.cat-accent {
    border-left-width: 3px;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.4s;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.category-card:hover::before {
    opacity: 0.05;
}

.category-card>* {
    position: relative;
    z-index: 1;
}

/* Thin-line SVG icon for categories */
.cat-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cat-info {
    flex: 1;
    min-width: 0;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 6px;
}

.category-price {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(108, 99, 255, 0.1);
    color: var(--accent-primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== FEATURED CHANNELS ===== */
.featured {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.channel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.4s ease;
    position: relative;
}

.channel-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.channel-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.channel-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.channel-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.channel-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
}

.channel-hero-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    flex-shrink: 0;
}

.channel-card-header h3 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.channel-link {
    font-size: 0.8rem;
    color: var(--accent-primary) !important;
}

.channel-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.stat {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    padding: 10px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.channel-prices {
    margin-bottom: 16px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.price-item:last-child {
    border-bottom: none;
}

.price {
    font-weight: 700;
    color: var(--text-primary);
}

/* ===== PACKAGES ===== */
.packages {
    padding: 100px 0;
}

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

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.package-popular {
    border-color: var(--accent-primary);
    background: linear-gradient(180deg, rgba(108, 99, 255, 0.08) 0%, var(--bg-card) 100%);
}

.package-ultimate {
    border-color: var(--accent-secondary);
    background: linear-gradient(180deg, rgba(255, 107, 138, 0.08) 0%, var(--bg-card) 100%);
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 0 32px;
    align-items: center;
}

.package-ultimate .package-icon {
    grid-row: 1 / 3;
}

.package-ultimate .package-features {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.package-ultimate .btn {
    grid-column: 3;
    grid-row: 1 / 4;
    width: auto;
    align-self: center;
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--accent-gradient);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.package-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.package-card h3 {
    margin-bottom: 6px;
}

.package-card>p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.package-features {
    margin-bottom: 24px;
}

.package-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.packages-note {
    margin-top: 40px;
}

.note-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    text-align: center;
}

.note-card h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.note-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 4px 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all 0.4s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.step-card h3 {
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
}

.cta-card {
    background: var(--accent-gradient);
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-card>* {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: white;
    margin-bottom: 12px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-primary {
    background: white;
    color: var(--accent-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-actions .btn-primary:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 12px;
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    padding: 4px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== CATALOG PAGE ===== */
.page-hero {
    padding: calc(var(--header-height) + 60px) 0 60px;
    background: var(--bg-secondary);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(108, 99, 255, 0.08) 0%, transparent 60%);
}

.page-hero>* {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-hero p {
    color: var(--text-secondary);
    margin-top: 12px;
    font-size: 1.1rem;
    max-width: 600px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb a:hover {
    color: var(--accent-primary);
}

.breadcrumb span {
    color: var(--text-muted);
}

/* Category Filter */
.catalog-section {
    padding: 60px 0 100px;
}

.catalog-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.filter-btn {
    padding: 8px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-secondary);
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(108, 99, 255, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Channel Table */
.category-section {
    margin-bottom: 60px;
    scroll-margin-top: calc(var(--header-height) + 20px);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.category-title-icon {
    font-size: 1.8rem;
}

.category-title h2 {
    font-size: 1.5rem;
}

.category-title .package-info {
    margin-left: auto;
    padding: 6px 16px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.channel-card .channel-category-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 100px;
    font-size: 0.72rem;
    color: var(--accent-primary);
    font-weight: 500;
    margin-bottom: 12px;
}

/* ===== CHANNEL DETAIL PAGE ===== */
.channel-hero {
    padding: calc(var(--header-height) + 80px) 0 60px;
    background: var(--bg-secondary);
    position: relative;
}

.channel-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(108, 99, 255, 0.1) 0%, transparent 60%);
}

.channel-hero>* {
    position: relative;
    z-index: 1;
}

.channel-hero-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.channel-hero-info {
    padding-right: 20px;
}

.channel-hero-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.channel-hero-info h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.channel-hero-info .channel-link {
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 16px;
}

.channel-hero-info>p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.channel-order-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 28px;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.channel-order-card h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.order-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.order-option:hover {
    border-color: var(--border-hover);
    background: rgba(108, 99, 255, 0.05);
}

.order-option-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.order-option-price {
    font-size: 1.1rem;
    font-weight: 700;
}

.channel-detail-section {
    padding: 60px 0;
}

.channel-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
}

.channel-detail-main {
    padding-right: 20px;
}

.channel-detail-main h2 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.channel-detail-main p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.benefits-list {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(4px);
    border-color: var(--border-hover);
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.08);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.12), rgba(108, 99, 255, 0.04));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.15rem;
}

.benefit-text {
    flex: 1;
    min-width: 0;
}

.benefit-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.benefit-text p {
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.6;
    color: var(--text-secondary);
}

.stats-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.stat-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}

.stat-detail-card .stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-detail-card .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* ===== BLOG ===== */
.blog-section {
    padding: 60px 0 100px;
}

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

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image .blog-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-primary);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content h3 a:hover {
    color: var(--accent-primary);
}

.blog-card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Blog Article */
.article-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 32px 100px;
}

.article-content h2 {
    margin: 40px 0 16px;
}

.article-content h3 {
    margin: 32px 0 12px;
}

.article-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.article-content ul,
.article-content ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--text-secondary);
}

.article-content li {
    list-style: disc;
    padding: 4px 0;
}

.article-content ol li {
    list-style: decimal;
}

.article-content blockquote {
    border-left: 3px solid var(--accent-primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--bg-card);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--text-secondary);
    font-style: italic;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-share {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.article-share h4 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.share-links {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
    cursor: pointer;
}

.share-btn:hover {
    border-color: var(--border-hover);
    background: rgba(108, 99, 255, 0.1);
}

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: 60px 0 100px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    font-size: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
}

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

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.value-card h3 {
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 60px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    padding-right: 20px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.contact-method:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-method h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-method p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.contact-form-card h3 {
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a0a0b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .package-ultimate {
        grid-column: span 2;
    }

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

    .channel-hero-content {
        grid-template-columns: 1fr;
    }

    .channel-order-card {
        position: static;
    }

    .channel-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #0a0a0f !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 10000;
        padding: 80px 20px 40px;
        overflow-y: auto;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
        padding: 12px 24px;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
    }

    .nav-links a::after {
        display: none !important;
    }

    .nav-cta {
        display: none;
    }

    .burger {
        display: flex;
        z-index: 10001;
        position: relative;
    }

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

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

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

    .burger.open span {
        background: #ffffff !important;
    }

    .hero-content {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 32px;
    }

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

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-ultimate {
        grid-column: span 1;
        display: block;
    }

    .package-ultimate .package-features {
        display: block;
    }

    .package-ultimate .btn {
        width: 100%;
        margin-top: 16px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .channels-grid {
        grid-template-columns: 1fr;
    }

    .stats-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .catalog-filters {
        justify-content: center;
    }

    .stats-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== UTILITY ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Selection */
::selection {
    background: rgba(108, 99, 255, 0.3);
    color: white;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.5);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ===== SEARCH BAR ===== */
.catalog-search {
    margin-bottom: 24px;
    position: relative;
}

.catalog-search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.catalog-search-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1), var(--shadow-glow);
}

.catalog-search-input::placeholder {
    color: var(--text-muted);
}

.catalog-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: color 0.3s;
}

.catalog-search-input:focus~.catalog-search-icon {
    color: var(--accent-primary);
}

.search-results-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: none;
}

.search-results-info.active {
    display: block;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.no-results.active {
    display: block;
}

.no-results h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.no-results p {
    color: var(--text-secondary);
}

/* ===== SORT CONTROLS ===== */
.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.sort-select {
    padding: 8px 36px 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a0a0b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.sort-select:focus {
    border-color: var(--accent-primary);
}

.sort-select option {
    background: var(--bg-card);
}

.channels-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 4rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-stars .star {
    color: #FFB800;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== BUDGET CALCULATOR ===== */
.calculator {
    padding: 100px 0;
}

.calculator-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
}

.calculator-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 32px;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-group.full-width {
    grid-column: span 2;
}

.calc-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.calc-group select,
.calc-group input[type="range"] {
    width: 100%;
}

.calc-group select {
    padding: 12px 36px 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a0a0b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.calc-group select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.calc-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.calc-range-wrapper {
    position: relative;
}

.calc-range-value {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    outline: none;
    margin-top: 8px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gradient);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(108, 99, 255, 0.4);
    transition: transform 0.2s;
}

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

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-primary);
    cursor: pointer;
    border: none;
}

.calc-result {
    background: rgba(108, 99, 255, 0.05);
    border: 1px solid rgba(108, 99, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}

.calc-result-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.calc-result-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.calc-result-details {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ===== ENHANCED MICRO-ANIMATIONS ===== */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 4px rgba(108, 99, 255, 0.2);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Card shimmer on hover */
.channel-card::after,
.category-card::after,
.package-card::after,
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.03), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.channel-card:hover::after,
.category-card:hover::after,
.package-card:hover::after,
.testimonial-card:hover::after {
    left: 100%;
}

/* Staggered fade-in */
.fade-in-stagger>*:nth-child(1) {
    transition-delay: 0.05s;
}

.fade-in-stagger>*:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-in-stagger>*:nth-child(3) {
    transition-delay: 0.15s;
}

.fade-in-stagger>*:nth-child(4) {
    transition-delay: 0.2s;
}

.fade-in-stagger>*:nth-child(5) {
    transition-delay: 0.25s;
}

.fade-in-stagger>*:nth-child(6) {
    transition-delay: 0.3s;
}

/* Smooth button press effect */
.btn:active {
    transform: scale(0.97);
}

/* Channel card hover glow border */
.channel-card {
    overflow: hidden;
}

/* Stat value animated highlight */
.stat-detail-card:hover .stat-value {
    animation: pulse-glow 1.5s ease infinite;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calculator-form {
        grid-template-columns: 1fr;
    }

    .calc-group.full-width {
        grid-column: span 1;
    }
}

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

    .calculator-card {
        padding: 28px 20px;
    }

    .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .sort-controls {
        justify-content: space-between;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .calc-result-price {
        font-size: 2rem;
    }
}

/* ===== BLOG ARTICLE STYLES ===== */
.blog-article {
    padding: 120px 0 60px;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 32px;
    text-align: center;
}

.article-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.article-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.article-hero-image {
    max-width: 800px;
    margin: 0 auto 40px;
    height: 300px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.article-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.article-hero-icon {
    font-size: 6rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.article-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 32px 60px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.article-inline-image {
    margin: 32px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.article-inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content p {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 48px 0 20px;
    color: var(--text-primary);
    position: relative;
    padding-left: 16px;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: var(--primary);
}

.article-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 32px 0 12px;
}

.article-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content a:hover {
    color: var(--primary-hover);
}

.article-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Channel Widget */
.article-channel-widget {
    margin: 40px 0;
    padding: 24px;
    background: rgba(108, 99, 255, 0.06);
    border: 1px solid rgba(108, 99, 255, 0.15);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.article-channel-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #FF6B8A);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.widget-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.widget-header strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.widget-header span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.widget-header span a {
    color: var(--primary);
}

.widget-channels {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.widget-channel-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.widget-channel-card:hover {
    border-color: var(--primary);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(108, 99, 255, 0.15);
}

.widget-channel-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.widget-channel-info {
    flex: 1;
    min-width: 0;
}

.widget-channel-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.widget-channel-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.widget-channel-price {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    white-space: nowrap;
}

.widget-cta {
    display: block;
    text-align: center;
    padding: 10px;
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.widget-cta:hover {
    background: rgba(108, 99, 255, 0.1);
}

/* Article CTA Box */
.article-cta-box {
    margin: 48px 0;
    padding: 32px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.12), rgba(255, 107, 138, 0.12));
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
}

.article-cta-box h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.article-cta-box p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Related Articles */
.related-articles {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.related-articles h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.related-article-card {
    display: block;
    text-decoration: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-article-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.related-article-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-secondary);
    position: relative;
}

.related-article-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, var(--bg-card), transparent);
    pointer-events: none;
}

.related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-article-card:hover .related-article-image img {
    transform: scale(1.08);
}

.related-article-image span {
    font-size: 2.5rem;
}

.related-article-card h4 {
    padding: 16px 20px;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--text-primary);
    font-weight: 600;
}

/* Blog Filters */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    justify-content: center;
}

.blog-filter-btn {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
}

.blog-load-more {
    display: block;
    margin: 32px auto 0;
    padding: 14px 40px;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 1.6rem;
    }

    .article-hero-image {
        height: 200px;
    }

    .article-hero-icon {
        font-size: 4rem;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
    }

    .article-content h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.4rem;
    }

    .article-meta {
        font-size: 0.8rem;
    }
}

/* ===== CHAT WIDGET ===== */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    font-family: var(--font-family);
}

.chat-widget-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0088cc 0%, #0EA5E9 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chat-widget-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 136, 204, 0.5);
}

.chat-widget-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
    transition: transform 0.3s;
}

.chat-widget-btn .chat-close-icon {
    display: none;
}

.chat-widget.open .chat-widget-btn .chat-tg-icon {
    display: none;
}

.chat-widget.open .chat-widget-btn .chat-close-icon {
    display: block;
}

.chat-widget-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0088cc 0%, #0EA5E9 100%);
    opacity: 0.3;
    animation: chatPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes chatPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.chat-widget.open .chat-widget-btn::before {
    animation: none;
    opacity: 0;
}

.chat-widget-popup {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform-origin: bottom right;
}

.chat-widget.open .chat-widget-popup {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-popup-header {
    background: linear-gradient(135deg, #0088cc 0%, #0EA5E9 100%);
    padding: 20px 24px;
    color: white;
}

.chat-popup-header h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.chat-popup-header p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.chat-popup-body {
    padding: 20px 24px;
}

.chat-popup-message {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
}

.chat-popup-message::before {
    content: '💬';
    position: absolute;
    top: -10px;
    left: 16px;
    font-size: 1.2rem;
}

.chat-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-popup-actions .btn {
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: var(--radius-md);
}

.chat-popup-actions .btn-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #0EA5E9 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.chat-popup-actions .btn-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 136, 204, 0.4);
}

.chat-popup-footer {
    padding: 12px 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.chat-popup-online {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #43E97B;
    margin-top: 8px;
}

.chat-popup-online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #43E97B;
    border-radius: 50%;
    animation: onlinePulse 2s infinite;
}

@keyframes onlinePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ===== REVIEWS PAGE ===== */
.reviews-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.reviews-hero h1 {
    margin-bottom: 16px;
}

.reviews-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.review-stat {
    text-align: center;
}

.review-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.reviews-section {
    padding: 60px 0 100px;
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.4s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-stars {
    color: #FFC107;
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.review-text strong {
    color: var(--text-primary);
}

.review-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 4px 12px;
    background: rgba(0, 136, 204, 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    color: #0EA5E9;
}

.reviews-cta {
    text-align: center;
    padding: 60px 0;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    margin-top: 60px;
}

.reviews-cta h2 {
    margin-bottom: 12px;
}

.reviews-cta p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

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

    .reviews-stats {
        gap: 24px;
    }
}

/* ===== BLOG AUTHOR BLOCK ===== */
.article-author {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 40px 0;
}

.article-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--accent-primary);
}

.article-author-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.article-author-info .author-role {
    font-size: 0.85rem;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.article-author-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== READING PROGRESS BAR ===== */
.reading-progress {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-gradient);
    z-index: 999;
    transition: width 0.1s linear;
}

/* ===== TABLE OF CONTENTS ===== */
.article-toc {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 24px 0;
}

.article-toc h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-toc ol {
    list-style: decimal;
    padding-left: 20px;
}

.article-toc li {
    padding: 6px 0;
    font-size: 0.9rem;
}

.article-toc a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.article-toc a:hover {
    color: var(--accent-primary);
}

/* ===== KEY TAKEAWAY BOXES ===== */
.key-takeaway {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 138, 0.05) 100%);
    border-left: 4px solid var(--accent-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.key-takeaway h5 {
    font-size: 0.9rem;
    color: var(--accent-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.key-takeaway p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
    --bg-primary: #f5f5fa;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f0f5;
    --bg-glass: rgba(255, 255, 255, 0.85);

    --text-primary: #1a1a2e;
    --text-secondary: #555570;
    --text-muted: #8888a0;

    --accent-primary: #5B52E5;
    --accent-secondary: #E8557A;
    --accent-gradient: linear-gradient(135deg, #5B52E5 0%, #E8557A 100%);

    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(91, 82, 229, 0.3);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(91, 82, 229, 0.08);
}

[data-theme="light"] body {
    background: var(--bg-primary);
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .logo-text {
    color: #1a1a2e;
}

[data-theme="light"] .nav-links a {
    color: #555570;
}

[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active {
    color: #5B52E5;
}

[data-theme="light"] .page-hero,
[data-theme="light"] .hero {
    background: linear-gradient(135deg, #e8e6ff 0%, #f5f0ff 50%, #fff0f3 100%);
}

[data-theme="light"] .page-hero h1,
[data-theme="light"] .hero h1 {
    color: #1a1a2e;
}

[data-theme="light"] .page-hero p,
[data-theme="light"] .hero p {
    color: #555570;
}

[data-theme="light"] .gradient-text {
    background: linear-gradient(135deg, #5B52E5, #E8557A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .channel-card,
[data-theme="light"] .blog-card,
[data-theme="light"] .review-card,
[data-theme="light"] .related-article-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .feature-card,
[data-theme="light"] .stat-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .channel-card:hover,
[data-theme="light"] .blog-card:hover,
[data-theme="light"] .review-card:hover,
[data-theme="light"] .related-article-card:hover {
    box-shadow: 0 8px 30px rgba(91, 82, 229, 0.1);
    border-color: rgba(91, 82, 229, 0.2);
}

[data-theme="light"] .article-content {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .article-author {
    background: linear-gradient(135deg, #f0eeff 0%, #fff0f3 100%);
    border-color: rgba(91, 82, 229, 0.15);
}

[data-theme="light"] .article-toc {
    background: #f8f8ff;
    border-color: rgba(91, 82, 229, 0.12);
}

[data-theme="light"] .key-takeaway {
    background: linear-gradient(135deg, rgba(91, 82, 229, 0.06) 0%, rgba(232, 85, 122, 0.04) 100%);
    border-left-color: #5B52E5;
}

[data-theme="light"] blockquote {
    background: #f8f8ff;
    border-left-color: #5B52E5;
    color: #555570;
}

[data-theme="light"] .footer {
    background: #1a1a2e;
    color: #f0f0f5;
}

[data-theme="light"] .blog-filter-btn {
    background: #ffffff;
    color: #555570;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .blog-filter-btn:hover,
[data-theme="light"] .blog-filter-btn.active {
    background: #5B52E5;
    color: #ffffff;
    border-color: #5B52E5;
}

[data-theme="light"] .blog-card-content h3 {
    color: #1a1a2e;
}

[data-theme="light"] .article-channel-widget {
    background: linear-gradient(135deg, #f0eeff 0%, #eef8ff 100%);
    border-color: rgba(91, 82, 229, 0.12);
}

[data-theme="light"] .widget-channel-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .article-cta-box {
    background: linear-gradient(135deg, #5B52E5, #E8557A);
    color: #ffffff;
}

[data-theme="light"] .article-cta-box p {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .breadcrumb a {
    color: #5B52E5;
}

[data-theme="light"] .breadcrumb span {
    color: #8888a0;
}

[data-theme="light"] .reviews-hero {
    background: linear-gradient(135deg, #e8e6ff 0%, #f5f0ff 50%, #fff0f3 100%);
}

[data-theme="light"] .stat-number {
    color: #1a1a2e;
}

[data-theme="light"] .burger span {
    background: #1a1a2e;
}

[data-theme="light"] .chat-widget-popup {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .chat-widget-popup h4,
[data-theme="light"] .chat-widget-popup p {
    color: #1a1a2e;
}

[data-theme="light"] .back-to-top {
    background: #ffffff;
    color: #5B52E5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .article-badge {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .article-meta span {
    color: #8888a0;
}

[data-theme="light"] .article-hero-image {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Smooth transition for theme change */
body,
.header,
.footer,
.channel-card,
.blog-card,
.review-card,
.article-content,
.related-article-card,
.pricing-card,
.feature-card,
.stat-card,
.chat-widget-popup,
.back-to-top,
.blog-filter-btn,
.article-author,
.article-toc,
.key-takeaway,
blockquote,
.article-channel-widget,
.widget-channel-card,
.breadcrumb a,
.breadcrumb span {
    transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

@media (max-width: 768px) {
    .theme-toggle {
        top: auto;
        bottom: 90px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

/* ===== CONTACT PAGE (Telegram-focused) ===== */
.contact-telegram-hero {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 0 80px;
    text-align: center;
}

.contact-telegram-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.contact-telegram-hero h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.contact-telegram-hero>p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-tg-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 1.1rem;
    margin-bottom: 48px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 24px rgba(108, 99, 255, 0.3);
    }

    50% {
        box-shadow: 0 8px 40px rgba(108, 99, 255, 0.5);
    }
}

.contact-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
    margin-bottom: 40px;
}

.contact-benefit {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.contact-benefit:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-benefit h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-benefit p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-working-hours {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: left;
}

.contact-working-hours span {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-working-hours p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .contact-benefits {
        grid-template-columns: 1fr;
    }

    .contact-telegram-hero h2 {
        font-size: 1.6rem;
    }
}

/* ===== LIGHT THEME FIXES ===== */

/* Fix hero sections in light theme to have light-colored text */
[data-theme="light"] .page-hero {
    background: linear-gradient(135deg, #ebe8ff 0%, #f3eeff 50%, #fff0f3 100%);
}

/* Fix .blog-card-content padding and text in light mode */
[data-theme="light"] .blog-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .blog-card-content p {
    color: #666680;
}

[data-theme="light"] .blog-card-meta {
    color: #8888a0;
}

[data-theme="light"] .blog-tag {
    background: rgba(255, 255, 255, 0.85) !important;
    color: #5B52E5 !important;
}

/* Fix article page text in light theme */
[data-theme="light"] .article-content p {
    color: #2a2a40;
}

[data-theme="light"] .article-content ul,
[data-theme="light"] .article-content ol {
    color: #2a2a40;
}

[data-theme="light"] .article-content li {
    color: #2a2a40;
}

[data-theme="light"] .article-content blockquote {
    background: #f5f5ff;
    border-left-color: #5B52E5;
    color: #333350;
}

[data-theme="light"] .article-content strong {
    color: #1a1a2e;
}

[data-theme="light"] .article-content h2,
[data-theme="light"] .article-content h3 {
    color: #1a1a2e;
}

/* Related articles in light theme */
[data-theme="light"] .related-article-image {
    background: #f0f0f5;
}

[data-theme="light"] .related-article-card h4 {
    color: #1a1a2e;
}

/* Contact page light theme */
[data-theme="light"] .contact-benefit {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .contact-working-hours {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
}

/* Fix mobile nav in light theme */
@media (max-width: 768px) {
    [data-theme="light"] .nav-links {
        background: #ffffff !important;
    }

    [data-theme="light"] .nav-links a {
        color: #1a1a2e !important;
        -webkit-text-fill-color: #1a1a2e !important;
    }

    [data-theme="light"] .burger.open span {
        background: #1a1a2e !important;
    }
}

/* Fix select and input in light theme */
[data-theme="light"] select,
[data-theme="light"] input,
[data-theme="light"] textarea {
    background: #ffffff;
    color: #1a1a2e;
    border-color: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] select:focus,
[data-theme="light"] input:focus,
[data-theme="light"] textarea:focus {
    border-color: #5B52E5;
}

/* Fix calculator and pricing in light theme */
[data-theme="light"] .calculator-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .pricing-card {
    background: #ffffff;
}

[data-theme="light"] .pricing-card.featured {
    border-color: #5B52E5;
}

/* Fix about page light theme */
[data-theme="light"] .about-mission,
[data-theme="light"] .team-member {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
}

/* ===== ENHANCED LIGHT THEME UX ===== */

/* Hero badge */
[data-theme="light"] .hero-badge {
    background: rgba(91, 82, 229, 0.08);
    color: #5B52E5;
    border: 1px solid rgba(91, 82, 229, 0.15);
}

/* Section badges */
[data-theme="light"] .section-badge {
    background: rgba(91, 82, 229, 0.08);
    color: #5B52E5;
    border: 1px solid rgba(91, 82, 229, 0.12);
}

/* Hero stats in light */
[data-theme="light"] .hero-stat-number {
    color: #1a1a2e;
}

[data-theme="light"] .hero-stat-label {
    color: #555570;
}

/* Category cards in light */
[data-theme="light"] .category-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .category-card:hover {
    box-shadow: 0 8px 30px rgba(91, 82, 229, 0.12);
    border-color: rgba(91, 82, 229, 0.2);
    transform: translateY(-4px);
}

[data-theme="light"] .category-card h3 {
    color: #1a1a2e;
}

[data-theme="light"] .category-card p {
    color: #555570;
}

[data-theme="light"] .category-price {
    color: #5B52E5;
}

/* Package cards light */
[data-theme="light"] .package-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .package-card:hover {
    box-shadow: 0 8px 30px rgba(91, 82, 229, 0.1);
    border-color: rgba(91, 82, 229, 0.2);
}

[data-theme="light"] .package-popular {
    border-color: #5B52E5;
    box-shadow: 0 4px 20px rgba(91, 82, 229, 0.12);
}

[data-theme="light"] .package-ultimate {
    border-color: #E8557A;
}

[data-theme="light"] .package-card h3 {
    color: #1a1a2e;
}

[data-theme="light"] .package-card p {
    color: #555570;
}

/* Step cards */
[data-theme="light"] .step-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .step-card:hover {
    box-shadow: 0 8px 24px rgba(91, 82, 229, 0.1);
    border-color: rgba(91, 82, 229, 0.2);
}

[data-theme="light"] .step-card h3 {
    color: #1a1a2e;
}

[data-theme="light"] .step-card p {
    color: #555570;
}

/* Testimonial cards */
[data-theme="light"] .testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .testimonials {
    background: #f0f0f8;
}

[data-theme="light"] .testimonial-text {
    color: #444460;
}

/* Value cards */
[data-theme="light"] .value-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Buttons in light theme */
[data-theme="light"] .btn-outline {
    color: #5B52E5;
    border-color: rgba(91, 82, 229, 0.3);
}

[data-theme="light"] .btn-outline:hover {
    background: rgba(91, 82, 229, 0.06);
    border-color: #5B52E5;
}

/* Filter buttons */
[data-theme="light"] .filter-btn {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #555570;
}

[data-theme="light"] .filter-btn:hover {
    background: rgba(91, 82, 229, 0.06);
    border-color: rgba(91, 82, 229, 0.2);
    color: #5B52E5;
}

[data-theme="light"] .filter-btn.active {
    background: #5B52E5;
    color: #ffffff;
    border-color: #5B52E5;
}

/* Sort select */
[data-theme="light"] .sort-select {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    color: #1a1a2e;
}

/* CTA section */
[data-theme="light"] .cta-section {
    background: linear-gradient(135deg, #f0eeff 0%, #fff0f3 100%);
}

[data-theme="light"] .cta-card {
    background: linear-gradient(135deg, #5B52E5, #E8557A);
}

/* Note card */
[data-theme="light"] .note-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #1a1a2e;
}

[data-theme="light"] .note-card p {
    color: #555570;
}

/* Category title section */
[data-theme="light"] .category-title h2 {
    color: #1a1a2e;
}

[data-theme="light"] .package-info {
    color: #5B52E5;
}

/* Channel hero (detail page) */
[data-theme="light"] .channel-hero {
    background: linear-gradient(135deg, #ebe8ff 0%, #f3eeff 50%, #fff0f3 100%);
}

[data-theme="light"] .channel-hero h1 {
    color: #1a1a2e;
}

[data-theme="light"] .channel-order-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .order-option {
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .order-option-price {
    color: #5B52E5;
}

[data-theme="light"] .stat-detail-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .benefit-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .benefit-item:hover {
    background: #fafafe;
    border-color: rgba(108, 99, 255, 0.25);
    box-shadow: 0 4px 24px rgba(108, 99, 255, 0.08);
}

[data-theme="light"] .benefit-icon {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(108, 99, 255, 0.03));
}

[data-theme="light"] .benefit-text h4 {
    color: #1a1a2e;
}

[data-theme="light"] .benefit-text p {
    color: #555570;
}

/* Regional info text in light mode */
[data-theme="light"] .category-section p[style*="color: rgba(255,255,255,0.6)"] {
    color: #555570 !important;
}

/* ===== MOBILE LAYOUT FIXES ===== */

@media (max-width: 768px) {

    /* Fix filter buttons horizontal scroll on mobile */
    .catalog-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .catalog-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Fix catalog toolbar stacking on mobile */
    .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .sort-controls {
        justify-content: flex-end;
    }

    /* Fix hero text sizing */
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    /* Fix channel detail page mobile */
    .channel-hero-content {
        gap: 24px;
    }

    .channel-order-card {
        margin-top: 0;
    }

    /* Fix testimonials grid on mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Chat widget positioning */
    .chat-widget {
        bottom: 16px !important;
        right: 12px !important;
    }

    .chat-widget-popup {
        right: 0 !important;
        bottom: 60px !important;
        width: calc(100vw - 24px) !important;
        max-width: 360px !important;
    }

    /* Back to top and theme toggle on mobile — avoid overlapping */
    .back-to-top {
        bottom: 24px;
        right: 72px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Fix channel card padding */
    .channel-card {
        padding: 16px;
    }

    .channel-card-header h3 {
        font-size: 0.95rem;
    }
}

/* ===== SVG ICON CONTAINERS (replace emojis) ===== */
.icon-gradient {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-gradient svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-gradient.beauty {
    background: linear-gradient(135deg, #FF6B8A, #FF8E53);
}

.icon-gradient.design {
    background: linear-gradient(135deg, #667EEA, #764BA2);
}

.icon-gradient.sport {
    background: linear-gradient(135deg, #43E97B, #38F9D7);
}

.icon-gradient.hobby {
    background: linear-gradient(135deg, #F6D365, #FDA085);
}

.icon-gradient.cooking {
    background: linear-gradient(135deg, #FA709A, #FEE140);
}

.icon-gradient.animals {
    background: linear-gradient(135deg, #A18CD1, #FBC2EB);
}

.icon-gradient.travel {
    background: linear-gradient(135deg, #0EA5E9, #6366F1);
}

.icon-gradient.brand {
    background: linear-gradient(135deg, #667EEA, #0EA5E9);
}

.icon-gradient.tours {
    background: linear-gradient(135deg, #F97316, #EF4444);
}

.icon-gradient.flights {
    background: linear-gradient(135deg, #0EA5E9, #6366F1);
}

.icon-gradient.fire {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.icon-gradient.target {
    background: linear-gradient(135deg, #6C63FF, #E8557A);
}

.icon-gradient.money {
    background: linear-gradient(135deg, #43E97B, #38F9D7);
}

.icon-gradient.rocket {
    background: linear-gradient(135deg, #6C63FF, #E8557A);
}

.icon-gradient.star {
    background: linear-gradient(135deg, #FFB800, #FF8E53);
}

.icon-gradient.clipboard {
    background: linear-gradient(135deg, #0EA5E9, #6366F1);
}

.icon-gradient.chat {
    background: linear-gradient(135deg, #A18CD1, #FBC2EB);
}

.icon-gradient.calc {
    background: linear-gradient(135deg, #43E97B, #0EA5E9);
}

/* Category icon container on home page */
.category-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.category-icon-box svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Package icon box on home page */
.package-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.package-icon-box svg {
    width: 26px;
    height: 26px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}