/* ================= Easy ID Landing Style ================= */
.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    text-align: center;
    background: radial-gradient(circle at top center, #ffffff 0%, #F9FAFB 100%);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px; height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.hero-title {
    font-size: 3rem; /* Снижено с 4.5rem (~48px вместо ~72px) */
    font-weight: 700; /* Более элегантное начертание вместо тяжелого 800 */
    line-height: 1.25; /* Комфортный межстрочный интервал */
    letter-spacing: -0.02em; /* Мягкий трекинг */
    color: var(--text-main);
    max-width: 850px; /* Ограничитель ширины для красивого переноса в 2 строки */
    margin: 20px auto 45px; /* Воздух: 20px сверху, 45px снизу, по центру */
}

.text-gray {
    color: var(--text-muted);
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    background: var(--bg-surface);
    padding: 24px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border);
}

/* Hero Buttons */
.hero-actions {
    display: flex;
    gap: 16px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: 16px;
}

/* Features Section */
.features-section {
    padding: 60px 0 100px;
    background: var(--bg-main);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: left;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}

.feature-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: #d1d5db;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    color: var(--text-main);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .hero-title { 
        font-size: 2.2rem; /* Снижено с 2.8rem */
        max-width: 100%;
        line-height: 1.2;
    }
    .hero-stats { padding: 20px; gap: 20px; width: 100%; flex-wrap: wrap; justify-content: center; }
    .stat-divider { display: none; }
    .stat-box { width: 40%; }
    .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hero-section { padding: 120px 0 60px; }
    .hero-title { 
        font-size: 1.875rem; /* ~30px для мобилок (вместо 2.2rem) */
        margin: 15px auto 35px;
        line-height: 1.3;
    }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-lg { width: 100%; }
    .stat-box { width: 100%; border-bottom: 1px solid var(--border); padding-bottom: 15px; }
    .stat-box:last-child { border-bottom: none; padding-bottom: 0; }
}

/* Script Features Advanced */
.script-features-section {
    padding: 40px 0 80px;
    background: var(--bg-main);
}

.features-grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card-adv {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.feature-card-adv:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: #cbd5e1;
}

.fc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.fc-icon {
    width: 48px; height: 48px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}

.platform-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-badge.pc { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.platform-badge.mobile { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.platform-badge.all { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.feature-card-adv h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}

.feature-card-adv p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Commands Accordion */
.commands-section {
    padding: 0 0 100px;
}

.commands-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.commands-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.commands-info p {
    color: var(--text-muted);
}

.command-item {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.command-item summary {
    padding: 16px 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    outline: none;
}

.command-item summary::-webkit-details-marker { display: none; }

.cmd-badge {
    background: var(--primary);
    color: white;
    font-family: monospace;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.cmd-content {
    padding: 0 20px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .commands-wrapper { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
}