:root {
    --bg-color: #111111;
    --text-color: #FFFFFF;
    --card-bg: #F2F2F2; 
    --card-text: #111111;
    --accent: #8A2BE2; 
    --accent-light: #DAB4FF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

/* --- ТИПОГРАФИКА --- */
h1, h2, h3 { font-weight: 400; }

.serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.section-tag {
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 20px;
    display: inline-block;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(315deg, #1a0b2e 0%, #111111 50%, #2b0b1e 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero h1 { font-size: clamp(40px, 8vw, 80px); line-height: 1.1; margin-bottom: 30px; }
.hero h1 span { display: block; }

.hero-btn {
    background: transparent; border: 1px solid rgba(255,255,255,0.3); color: white;
    padding: 15px 40px; border-radius: 50px; text-transform: uppercase;
    font-size: 12px; letter-spacing: 2px; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-btn:hover { background: white; color: black; transform: scale(1.05); }

/* --- КАРТОЧКИ --- */
.white-card-section { padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } }

.white-card {
    background: var(--card-bg); color: var(--card-text); border-radius: 30px; padding: 40px;
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 300px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.white-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card-tag {
    display: inline-block; 
    background: #111; 
    color: white; 
    padding: 8px 16px; 
    border-radius: 20px;
    font-size: 12px; 
    margin-bottom: 40px; 
}

.white-card h3 { font-size: 24px; margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.white-card p { font-size: 16px; line-height: 1.6; opacity: 0.8; }

/* Стиль для блока "Для кого" */
.role-card {
    border: 1px solid #333;
    padding: 30px;
    border-radius: 20px;
    background: #161616;
}
.role-title { font-size: 20px; font-weight: 700; color: white; margin-bottom: 10px; }
.role-desc { font-size: 14px; color: #888; }

/* --- БЛОК ЦЕНЫ (ШТРИХ-КОД) --- */
.price-container {
    border: 1px solid #444; border-radius: 30px; padding: 40px;
    margin: 60px 0; background: #0f0f0f; position: relative;
}

.price-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }

.barcode {
    height: 50px; width: 150px; opacity: 0.7;
    background: repeating-linear-gradient(90deg, #fff 0px, #fff 2px, transparent 2px, transparent 4px, #fff 4px, #fff 8px);
}
.price-list li {
    list-style: none; padding: 15px 0; border-bottom: 1px solid #333;
    display: flex; align-items: center;
}
.price-list li::before { content: "/"; margin-right: 15px; color: var(--accent); }

.big-btn {
    background: var(--accent); color: white; width: 100%; padding: 25px;
    border-radius: 50px; text-align: center; font-size: 20px; font-weight: 600;
    text-decoration: none; display: block; margin-top: 40px;
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.3);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 10px 40px rgba(138, 43, 226, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 15px 50px rgba(138, 43, 226, 0.5); }
    100% { transform: scale(1); box-shadow: 0 10px 40px rgba(138, 43, 226, 0.3); }
}

.big-btn:hover { animation: none; transform: scale(1.03); }

.price-val { text-align: right; font-size: 32px; font-family: 'Playfair Display', serif; font-style: italic; margin-bottom: 5px; }
.price-old { text-decoration: line-through; color: #666; font-size: 18px; text-align: right; display: block;}

/* --- FAQ --- */
.faq-item {
    border-bottom: 1px solid #333;
    padding: 20px 0;
}
.faq-q { color: white; font-size: 18px; margin-bottom: 10px; }
.faq-a { color: #888; font-size: 14px; }

/* --- ФУТЕР --- */
.footer-huge { text-align: center; padding: 80px 0; border-top: 1px solid #222; }
.huge-email {
    font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(30px, 10vw, 120px);
    color: white; opacity: 0.9; text-decoration: none; display: block; margin-top: 20px;
}
.footer-links {
    font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #666;
    display: flex; justify-content: center; gap: 30px; flex-wrap: wrap;
}

