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

:root {
    --primary: #FCD535;
    --primary-hover: #F0B90B;
    --red: #F6465D;
    --green: #0ECB81;
    --bg: #0B0E11;
    --bg-card: #16181C;
    --bg-card-hover: #1E2026;
    --bg-elevated: #20232A;
    --text: #EAECEF;
    --text-secondary: #B7BDC6;
    --text-muted: #848E9C;
    --border: #2B3139;
    --border-light: #363A45;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(11, 14, 17, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: var(--text);
    flex-shrink: 0;
    white-space: nowrap;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: #0B0E11;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-menu a:hover {
    color: var(--text);
    background: var(--bg-card);
}

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

.btn-login {
    color: var(--text) !important;
    background: transparent;
    border: none;
    padding: 10px 20px !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-login:hover {
    background: var(--bg-card);
}

.btn-register {
    background: var(--primary) !important;
    color: #0B0E11 !important;
    border: none;
    padding: 10px 24px !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-register:hover {
    background: var(--primary-hover) !important;
}

.lang-switcher {
    display: flex;
    gap: 2px;
    margin-right: 8px;
}

.mobile-lang-switcher {
    display: none;
    gap: 4px;
}

.lang-btn {
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted) !important;
    background: transparent;
    transition: all 0.2s;
    text-decoration: none;
}

.lang-btn:hover {
    color: var(--text) !important;
}

.lang-btn.active {
    background: var(--bg-card);
    color: var(--primary) !important;
}

.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(252, 213, 53, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 213, 53, 0.08);
    border: 1px solid rgba(252, 213, 53, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 32px;
    font-weight: 500;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text);
    letter-spacing: -0.5px;
}

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

.text-red {
    color: var(--red);
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
}

.btn-primary {
    background: var(--primary);
    color: #0B0E11;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--text-muted);
    background: var(--bg-card);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
    height: 480px;
}

