/* Общие стили и переменные */
:root {
    --bg-color: #0b0914;
    --card-bg: #141126;
    --primary: #7c3aed;
    --primary-hover: #6d28d9;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка сайта */
header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: var(--text-main);
}

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

/* Кастомная векторная стрелка вместо буквы 'o' - теперь белая и аккуратная */
.logo-arrow {
    width: 22px;
    height: 22px;
    margin-left: 2px;
    transform: translateY(3px);
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 25px;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--primary);
}

/* Главный экран (Hero) */
.hero {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0;
    }
    .header-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    nav a {
        margin: 0 10px;
    }
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.slogan {
    font-size: 20px;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 25px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--accent-green);
    display: inline-block;
    border-radius: 0 8px 8px 0;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

@media (max-width: 768px) {
    .hero-content p {
        margin: 0 auto 35px;
    }
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

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

.image-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 24px; /* Если хотите скругленные края как в дизайне */
}

/* Плейсхолдер для картинки художников */
.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: radial-gradient(circle at center, #1e1938 0%, var(--card-bg) 100%);
    border: 2px dashed rgba(124, 58, 237, 0.4);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.placeholder-text {
    position: relative;
    z-index: 1;
}

.placeholder-text svg {
    width: 48px;
    height: 48px;
    fill: var(--text-muted);
    margin-bottom: 15px;
    opacity: 0.7;
}

.placeholder-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #a78bfa;
}

.placeholder-text p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 280px;
}

/* Секция: Как это работает */
.steps-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.step-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    transition: transform 0.2s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-num {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(124, 58, 237, 0.1);
    line-height: 1;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.step-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Секция: Тарифы */
.tariffs-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, var(--bg-color) 0%, #100d21 100%);
}

.tariff-main-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

@media (max-width: 480px) {
    .tariff-main-card {
        padding: 20px;
    }
}

.tariff-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.tariff-header h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.tariff-header .price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.tariff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

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

.tariff-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.tariff-item span:first-child {
    color: var(--text-muted);
    font-size: 15px;
}

.tariff-item span:last-child {
    font-weight: 700;
    color: var(--text-main);
}

.tariff-alert {
    background: rgba(239, 68, 68, 0.07);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.tariff-alert svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.tariff-alert p {
    font-size: 13px;
    color: #fca5a5;
    line-height: 1.5;
}

/* Футер */
footer {
    background-color: #07050d;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: var(--text-muted);
}

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

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

.footer-info h4 {
    color: var(--text-main);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.footer-links h4 {
    color: var(--text-main);
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 12px;
}
