.hero-portfolio {
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-start;
    padding-top: 70px;
    overflow: hidden;
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    pointer-events: none;
}

.hero-portfolio h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 500;
    z-index: 1;
}

.hero-portfolio .container {
    margin: 0;
}

@media (max-width: 768px) {
    .hero-portfolio h1 {
        font-size: 45px;
    }
}

.studi-kasus-section {
    padding: 72px 0 80px;
    background: #fff;
}

.studi-kasus-title {
    font-size: 32px;
    font-weight: 500;
    color: #17171a;
    margin: 0 0 40px;
}

.studi-kasus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.studi-kasus-card {
    display: flex;
    flex-direction: column;
}

.sk-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f0f0f0;
}

.sk-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.studi-kasus-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #17171a;
    margin: 0 0 10px;
}

.studi-kasus-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #7a7a7f;
    margin: 0 0 18px;
    flex: 1;
}

.sk-link {
    font-size: 14px;
    font-weight: 500;
    color: #17171a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.sk-link:hover {
    color: #7a7a7f;
}

.sk-link span {
    font-size: 18px;
    line-height: 1;
}

.pricing-cta-section {
    padding: 40px 0 80px;
}

.pricing-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #e6e6e9;
    padding: 32px 36px;
}

.pricing-cta-content h3 {
    font-size: 22px;
    font-weight: 500;
    color: #17171a;
    margin: 0 0 6px;
}

.pricing-cta-content p {
    font-size: 14px;
    color: #7a7a7f;
    margin: 0;
}

.pricing-cta-arrow {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ececec;
    color: #17171a;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 24px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.pricing-cta-arrow:hover {
    background: #e0e0e0;
}

@media (max-width: 768px) {
    .studi-kasus-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}