:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F8F9;
    --bg-dark: #121212;
    --bg-card: #FFFFFF;
    
    --text-primary: #1D1D1F;
    --text-secondary: #6B6B70;
    --text-light: #FFFFFF;
    
    --accent-lime: #b6f30a;
    --accent-purple: #16A34A; /* Заменено на зеленый по просьбе */
    
    --border-color: #EAEAEE;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Навигация */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.logo { font-weight: 800; font-size: 1.3rem; letter-spacing: -0.5px; }
.logo span { color: var(--accent-purple); }

.nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.nav-cta {
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, background 0.3s;
}

.nav-cta:hover { transform: translateY(-2px); background: var(--accent-purple); }

/* Hero */
.hero {
    padding: 180px 0 100px;
    background-color: var(--bg-secondary);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-container { max-width: 900px; }

.hero-badge {
    display: inline-block;
    background-color: rgba(146, 83, 216, 0.1);
    color: var(--accent-purple);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    font-weight: 800;
    margin-bottom: 30px;
}

.highlight { color: var(--accent-purple); }

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Layout */
.main-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    padding: 80px 40px;
}

/* Сайдбар */
.sidebar { position: relative; }

.sticky-nav {
    position: sticky;
    top: 120px;
    list-style: none;
}

.sticky-nav li { margin-bottom: 15px; }

.sticky-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding-left: 15px;
    border-left: 2px solid transparent;
}

.sticky-nav a:hover,
.sticky-nav a.active {
    color: var(--accent-purple);
    border-left: 2px solid var(--accent-purple);
}

/* Контент */
.content-section {
    margin-bottom: 100px;
}

.content-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.content-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.mt-40 { margin-top: 40px; }

/* Таблицы */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

.modern-table th, .modern-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.modern-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.modern-table td { font-size: 1.05rem; }
.highlight-cell { color: var(--accent-purple); font-weight: 700; }

.caption { font-size: 0.9rem; color: #a0a0a5; margin-top: -10px; }

/* Insights Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.insight-box {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.dark-box {
    background: var(--bg-dark);
    color: var(--text-light);
    border: none;
}

.dark-box p { color: #A0A0A0; }

.insight-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.color-lime { color: #8FCA00; }
.color-purple { color: var(--accent-purple); }

.insight-label {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Списки */
.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    padding: 20px;
    background: var(--bg-secondary);
    margin-bottom: 15px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-purple);
    font-size: 1.05rem;
}

.features-list strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 5px;
}

/* CMS Grid */
.cms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.cms-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.cms-header {
    padding: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.wp-color { background-color: #21759b; }
.tilda-color { background-color: #000000; }

.cms-body { padding: 30px; background: var(--bg-card); }
.cms-body ul { list-style: none; }
.cms-body li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.05rem;
}
.cms-body li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-lime);
    font-weight: bold;
}

/* Аккордеон */
.accordion { margin-top: 40px; }
.accordion-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    cursor: pointer;
}
.accordion-title {
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
}
.accordion-content {
    display: none;
    padding-top: 15px;
}
.accordion-content p { margin: 0; }
.accordion-item.open .accordion-content { display: block; }
.accordion-item.open .accordion-title span { transform: rotate(45deg); display:inline-block; }

/* Callout Box */
.callout-box {
    background: rgba(182, 243, 10, 0.1);
    border-left: 4px solid var(--accent-lime);
    padding: 30px;
    border-radius: 0 16px 16px 0;
    margin-top: 30px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* Футер */
.audit-footer {
    padding: 100px 0;
    background-color: var(--bg-dark);
    color: white;
}
.text-center { text-align: center; }
.footer-title { font-size: 2.5rem; margin-bottom: 20px; letter-spacing: -1px; }
.footer-desc { color: #A0A0A0; font-size: 1.1rem; max-width: 600px; margin: 0 auto 40px; }

.footer-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

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

.btn-lime {
    background: var(--accent-lime);
    color: var(--bg-dark);
}

.btn-lime:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(182,243,10,0.2); }

/* Анимации */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Адаптив */
@media (max-width: 1024px) {
    .main-layout { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .hero-title { font-size: 2.5rem; }
    .insights-grid { grid-template-columns: 1fr; }
    .cms-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}