.dashboard-preview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0;
    width: 380px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.dashboard-header {
    display: flex;
    gap: 6px;
    padding: 14px 18px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

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

.dashboard-dot:nth-child(1) { background: #F6465D; }
.dashboard-dot:nth-child(2) { background: #FCD535; }
.dashboard-dot:nth-child(3) { background: #0ECB81; }

.dashboard-content {
    padding: 16px;
}

.dashboard-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: var(--bg);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
    align-items: center;
}

.dashboard-item:last-child {
    margin-bottom: 0;
}

.dashboard-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.dashboard-icon.icon-video {
    background: rgba(246, 70, 93, 0.15);
}

.dashboard-icon.icon-stats {
    background: rgba(14, 203, 129, 0.15);
}

.dashboard-icon.icon-schedule {
    background: rgba(252, 213, 53, 0.15);
}

.dashboard-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.dashboard-subtitle {
    font-size: 12px;
    color: var(--text-muted);
}

.dashboard-status {
    margin-left: auto;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
}

.status-ready {
    color: var(--green);
    background: rgba(14, 203, 129, 0.1);
}

.status-process {
    color: var(--primary);
    background: rgba(252, 213, 53, 0.1);
}

.status-live {
    color: var(--red);
    background: rgba(246, 70, 93, 0.1);
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20px;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 60px;
    right: -10px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 40px;
    left: 10px;
    animation-delay: 4s;
}

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

.card-icon {
    font-size: 24px;
}

.card-text {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

.platforms {
    padding: 80px 0;
    background: var(--bg-card);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.section-title .text-yellow {
    color: var(--primary);
}

.section-description {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.platforms-category {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 40px 0 20px 0;
    padding-left: 12px;
    border-left: 3px solid var(--primary);
}

.platforms-category:first-of-type {
    margin-top: 0;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.platform-card:hover {
    border-color: var(--border-light);
    background: var(--bg-elevated);
    transform: translateY(-2px);
}

.platform-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 10px;
    color: white;
}

.platform-logo.youtube { background: #FF0000; }
.platform-logo.instagram { background: linear-gradient(135deg, #E4405F, #C13584, #833AB4); }
.platform-logo.tiktok { background: #000; border: 1px solid var(--border); }
.platform-logo.facebook { background: #1877F2; }
.platform-logo.twitter { background: #000; border: 1px solid var(--border); }
.platform-logo.linkedin { background: #0077B5; }
.platform-logo.telegram { background: #0088CC; }
.platform-logo.whatsapp { background: #25D366; }
.platform-logo.pinterest { background: #E60023; }
.platform-logo.snapchat { background: #FFFC00; color: #000; }
.platform-logo.reddit { background: #FF4500; }
.platform-logo.threads { background: #000; border: 1px solid var(--border); }
.platform-logo.discord { background: #5865F2; }
.platform-logo.twitch { background: #9146FF; }
.platform-logo.vimeo { background: #1AB7EA; }
.platform-logo.dailymotion { background: #0066DC; }
.platform-logo.tumblr { background: #36465D; }
.platform-logo.viber { background: #665CAC; }
.platform-logo.vk { background: #0077FF; }
.platform-logo.ok { background: #EE8208; }
.platform-logo.yandex-zen { background: #FC3F1D; }
.platform-logo.rutube { background: #FF0000; }
.platform-logo.yandex-music { background: #FFDB4D; color: #000; }
.platform-logo.mailru { background: #005FF9; }
.platform-logo.pikabu { background: #FF6B00; }
.platform-logo.avito { background: #00A0E3; }

.platform-name {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 12px;
}

.media-agencies {
    padding: 100px 0;
    background: var(--bg);
    position: relative;
}

.media-agencies-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.media-agencies-visual {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.media-icon-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

.media-icon {
    height: 100px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: all 0.3s;
}

.media-icon:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(252, 213, 53, 0.1);
}

.media-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    width: 100%;
}

.flow-item {
    padding: 10px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.flow-arrow {
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
}

.media-agencies-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.media-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 213, 53, 0.08);
    border: 1px solid rgba(252, 213, 53, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary);
    width: fit-content;
    font-weight: 500;
}

.media-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin: 0;
}

.media-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.media-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0;
}

.media-feature-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.2s;
}

.media-feature-item:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.media-feature-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.media-feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.media-feature-text strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.media-feature-text span {
    font-size: 13px;
    color: var(--text-muted);
}

.features {
    padding: 80px 0;
    background: var(--bg);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 28px;
    transition: all 0.2s;
}

.feature-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    background: rgba(252, 213, 53, 0.08);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.how-it-works {
    padding: 80px 0;
    background: var(--bg-card);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s;
    position: relative;
}

.step:hover {
    border-color: var(--border-light);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 20px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.step-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.pricing {
    padding: 80px 0;
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 32px;
    position: relative;
    transition: all 0.2s;
}

.pricing-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: var(--bg-card);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #0B0E11;
    padding: 4px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: 28px;
}

.pricing-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(252, 213, 53, 0.05);
}

.cta {
    padding: 100px 0;
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(252, 213, 53, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.cta-content {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.cta-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.cta-note {
    font-size: 13px;
    color: var(--text-muted);
}

.footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 60px;
    margin-bottom: 36px;
}

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

.footer-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--text);
}

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

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

@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title { font-size: 40px; }
    .hero-visual { display: none; }

    .features-grid,
    .pricing-grid { grid-template-columns: 1fr; }

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

    .platforms-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .nav-menu { gap: 4px; }

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

    .media-agencies-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .media-title { font-size: 28px; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-lang-switcher { display: flex; }
    .nav-right .lang-switcher { display: none; }
    .nav-content { height: 56px; }

    .hero { padding: 100px 0 60px; }
    .hero-title { font-size: 32px; }
    .section-title { font-size: 28px; }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-actions { flex-direction: column; }
    .cta-buttons { flex-direction: column; }

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