/* Inherit variables from main style, but override for this page's specific look */
:root {
    --page-bg: #0d1117;
    --card-surface: #1e2530;
    --text-primary: #ffffff;
    --text-blue: #3b82f6;
    --border-color: #30363d;
}

body {
    background-color: var(--page-bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Sections */
section {
    padding: 80px 20px;
    border-bottom: 1px solid var(--border-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('../../assets/hero_bg.png');
    /* Shared bg */
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.9);
    /* Darker overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

/* Description Split Section */
.description-section {
    background-color: #0d1117;
}

.description-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.description-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.description-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #a78bfa;
    /* Purple tint matching screenshot */
    line-height: 1.2;
}

.description-logo {
    height: 50px;
    margin-bottom: 20px;
}

.description-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin-top: 10px;
}


/* Clients Section */
.clients-section {
    background-color: #0d1117;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 700;
}


.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 6 cols per screenshot */
    gap: 20px;
}

.client-card {
    background-color: #161b22;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: transform 0.2s;
}

.client-card:hover {
    transform: translateY(-2px);
    border-color: #fff;
}

.client-card img {
    max-width: 60px;
    max-height: 50px;
    margin-bottom: 10px;
}

.client-card span {
    font-size: 2rem;
    /* Placeholder icon size */
    margin-bottom: 5px;
}


.client-name {
    font-size: 0.75rem;
    color: #ccc;
    text-align: center;
    word-break: break-word;
}

.more-clients-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--text-blue);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Footer (Simplified) */
.footer {
    background-color: #0a0a0a;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .description-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}