/* base */
body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    background-color: #0a0a0a;
    color: #e5e5e5;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.section {
    padding: 120px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.section-lead {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
    color: #a0a0a0;
}

.bg-light {
    background-color: #1a1a1a;
}

.bg-dark {
    background: #000;
}

.center {
    text-align: center;
}

/* hero */
.hero-enterprise {
    background: linear-gradient(135deg, #000, #111);
    color: white;
    text-align: center;
    padding: 180px 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

/* client logos */
.client-logos {
    padding: 60px 0;
    background-color: #000;
}

.section-eyebrow {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
}

.logo-grid img {
    max-height: 50px;
    margin: 0 auto;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-grid img:hover {
    filter: none;
    opacity: 1;
}

/* process */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background: #444;
}

.process-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}

.process-number {
    position: absolute;
    left: -5px;
    top: -5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 3px solid #1a1a1a;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-desc {
    color: #a0a0a0;
}

/* team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    object-fit: cover;
    border: 5px solid #333;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-role {
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-bio {
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* cta */
.cta-section {
    padding: 100px 0;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: #a0a0a0;
    line-height: 1.7;
}

/* button */
.btn-primary {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 40px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}
