/* --- Header --- */
.page-header {
    padding: 160px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-color) 100%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--white), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* --- Solutions Grid --- */
.solutions-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.intro-text {
    text-align: center;
    margin-bottom: 60px;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.bot-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bot-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.bot-card.highlight {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

.bot-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.bot-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 15px;
    font-family: var(--font-title);
}

.bot-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.tech-tags {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tags li {
    font-size: 0.60rem;
    font-family: var(--font-code);
    background: rgba(255,255,255,0.1);
    color: var(--gold-light);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* --- Cases Section --- */
.cases-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cases-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 50px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.case-card {
    background: #1A1A1A;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.case-header {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.case-header h3 {
    margin: 0;
    color: var(--gold-primary);
    font-family: var(--font-title);
}

.badge {
    background: var(--gold-primary);
    color: var(--bg-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.case-content {
    padding: 25px;
}

.case-before, .case-after {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.case-before strong, .case-after strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.case-result {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gold-light);
    font-weight: 600;
    font-size: 1rem;
}

/* --- Sovereignty Section --- */
.sovereignty-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.sovereignty-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.sovereignty-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.sovereignty-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

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

.feat-sov {
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.feat-sov .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feat-sov h4 {
    color: var(--gold-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feat-sov p {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: left;
}

/* --- CTA Final --- */
.cta-final {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-color) 0%, #0f0f0f 100%);
}

.cta-final h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-final p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
}