/* HERO */
.ws-hero {
    padding: 180px 5% 120px;
    text-align: center;
}

.ws-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    opacity: 0.6;
}

.ws-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 30px 0;
}

.ws-hero p {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.7;
    font-size: 1.2rem;
}

/* STATS */
.ws-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 60px 5%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ws-stats h3 {
    font-size: 2rem;
}

/* SERVICES */
.ws-services {
    padding: 120px 5%;
}

.ws-services h2 {
    font-size: 3rem;
    margin-bottom: 60px;
}

.ws-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ws-card {
    background: var(--surface);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid var(--border);
}

/* SOFTWARE */
.ws-software {
    background: #fff;
    color: #000;
    padding: 120px 5%;
    text-align: center;
}

.ws-software h2 {
    font-size: 3rem;
}

.ws-sub {
    margin: 20px 0 60px;
    opacity: 0.7;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.software-grid div {
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

/* PROJECTS */
.ws-projects {
    padding: 120px 5%;
}

/* .project-item {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
}

.project-image {
    flex: 1;
    height: 350px;
    border-radius: 25px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-info {
    flex: 1;
} */
/* PROJECT HEADER */
.ws-project-header {
    text-align: center;
    margin-bottom: 120px;
}

.ws-project-header span {
    font-size: 0.85rem;
    letter-spacing: 3px;
    opacity: 0.6;
}

.ws-project-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 20px 0;
    letter-spacing: -1px;
}

.ws-project-header p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.7;
    font-size: 1.1rem;
}

/* PROJECT ITEM */
.project-item {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 140px;
}

.project-item.reverse {
    flex-direction: row-reverse;
}

/* IMAGE */
.project-image {
    flex: 1;
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.05);
}

/* TEXT */
.project-info {
    flex: 1;
}

.project-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.project-info p {
    font-size: 1.1rem;
    opacity: 0.7;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

    .project-item,
    .project-item.reverse {
        flex-direction: column;
    }

    .project-image {
        height: 300px;
    }
}

/* PROCESS */
.ws-process {
    background: #0a0a0a;
    padding: 120px 5%;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-grid div {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 20px;
}

/* CTA */
.ws-cta {
    padding: 140px 5%;
    text-align: center;
}

.ws-cta h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

    .ws-grid,
    .software-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .ws-stats {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .project-item {
        flex-direction: column;
    }
}